mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 00:18:00 +00:00
72ac18491c
* WIP integrate unstable v16 metadata into Subxt * first pass moving retain to the CLI tool * Remove otuer enum variant stripping and move now simpler strip_metadata to new crate. test it * tidyup to use stripmetadata package etc * Fix / comment out tests * fmt * clippy * Fix wasm example * wasm-example fix * wasm-example fix * Maske sure to move IDs around after types.retain() * fmt * Tweak comment * Find dispatch error separately to avoid issues during mapping * Expose associated type information in pallet metadata * Hopefully fix flaky archive RPC * remove unwanted temp file * Address nits * Add back commented-otu tests and address review comments * use either, and simplify for_each
44 lines
1.2 KiB
TOML
44 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 }
|
|
thiserror = { workspace = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
bitvec = { workspace = true, features = ["alloc"] }
|
|
criterion = { workspace = true }
|
|
scale-info = { workspace = true, features = ["bit-vec"] }
|
|
subxt-utils-stripmetadata = { workspace = true }
|
|
|
|
[lib]
|
|
# Without this, libtest cli opts interfere with criterion benches:
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true |