mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
84 lines
3.9 KiB
TOML
84 lines
3.9 KiB
TOML
[package]
|
|
name = "seedling-runtime"
|
|
version = "0.7.0"
|
|
description = "Seedling parachain runtime. A starter runtime for solochain to parachain migration."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate
|
|
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false }
|
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false }
|
|
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false }
|
|
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false }
|
|
pallet-sudo = { path = "../../../../../substrate/frame/sudo", default-features = false }
|
|
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false }
|
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false }
|
|
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false }
|
|
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false }
|
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false }
|
|
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
|
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false }
|
|
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false }
|
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false }
|
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
|
|
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false }
|
|
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false }
|
|
|
|
# Cumulus
|
|
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook"] }
|
|
cumulus-pallet-solo-to-para = { path = "../../../../pallets/solo-to-para", default-features = false }
|
|
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
|
cumulus-primitives-timestamp = { path = "../../../../primitives/timestamp", default-features = false }
|
|
parachain-info = { package = "staging-parachain-info", path = "../../../pallets/parachain-info", default-features = false }
|
|
parachains-common = { path = "../../../common", default-features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../../../substrate/utils/wasm-builder", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"cumulus-pallet-aura-ext/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-solo-to-para/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-timestamp/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-aura/std",
|
|
"pallet-balances/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"parachain-info/std",
|
|
"parachains-common/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-genesis-builder/std",
|
|
"sp-inherents/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"substrate-wasm-builder",
|
|
]
|
|
|
|
experimental = ["pallet-aura/experimental"]
|