Files
pezkuwi-subxt/polkadot/core-primitives/Cargo.toml
T
2023-02-03 14:03:38 +00:00

24 lines
793 B
TOML

[package]
name = "polkadot-core-primitives"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
parity-scale-codec = { version = "3.3.0", default-features = false, features = [ "derive" ] }
[features]
default = [ "std" ]
std = [
"scale-info/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"scale-info/std",
"parity-scale-codec/std",
]