mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
aa93b50120
Bumps [hex-literal](https://github.com/RustCrypto/utils) from 0.3.4 to 0.4.1. - [Release notes](https://github.com/RustCrypto/utils/releases) - [Commits](https://github.com/RustCrypto/utils/compare/hex-literal-v0.3.4...hex-literal-v0.4.1) --- updated-dependencies: - dependency-name: hex-literal dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "xcm"
|
|
description = "The basic XCM datastructures."
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
bounded-collections = { version = "0.1.5", default-features = false }
|
|
derivative = { version = "2.2.0", default-features = false, features = [ "use_core" ] }
|
|
impl-trait-for-tuples = "0.2.2"
|
|
log = { version = "0.4.17", default-features = false }
|
|
parity-scale-codec = { version = "3.4.0", default-features = false, features = [ "derive", "max-encoded-len" ] }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
sp-weights = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
serde = { version = "1.0.136", optional = true, features = ["derive"] }
|
|
xcm-procedural = { path = "procedural" }
|
|
|
|
[dev-dependencies]
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
hex = "0.4.3"
|
|
hex-literal = "0.4.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = [
|
|
"bounded-collections/std",
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"sp-weights/std",
|
|
]
|