polkadot-runtime-parachains 10.0.0

Relay Chain runtime code responsible for Parachains. (polkadot v1.9.0)
Documentation
[package]
name = "polkadot-runtime-parachains"
version = "10.0.0"
description = "Relay Chain runtime code responsible for Parachains. (polkadot v1.9.0)"
authors.workspace = true
edition.workspace = true
license.workspace = true

[lints]
workspace = true

[dependencies]
impl-trait-for-tuples = "0.2.2"
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
log = { workspace = true }
rustc-hex = { version = "2.1.0", default-features = false }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
serde = { features = ["alloc", "derive"], workspace = true }
derive_more = "0.99.17"
bitflags = "1.3.2"

sp-api = { path = "../../../substrate/primitives/api", default-features = false, version = "29.0.0" }
inherents = { package = "sp-inherents", path = "../../../substrate/primitives/inherents", default-features = false, version = "29.0.0" }
sp-std = { package = "sp-std", path = "../../../substrate/primitives/std", default-features = false, version = "14.0.0" }
sp-io = { path = "../../../substrate/primitives/io", default-features = false, version = "33.0.0" }
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false, features = ["serde"], version = "34.0.0" }
sp-session = { path = "../../../substrate/primitives/session", default-features = false, version = "30.0.0" }
sp-staking = { path = "../../../substrate/primitives/staking", default-features = false, features = ["serde"], version = "29.0.0" }
sp-core = { path = "../../../substrate/primitives/core", default-features = false, features = ["serde"], version = "31.0.0" }
sp-keystore = { path = "../../../substrate/primitives/keystore", optional = true, version = "0.37.0" }
sp-application-crypto = { path = "../../../substrate/primitives/application-crypto", default-features = false, optional = true, version = "33.0.0" }
sp-tracing = { path = "../../../substrate/primitives/tracing", default-features = false, optional = true, version = "16.0.0" }
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic", default-features = false, version = "25.0.0" }

pallet-authority-discovery = { path = "../../../substrate/frame/authority-discovery", default-features = false, version = "31.0.0" }
pallet-authorship = { path = "../../../substrate/frame/authorship", default-features = false, version = "31.0.0" }
pallet-balances = { path = "../../../substrate/frame/balances", default-features = false, version = "31.0.0" }
pallet-babe = { path = "../../../substrate/frame/babe", default-features = false, version = "31.0.0" }
pallet-broker = { path = "../../../substrate/frame/broker", default-features = false, version = "0.9.0" }
pallet-message-queue = { path = "../../../substrate/frame/message-queue", default-features = false, version = "34.0.0" }
pallet-session = { path = "../../../substrate/frame/session", default-features = false, version = "31.0.0" }
pallet-staking = { path = "../../../substrate/frame/staking", default-features = false, version = "31.0.0" }
pallet-timestamp = { path = "../../../substrate/frame/timestamp", default-features = false, version = "30.0.0" }
pallet-vesting = { path = "../../../substrate/frame/vesting", default-features = false, version = "31.0.0" }
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true, version = "31.0.0" }
frame-support = { path = "../../../substrate/frame/support", default-features = false, version = "31.0.0" }
frame-system = { path = "../../../substrate/frame/system", default-features = false, version = "31.0.0" }

xcm = { package = "staging-xcm", path = "../../xcm", default-features = false, version = "10.0.0" }
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false, version = "10.0.0" }
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false, version = "10.0.0" }

rand = { version = "0.8.5", default-features = false }
rand_chacha = { version = "0.3.1", default-features = false }
static_assertions = { version = "1.1.0", optional = true }
polkadot-parachain-primitives = { path = "../../parachain", default-features = false, version = "9.0.0" }
polkadot-runtime-metrics = { path = "../metrics", default-features = false, version = "10.0.0" }
polkadot-core-primitives = { path = "../../core-primitives", default-features = false, version = "10.0.0" }

[dev-dependencies]
futures = "0.3.21"
hex-literal = "0.4.1"
keyring = { package = "sp-keyring", path = "../../../substrate/primitives/keyring" }
frame-support-test = { path = "../../../substrate/frame/support/test" }
sc-keystore = { path = "../../../substrate/client/keystore" }
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers" }
sp-tracing = { path = "../../../substrate/primitives/tracing" }
sp-crypto-hashing = { path = "../../../substrate/primitives/crypto/hashing" }
thousands = "0.2.0"
assert_matches = "1"
rstest = "0.18.2"
serde_json = { workspace = true, default-features = true }

[features]
default = ["std"]
no_std = []
std = [
	"bitvec/std",
	"frame-benchmarking?/std",
	"frame-support/std",
	"frame-system/std",
	"inherents/std",
	"log/std",
	"pallet-authority-discovery/std",
	"pallet-authorship/std",
	"pallet-babe/std",
	"pallet-balances/std",
	"pallet-broker/std",
	"pallet-message-queue/std",
	"pallet-session/std",
	"pallet-staking/std",
	"pallet-timestamp/std",
	"pallet-vesting/std",
	"parity-scale-codec/std",
	"polkadot-core-primitives/std",
	"polkadot-parachain-primitives/std",
	"polkadot-runtime-metrics/std",
	"primitives/std",
	"rand/std",
	"rand_chacha/std",
	"rustc-hex/std",
	"scale-info/std",
	"serde/std",
	"sp-api/std",
	"sp-application-crypto?/std",
	"sp-arithmetic/std",
	"sp-core/std",
	"sp-io/std",
	"sp-keystore",
	"sp-runtime/std",
	"sp-session/std",
	"sp-staking/std",
	"sp-std/std",
	"xcm-executor/std",
	"xcm/std",
]
runtime-benchmarks = [
	"frame-benchmarking/runtime-benchmarks",
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
	"pallet-babe/runtime-benchmarks",
	"pallet-balances/runtime-benchmarks",
	"pallet-broker/runtime-benchmarks",
	"pallet-message-queue/runtime-benchmarks",
	"pallet-staking/runtime-benchmarks",
	"pallet-timestamp/runtime-benchmarks",
	"pallet-vesting/runtime-benchmarks",
	"polkadot-parachain-primitives/runtime-benchmarks",
	"primitives/runtime-benchmarks",
	"sp-application-crypto",
	"sp-runtime/runtime-benchmarks",
	"sp-staking/runtime-benchmarks",
	"static_assertions",
	"xcm-executor/runtime-benchmarks",
]
try-runtime = [
	"frame-support/try-runtime",
	"frame-system/try-runtime",
	"pallet-authority-discovery/try-runtime",
	"pallet-authorship/try-runtime",
	"pallet-babe/try-runtime",
	"pallet-balances/try-runtime",
	"pallet-broker/try-runtime",
	"pallet-message-queue/try-runtime",
	"pallet-session/try-runtime",
	"pallet-staking/try-runtime",
	"pallet-timestamp/try-runtime",
	"pallet-vesting/try-runtime",
	"sp-runtime/try-runtime",
]
runtime-metrics = [
	"polkadot-runtime-metrics/runtime-metrics",
	"sp-tracing/with-tracing",
]