mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
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.2.0", default-features = false, features = ["serde"] }
|
|
derivative = { version = "2.2.0", default-features = false, features = ["use_core"] }
|
|
impl-trait-for-tuples = "0.2.2"
|
|
log = { workspace = true }
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
scale-info = { version = "2.11.1", default-features = false, features = ["derive", "serde"] }
|
|
sp-weights = { path = "../../substrate/primitives/weights", default-features = false, features = ["serde"] }
|
|
serde = { features = ["alloc", "derive", "rc"], workspace = true }
|
|
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"]
|