mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-21 01:41:03 +00:00
beeacf9cfa
* impl Compact<> and HasCompact for Permill Perbill * update parity-codec to 2.2 * add Cargo.lock * add lock and build for runtime * rebuild Cargo.lock after rebase
27 lines
886 B
TOML
27 lines
886 B
TOML
[package]
|
|
name = "substrate-consensus-aura-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Primitives for Aura consensus"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "2.2", default-features = false }
|
|
substrate-client = { path = "../../../client", default-features = false }
|
|
substrate-primitives = { path = "../../../primitives", default-features = false }
|
|
srml-support = { path = "../../../../srml/support", default-features = false }
|
|
sr-primitives = { path = "../../../sr-primitives", default-features = false }
|
|
sr-version = { path = "../../../sr-version", default-features = false }
|
|
sr-io = { path = "../../../sr-io", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec/std",
|
|
"substrate-client/std",
|
|
"substrate-primitives/std",
|
|
"srml-support/std",
|
|
"sr-primitives/std",
|
|
"sr-version/std",
|
|
"sr-io/std",
|
|
]
|