mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 19:47:59 +00:00
443ad90b47
* Update codec version to the 4.1 version * Bump impl_version * Update lock files * Update codec to 4.1.1 version * Bump impl version
21 lines
585 B
TOML
21 lines
585 B
TOML
[package]
|
|
name = "srml-metadata"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "4.1.1", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec/std",
|
|
"rstd/std",
|
|
"primitives/std",
|
|
"serde",
|
|
]
|