[package] name = "cumulus-pallet-xcmp-queue" version = "0.17.0" authors.workspace = true edition.workspace = true description = "Pallet to queue outbound and inbound XCMP messages." license = "Apache-2.0" [lints] workspace = true [dependencies] codec = { features = ["derive"], workspace = true } log = { workspace = true } scale-info = { features = ["derive"], workspace = true } frame-support.workspace = true frame-system.workspace = true sp-io.workspace = true sp-core.workspace = true sp-runtime.workspace = true pallet-message-queue.workspace = true polkadot-runtime-common.workspace = true polkadot-runtime-parachains.workspace = true xcm.workspace = true xcm-executor.workspace = true xcm-builder.workspace = true cumulus-primitives-core.workspace = true frame-benchmarking = { optional = true, workspace = true } bounded-collections = { workspace = true } bp-xcm-bridge-hub-router = { optional = true, workspace = true } [dev-dependencies] # Substrate sp-core = { default-features = true, path = "../../../substrate/primitives/core" } pallet-balances = { default-features = true, path = "../../../substrate/frame/balances" } frame-support = { features = ["experimental"], default-features = true, path = "../../../substrate/frame/support" } # Cumulus cumulus-pallet-parachain-system = { default-features = true, path = "../parachain-system" } [features] default = ["std"] std = [ "bounded-collections/std", "bp-xcm-bridge-hub-router?/std", "codec/std", "cumulus-primitives-core/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "log/std", "pallet-message-queue/std", "polkadot-runtime-common/std", "polkadot-runtime-parachains/std", "scale-info/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "xcm-builder/std", "xcm-executor/std", "xcm/std", ] runtime-benchmarks = [ "cumulus-primitives-core/runtime-benchmarks", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "polkadot-runtime-common/runtime-benchmarks", "polkadot-runtime-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "xcm-executor/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-message-queue/try-runtime", "polkadot-runtime-common/try-runtime", "polkadot-runtime-parachains/try-runtime", "sp-runtime/try-runtime", ] bridging = ["bp-xcm-bridge-hub-router"]