mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 05:11:02 +00:00
31c79470a3
* Rename squatted crates This commit adds the staging- prefix to squatted crates so we can go forward and publish them to crates.io. Using the staging- prefix is a temp fix until we decide on replacement names. https://forum.parity.io/t/renaming-squated-crates-in-substrate-polkadot-cumulus/1964/6 * Fix test after crate renames * Update Lockfile
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "staging-xcm"
|
|
description = "The basic XCM datastructures."
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
bounded-collections = { version = "0.1.8", 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.5.0", default-features = false, features = ["derive", "serde"] }
|
|
sp-weights = { path = "../../substrate/primitives/weights", default-features = false, features = ["serde"] }
|
|
serde = { version = "1.0.188", default-features = false, features = ["alloc", "derive"] }
|
|
xcm-procedural = { path = "procedural" }
|
|
|
|
[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",
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-weights/std",
|
|
]
|