mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
0bebc8ae96
This PR updates: - trie-db from 0.27.1 to 0.28.0 - trie-bench from 0.37.0 to 0.38.0 (deb-dependency) While at it, also adapts the recorder to take into account the newly added `TrieAccess::InlineValue`. Needed by: - https://github.com/paritytech/polkadot-sdk/pull/1153 @paritytech/subxt-team --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de>
93 lines
3.4 KiB
TOML
93 lines
3.4 KiB
TOML
[package]
|
|
name = "cumulus-pallet-parachain-system"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Base pallet for cumulus-based parachains"
|
|
|
|
[dependencies]
|
|
bytes = { version = "1.4.0", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
environmental = { version = "1.1.4", default-features = false }
|
|
impl-trait-for-tuples = "0.2.1"
|
|
log = { version = "0.4.20", default-features = false }
|
|
trie-db = { version = "0.28.0", default-features = false }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false}
|
|
sp-core = { path = "../../../substrate/primitives/core", default-features = false}
|
|
sp-externalities = { path = "../../../substrate/primitives/externalities", default-features = false}
|
|
sp-inherents = { path = "../../../substrate/primitives/inherents", default-features = false}
|
|
sp-io = { path = "../../../substrate/primitives/io", default-features = false}
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine", default-features = false}
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
|
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false}
|
|
sp-version = { path = "../../../substrate/primitives/version", default-features = false}
|
|
|
|
# Polkadot
|
|
polkadot-parachain-primitives = { path = "../../../polkadot/parachain", default-features = false, features = [ "wasm-api" ]}
|
|
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
|
|
|
# Cumulus
|
|
cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false }
|
|
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
|
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
hex-literal = "0.4.1"
|
|
lazy_static = "1.4"
|
|
|
|
# Substrate
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
|
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
|
sp-version = { path = "../../../substrate/primitives/version" }
|
|
|
|
# Cumulus
|
|
cumulus-test-client = { path = "../../test/client" }
|
|
cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"cumulus-pallet-parachain-system-proc-macro/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-parachain-inherent/std",
|
|
"environmental/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"polkadot-parachain-primitives/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-externalities/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-state-machine/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
"trie-db/std",
|
|
"xcm/std",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"polkadot-parachain-primitives/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
parameterized-consensus-hook = []
|