mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-11 19:55:50 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
44 lines
1.4 KiB
TOML
44 lines
1.4 KiB
TOML
[package]
|
|
name = "staging-xcm"
|
|
description = "The basic XCM datastructures."
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
array-bytes = "6.1"
|
|
bounded-collections = { version = "0.1.9", default-features = false, features = ["serde"] }
|
|
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.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive", "serde"] }
|
|
sp-weights = { path = "../../substrate/primitives/weights", default-features = false, features = ["serde"] }
|
|
serde = { version = "1.0.195", default-features = false, features = ["alloc", "derive", "rc"] }
|
|
schemars = { version = "0.8.13", default-features = true, optional = true }
|
|
xcm-procedural = { path = "procedural" }
|
|
environmental = { version = "1.1.4", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-io = { path = "../../substrate/primitives/io" }
|
|
hex = "0.4.3"
|
|
hex-literal = "0.4.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = [
|
|
"bounded-collections/std",
|
|
"environmental/std",
|
|
"log/std",
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-weights/std",
|
|
]
|
|
json-schema = ["bounded-collections/json-schema", "dep:schemars", "sp-weights/json-schema"]
|