mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-05 21:27:24 +00:00
e8cb6cdaac
* Updating dependencies * Adapting code to scale v3 * Upgrade bitvec to 1.0.0 * Fix bitvec arithmetics * Update Cargo.lock * Update sp-io * Fixing the build * Yanked scale-info 2.0.0 Co-authored-by: Bastian Köcher <info@kchr.de>
24 lines
690 B
TOML
24 lines
690 B
TOML
[package]
|
|
name = "xcm"
|
|
version = "0.9.17"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "The basic XCM datastructures."
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
impl-trait-for-tuples = "0.2.2"
|
|
parity-scale-codec = { version = "3.0.0", default-features = false, features = [ "derive" ] }
|
|
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
|
derivative = {version = "2.2.0", default-features = false, features = [ "use_core" ] }
|
|
log = { version = "0.4.14", default-features = false }
|
|
xcm-procedural = { path = "procedural" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
runtime-benchmarks = []
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
]
|