108 lines
2.9 KiB
TOML
108 lines
2.9 KiB
TOML
[package]
|
|
name = "cumulus-pallet-xcmp-queue"
|
|
version = "0.7.1"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Pallet to queue outbound and inbound XCMP messages."
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Substrate
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
pallet-message-queue = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-runtime-common = { workspace = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { workspace = true }
|
|
|
|
# Optional import for weight accuracy testing
|
|
approx = { workspace = true }
|
|
# Optional import for benchmarking
|
|
bounded-collections = { workspace = true }
|
|
frame-benchmarking = { optional = true, workspace = true }
|
|
|
|
# Bridges
|
|
bp-xcm-bridge-hub-router = { optional = true, workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Substrate
|
|
frame-support = { features = [
|
|
"experimental",
|
|
], workspace = true, default-features = true }
|
|
pallet-balances = { workspace = true, default-features = true }
|
|
sp-core = { workspace = true, default-features = true }
|
|
|
|
# Cumulus
|
|
cumulus-pallet-teyrchain-system = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"approx/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",
|
|
"pallet-message-queue/std",
|
|
"pezkuwi-runtime-common/std",
|
|
"pezkuwi-runtime-teyrchains/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"tracing/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bp-xcm-bridge-hub-router?/runtime-benchmarks",
|
|
"cumulus-pallet-teyrchain-system/runtime-benchmarks",
|
|
"cumulus-primitives-core/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-message-queue/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"cumulus-pallet-teyrchain-system/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-message-queue/try-runtime",
|
|
"pezkuwi-runtime-common/try-runtime",
|
|
"pezkuwi-runtime-teyrchains/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
bridging = ["bp-xcm-bridge-hub-router"]
|