mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 15:31:10 +00:00
2e9b2be8fa
* Update parity-codec/-derive to 3.1 * Update wasm stuff
25 lines
701 B
TOML
25 lines
701 B
TOML
[package]
|
|
name = "srml-metadata"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "3.1", default-features = false }
|
|
parity-codec-derive = { version = "3.1", default-features = false }
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
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",
|
|
"parity-codec-derive/std",
|
|
"rstd/std",
|
|
"primitives/std",
|
|
"serde",
|
|
"serde_derive"
|
|
]
|