mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 19:37:56 +00:00
4c810609d6
The first step towards https://github.com/paritytech/polkadot-sdk/issues/3155 Brings all templates under the following structure ``` templates | parachain | | polkadot-launch | | runtime --> parachain-template-runtime | | pallets --> pallet-parachain-template | | node --> parachain-template-node | minimal | | runtime --> minimal-template-runtime | | pallets --> pallet-minimal-template | | node --> minimal-template-node | solochain | | runtime --> solochain-template-runtime | | pallets --> pallet-template (the naming is not consistent here) | | node --> solochain-template-node ``` The only note-worthy changes in this PR are: - More `Cargo.toml` fields are forwarded to use the one from the workspace. - parachain template now has weights and benchmarks - adds a shell pallet to the minimal template - remove a few unused deps A list of possible follow-ups: - [ ] Unify READMEs, create a parent README for all - [ ] remove references to `docs.substrate.io` in templates - [ ] make all templates use `#[derive_impl]` - [ ] update and unify all licenses - [ ] Remove polkadot launch, use https://github.com/paritytech/polkadot-sdk/blob/35349df993ea2e7c4769914ef5d199e787b23d4c/cumulus/zombienet/examples/small_network.toml instead.
201 lines
8.7 KiB
TOML
201 lines
8.7 KiB
TOML
[package]
|
|
name = "parachain-template-runtime"
|
|
description = "A parachain runtime template built with Substrate and Cumulus, part of Polkadot Sdk."
|
|
version = "0.0.0"
|
|
license = "MIT-0"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../substrate/utils/wasm-builder", optional = true }
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
hex-literal = { version = "0.4.1", optional = true }
|
|
log = { workspace = true }
|
|
scale-info = { version = "2.10.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
smallvec = "1.11.0"
|
|
|
|
# Local
|
|
pallet-parachain-template = { path = "../pallets/template", default-features = false }
|
|
|
|
# Substrate / FRAME
|
|
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
|
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 }
|
|
frame-system-benchmarking = { path = "../../../substrate/frame/system/benchmarking", default-features = false, optional = true }
|
|
frame-system-rpc-runtime-api = { path = "../../../substrate/frame/system/rpc/runtime-api", default-features = false }
|
|
frame-try-runtime = { path = "../../../substrate/frame/try-runtime", default-features = false, optional = true }
|
|
|
|
# FRAME Pallets
|
|
pallet-aura = { path = "../../../substrate/frame/aura", default-features = false }
|
|
pallet-authorship = { path = "../../../substrate/frame/authorship", default-features = false }
|
|
pallet-balances = { path = "../../../substrate/frame/balances", default-features = false }
|
|
pallet-message-queue = { path = "../../../substrate/frame/message-queue", default-features = false }
|
|
pallet-session = { path = "../../../substrate/frame/session", default-features = false }
|
|
pallet-sudo = { path = "../../../substrate/frame/sudo", default-features = false }
|
|
pallet-timestamp = { path = "../../../substrate/frame/timestamp", default-features = false }
|
|
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment", default-features = false }
|
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false }
|
|
|
|
# Substrate Primitives
|
|
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 }
|
|
|
|
# Polkadot
|
|
pallet-xcm = { path = "../../../polkadot/xcm/pallet-xcm", default-features = false }
|
|
polkadot-parachain-primitives = { path = "../../../polkadot/parachain", default-features = false }
|
|
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false }
|
|
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false }
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder", default-features = false }
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false }
|
|
|
|
# Cumulus
|
|
cumulus-pallet-aura-ext = { path = "../../../cumulus/pallets/aura-ext", default-features = false }
|
|
cumulus-pallet-parachain-system = { path = "../../../cumulus/pallets/parachain-system", default-features = false, features = [
|
|
"parameterized-consensus-hook",
|
|
] }
|
|
cumulus-pallet-session-benchmarking = { path = "../../../cumulus/pallets/session-benchmarking", default-features = false }
|
|
cumulus-pallet-xcm = { path = "../../../cumulus/pallets/xcm", default-features = false }
|
|
cumulus-pallet-xcmp-queue = { path = "../../../cumulus/pallets/xcmp-queue", default-features = false }
|
|
cumulus-primitives-core = { path = "../../../cumulus/primitives/core", default-features = false }
|
|
cumulus-primitives-utility = { path = "../../../cumulus/primitives/utility", default-features = false }
|
|
cumulus-primitives-storage-weight-reclaim = { path = "../../../cumulus/primitives/storage-weight-reclaim", default-features = false }
|
|
pallet-collator-selection = { path = "../../../cumulus/pallets/collator-selection", default-features = false }
|
|
parachains-common = { path = "../../../cumulus/parachains/common", default-features = false }
|
|
parachain-info = { package = "staging-parachain-info", path = "../../../cumulus/parachains/pallets/parachain-info", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"cumulus-pallet-aura-ext/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-session-benchmarking/std",
|
|
"cumulus-pallet-xcm/std",
|
|
"cumulus-pallet-xcmp-queue/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-storage-weight-reclaim/std",
|
|
"cumulus-primitives-utility/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"frame-try-runtime?/std",
|
|
"log/std",
|
|
"pallet-aura/std",
|
|
"pallet-authorship/std",
|
|
"pallet-balances/std",
|
|
"pallet-collator-selection/std",
|
|
"pallet-message-queue/std",
|
|
"pallet-parachain-template/std",
|
|
"pallet-session/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-xcm/std",
|
|
"parachain-info/std",
|
|
"parachains-common/std",
|
|
"polkadot-parachain-primitives/std",
|
|
"polkadot-runtime-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",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
|
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
|
"cumulus-primitives-core/runtime-benchmarks",
|
|
"cumulus-primitives-storage-weight-reclaim/runtime-benchmarks",
|
|
"cumulus-primitives-utility/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"hex-literal",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-collator-selection/runtime-benchmarks",
|
|
"pallet-message-queue/runtime-benchmarks",
|
|
"pallet-parachain-template/runtime-benchmarks",
|
|
"pallet-sudo/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"pallet-transaction-payment/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"parachains-common/runtime-benchmarks",
|
|
"polkadot-parachain-primitives/runtime-benchmarks",
|
|
"polkadot-runtime-common/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
]
|
|
|
|
try-runtime = [
|
|
"cumulus-pallet-aura-ext/try-runtime",
|
|
"cumulus-pallet-parachain-system/try-runtime",
|
|
"cumulus-pallet-xcm/try-runtime",
|
|
"cumulus-pallet-xcmp-queue/try-runtime",
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-try-runtime/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-collator-selection/try-runtime",
|
|
"pallet-message-queue/try-runtime",
|
|
"pallet-parachain-template/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-sudo/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"pallet-xcm/try-runtime",
|
|
"parachain-info/try-runtime",
|
|
"polkadot-runtime-common/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
experimental = ["pallet-aura/experimental"]
|