mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 14:51:07 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-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.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.10.0", 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"]
|