mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
8feed6aedb
* Use proc macros to generate conversion functions for MultiLocation * Add compile test and missing conversion cases * Add common derives for Parent and Ancestor * Generate conversion functions for MultiLocation v0 via proc macro * Add type conversion test and fix a bug * cargo fmt * Do not hardcode 8 as the number of max parents * Use map instead of for loops when generating code fragments * Spelling * cargo fmt * More mapping, less for-looping
21 lines
562 B
TOML
21 lines
562 B
TOML
[package]
|
|
name = "xcm"
|
|
version = "0.9.9"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "The basic XCM datastructures."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
impl-trait-for-tuples = "0.2.0"
|
|
parity-scale-codec = { 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 = []
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
]
|