mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 14:47:55 +00:00
0b3d0677f8
As suggested in this thread: https://github.com/polkadot-fellows/runtimes/pull/87#discussion_r1400237122 We already have the `IsChildSystemParachain`, which may be used at relay chain, but it can't be used at a parachain level. So let's use `AllSiblingSystemParachains` for that. I was thinking about `AllSystemParachains`, but it may cause wrong impression that it can be used at a relay chain level. --------- Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com>
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "westend-runtime-constants"
|
|
version = "1.0.0"
|
|
description = "Constants used throughout the Westend network."
|
|
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 }
|
|
|
|
xcm = { package = "staging-xcm", path = "../../../xcm", default-features = false }
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../xcm/xcm-builder", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"frame-support/std",
|
|
"primitives/std",
|
|
"runtime-common/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-weights/std",
|
|
"xcm-builder/std",
|
|
"xcm/std",
|
|
]
|