mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-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 = { git = "https://github.com/paritytech/parity-substrate", default_features = false }
|
|
substrate-codec-derive = { git = "https://github.com/paritytech/parity-substrate", default_features = false }
|
|
substrate-primitives = { git = "https://github.com/paritytech/parity-substrate", default_features = false }
|
|
substrate-runtime-std = { git = "https://github.com/paritytech/parity-substrate", default_features = false }
|
|
substrate-runtime-primitives = { git = "https://github.com/paritytech/parity-substrate", default_features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { git = "https://github.com/paritytech/parity-substrate" }
|
|
pretty_assertions = "0.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"substrate-codec/std",
|
|
"substrate-primitives/std",
|
|
"substrate-runtime-std/std",
|
|
"substrate-runtime-primitives/std",
|
|
"serde_derive",
|
|
"serde/std",
|
|
]
|