mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 22:47:56 +00:00
b5209a162e
* WIP using frame-decode for core extrinsic decode logic * fmt * Fix dependabot config * clippy * tidy some imports * Fix a couple of tests * Update to frame-decode 0.0.7 * fix docs * Decode exts earlier to avoid doing it every iter/find step * frame-decode to 0.1.0 * fmt * clippy * fix wasm example * doc test fixes * Fix test * Fix a couple of subxt_core tests
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "subxt-metadata"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
autotests = false
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "Command line utilities for checking metadata compatibility between nodes."
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["scale-info/std", "frame-metadata/std"]
|
|
|
|
[dependencies]
|
|
scale-info = { workspace = true, default-features = false }
|
|
frame-decode = { workspace = true }
|
|
frame-metadata = { workspace = true, default-features = false, features = ["current", "decode"] }
|
|
codec = { package = "parity-scale-codec", workspace = true, default-features = false, features = ["derive"] }
|
|
sp-crypto-hashing = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
bitvec = { workspace = true, features = ["alloc"] }
|
|
criterion = { workspace = true }
|
|
scale-info = { workspace = true, features = ["bit-vec"] }
|
|
assert_matches = { workspace = true }
|
|
|
|
[lib]
|
|
# Without this, libtest cli opts interfere with criteron benches:
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true |