Files
pezkuwi-subxt/cumulus/parachains/pallets/ping/Cargo.toml
T
alvicsam f441a5fc93 Diener workspacify
Signed-off-by: alvicsam <alvicsam@gmail.com>
2023-08-25 11:05:17 +02:00

40 lines
1.2 KiB
TOML

[package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
name = "cumulus-ping"
version = "0.1.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
sp-std = { path = "../../../../substrate/primitives/std", default-features = false}
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false}
frame-support = { path = "../../../../substrate/frame/support", default-features = false}
frame-system = { path = "../../../../substrate/frame/system", default-features = false}
xcm = { path = "../../../../polkadot/xcm", default-features = false}
cumulus-primitives-core = { path = "../../../primitives/core", default-features = false }
cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false }
[features]
default = ["std"]
std = [
"codec/std",
"scale-info/std",
"cumulus-primitives-core/std",
"sp-std/std",
"sp-runtime/std",
"frame-support/std",
"frame-system/std",
"xcm/std",
]
try-runtime = [
"frame-system/try-runtime",
"frame-support/try-runtime",
"cumulus-pallet-xcm/try-runtime",
"sp-runtime/try-runtime"
]