mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 09:17:58 +00:00
0a8a607a58
* update tiny-keccak to 0.2 * update deps except bitvec and shared_memory * fix some warning after futures upgrade * remove useless package rename caused by bug in cargo-upgrade * revert parity-util-mem * * remove unused import * cargo update * remove all renames on parity-scale-codec * remove the leftovers * remove unused dep
31 lines
1.2 KiB
TOML
31 lines
1.2 KiB
TOML
[package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
name = "xcm-executor"
|
|
description = "An abstract and configurable XCM message executor."
|
|
version = "0.8.22"
|
|
|
|
[dependencies]
|
|
impl-trait-for-tuples = "0.2.0"
|
|
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
|
xcm = { path = "..", default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"xcm/std",
|
|
"sp-std/std",
|
|
"sp-io/std",
|
|
"sp-arithmetic/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"frame-support/std",
|
|
]
|