mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 17:31:03 +00:00
4a345045a9
* add missing bridges logging target * trace send_xcm * trace execute_xcm * trace calls in xcm-executor * trace tuple implementations of xcm traits * update cargo.lock * remove bridge log target Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * log argument formatting Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
20 lines
522 B
TOML
20 lines
522 B
TOML
[package]
|
|
name = "xcm"
|
|
version = "0.9.8"
|
|
authors = ["Parity Technologies x<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 }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
]
|