95 lines
2.5 KiB
TOML
95 lines
2.5 KiB
TOML
[package]
|
|
name = "pallet-xcm-bridge-hub"
|
|
description = "Module that adds dynamic bridges/lanes support to XCM infrastructure at the bridge hub."
|
|
version = "0.2.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Bridge Dependencies
|
|
bp-messages = { workspace = true }
|
|
bp-runtime = { workspace = true }
|
|
bp-xcm-bridge-hub = { workspace = true }
|
|
pallet-bridge-messages = { workspace = true }
|
|
|
|
# Substrate Dependencies
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
# Pezkuwi Dependencies
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
bp-header-chain = { workspace = true }
|
|
bp-xcm-bridge-hub-router = { workspace = true }
|
|
pallet-balances = { workspace = true }
|
|
pallet-xcm-bridge-hub-router = { workspace = true }
|
|
pezkuwi-teyrchain-primitives = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-header-chain/std",
|
|
"bp-messages/std",
|
|
"bp-runtime/std",
|
|
"bp-xcm-bridge-hub-router/std",
|
|
"bp-xcm-bridge-hub/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-balances/std",
|
|
"pallet-bridge-messages/std",
|
|
"pallet-xcm-bridge-hub-router/std",
|
|
"pezkuwi-teyrchain-primitives/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"tracing/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bp-header-chain/runtime-benchmarks",
|
|
"bp-messages/runtime-benchmarks",
|
|
"bp-runtime/runtime-benchmarks",
|
|
"bp-xcm-bridge-hub-router/runtime-benchmarks",
|
|
"bp-xcm-bridge-hub/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-bridge-messages/runtime-benchmarks",
|
|
"pallet-xcm-bridge-hub-router/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-bridge-messages/try-runtime",
|
|
"pallet-xcm-bridge-hub-router/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|