[package] name = "parachains-common" version = "18.0.0" authors.workspace = true edition.workspace = true description = "Logic which is common to all parachain runtimes" license = "Apache-2.0" [lints] workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { features = ["derive"], workspace = true } log = { workspace = true } scale-info = { features = ["derive"], workspace = true } frame-support.workspace = true frame-system.workspace = true pallet-asset-tx-payment.workspace = true pallet-assets.workspace = true pallet-authorship.workspace = true pallet-balances.workspace = true pallet-message-queue.workspace = true sp-consensus-aura.workspace = true sp-core.workspace = true sp-io.workspace = true sp-runtime.workspace = true pallet-xcm.workspace = true polkadot-primitives.workspace = true xcm.workspace = true xcm-executor.workspace = true pallet-collator-selection.workspace = true cumulus-primitives-core.workspace = true cumulus-primitives-utility.workspace = true parachain-info.workspace = true [dev-dependencies] pallet-authorship = { path = "../../../substrate/frame/authorship", default-features = false } sp-io = { path = "../../../substrate/primitives/io", default-features = false } [build-dependencies] substrate-wasm-builder.workspace = true substrate-wasm-builder.default-features = true [features] default = ["std"] std = [ "codec/std", "cumulus-primitives-core/std", "cumulus-primitives-utility/std", "frame-support/std", "frame-system/std", "log/std", "pallet-asset-tx-payment/std", "pallet-assets/std", "pallet-authorship/std", "pallet-balances/std", "pallet-collator-selection/std", "pallet-message-queue/std", "pallet-xcm/std", "parachain-info/std", "polkadot-primitives/std", "scale-info/std", "sp-consensus-aura/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "xcm-executor/std", "xcm/std", ] runtime-benchmarks = [ "cumulus-primitives-core/runtime-benchmarks", "cumulus-primitives-utility/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-asset-tx-payment/runtime-benchmarks", "pallet-assets/runtime-benchmarks", "pallet-balances/runtime-benchmarks", "pallet-collator-selection/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", "polkadot-primitives/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "xcm-executor/runtime-benchmarks", ]