mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +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>
37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
name = "rococo-runtime-constants"
|
|
version = "1.0.0"
|
|
description = "Constants used throughout the Rococo 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",
|
|
]
|
|
|
|
# Set timing constants (e.g. session period) to faster versions to speed up testing.
|
|
fast-runtime = []
|