mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
26 lines
749 B
TOML
26 lines
749 B
TOML
[package]
|
|
name = "demo-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 }
|
|
substrate-codec = { path = "../../substrate/codec", default_features = false }
|
|
substrate-primitives = { path = "../../substrate/primitives", default_features = false }
|
|
substrate-runtime-std = { path = "../../substrate/runtime-std", default_features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { path = "../../substrate/serializer" }
|
|
pretty_assertions = "0.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"substrate-codec/std",
|
|
"substrate-primitives/std",
|
|
"substrate-runtime-std/std",
|
|
"serde_derive",
|
|
"serde/std",
|
|
]
|