Files
pezkuwi-sdk/cumulus/teyrchains/pallets/ping/Cargo.toml
T

53 lines
1.2 KiB
TOML

[package]
authors.workspace = true
edition.workspace = true
name = "cumulus-ping"
version = "0.7.0"
license = "Apache-2.0"
description = "Ping Pallet for Cumulus XCM/UMP testing."
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
codec = { features = ["derive"], workspace = true }
scale-info = { features = ["derive"], workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
sp-runtime = { workspace = true }
xcm = { workspace = true }
cumulus-pallet-xcm = { workspace = true }
cumulus-primitives-core = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"cumulus-pallet-xcm/std",
"cumulus-primitives-core/std",
"frame-support/std",
"frame-system/std",
"scale-info/std",
"sp-runtime/std",
"xcm/std",
]
try-runtime = [
"cumulus-pallet-xcm/try-runtime",
"frame-support/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
runtime-benchmarks = [
"cumulus-pallet-xcm/runtime-benchmarks",
"cumulus-primitives-core/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"xcm/runtime-benchmarks",
]