Files
pezkuwi-subxt/polkadot/xcm/Cargo.toml
T
2023-02-03 14:03:38 +00:00

32 lines
1.1 KiB
TOML

[package]
name = "xcm"
description = "The basic XCM datastructures."
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
derivative = { version = "2.2.0", default-features = false, features = [ "use_core" ] }
impl-trait-for-tuples = "0.2.2"
log = { version = "0.4.17", default-features = false }
parity-scale-codec = { version = "3.3.0", default-features = false, features = [ "derive", "max-encoded-len" ] }
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-weights = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
serde = { version = "1.0.136", optional = true, features = ["derive"] }
xcm-procedural = { path = "procedural" }
[dev-dependencies]
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
[features]
default = ["std"]
wasm-api = []
std = [
"parity-scale-codec/std",
"scale-info/std",
"serde",
"sp-core/std",
"sp-weights/std",
]