mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +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
24 lines
654 B
TOML
24 lines
654 B
TOML
[package]
|
|
name = "srml-metadata"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "2.2", default-features = false }
|
|
parity-codec-derive = { version = "2.1", default-features = false }
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
sr-std = { path = "../../core/sr-std", default-features = false }
|
|
substrate-primitives = { path = "../../core/primitives", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec/std",
|
|
"parity-codec-derive/std",
|
|
"sr-std/std",
|
|
"substrate-primitives/std",
|
|
"serde",
|
|
"serde_derive"
|
|
]
|