mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +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
30 lines
876 B
TOML
30 lines
876 B
TOML
[package]
|
|
name = "node-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", default-features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
parity-codec = { version = "2.2", default-features = false }
|
|
parity-codec-derive = { version = "2.1", default-features = false }
|
|
substrate-primitives = { path = "../../core/primitives", default-features = false }
|
|
sr-std = { path = "../../core/sr-std", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { path = "../../core/serializer" }
|
|
pretty_assertions = "0.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec-derive/std",
|
|
"parity-codec/std",
|
|
"substrate-primitives/std",
|
|
"sr-std/std",
|
|
"sr-primitives/std",
|
|
"serde_derive",
|
|
"serde/std",
|
|
]
|