mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-09 19:57:34 +00:00
f441a5fc93
Signed-off-by: alvicsam <alvicsam@gmail.com>
84 lines
3.2 KiB
TOML
84 lines
3.2 KiB
TOML
[package]
|
|
name = "cumulus-pallet-parachain-system"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
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.27.1", 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 = { path = "../../../polkadot/parachain", default-features = false, features = [ "wasm-api" ]}
|
|
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",
|
|
"environmental/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"cumulus-pallet-parachain-system-proc-macro/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-parachain-inherent/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-core/std",
|
|
"sp-externalities/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-state-machine/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
"xcm/std",
|
|
"trie-db/std",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"sp-runtime/runtime-benchmarks"
|
|
]
|
|
|
|
try-runtime = ["frame-support/try-runtime"]
|
|
|
|
parameterized-consensus-hook = []
|