52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[package]
|
|
name = "staging-xcm-executor"
|
|
description = "An abstract and configurable XCM message executor."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version = "7.0.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
environmental = { workspace = true }
|
|
frame-benchmarking = { optional = true, workspace = true }
|
|
frame-support = { workspace = true }
|
|
impl-trait-for-tuples = { workspace = true }
|
|
scale-info = { features = ["derive", "serde"], workspace = true }
|
|
sp-arithmetic = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-weights = { workspace = true }
|
|
tracing = { workspace = true }
|
|
xcm = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"environmental/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"scale-info/std",
|
|
"sp-arithmetic/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-weights/std",
|
|
"tracing/std",
|
|
"xcm/std",
|
|
]
|