mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-01 05:41:03 +00:00
f441a5fc93
Signed-off-by: alvicsam <alvicsam@gmail.com>
28 lines
912 B
TOML
28 lines
912 B
TOML
[package]
|
|
name = "kusama-runtime-constants"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
smallvec = "1.8.0"
|
|
|
|
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
|
primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false }
|
|
runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-weights = { path = "../../../../substrate/primitives/weights", default-features = false }
|
|
sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"frame-support/std",
|
|
"primitives/std",
|
|
"runtime-common/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-weights/std"
|
|
]
|