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
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "subxt-utils-fetchmetadata"
|
|
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 = "subxt utility to fetch metadata"
|
|
|
|
[features]
|
|
url = ["dep:jsonrpsee", "dep:tokio", "dep:url", "frame-metadata"]
|
|
|
|
[dependencies]
|
|
thiserror = { workspace = true }
|
|
codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "std"] }
|
|
hex = { workspace = true, features = ["std"] }
|
|
|
|
# Optional dependencies for the `url` feature.
|
|
jsonrpsee = { workspace = true, features = ["ws-client", "http-client"], optional = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"], optional = true }
|
|
url = { workspace = true, optional = true }
|
|
frame-metadata = { workspace = true, optional = true, features = ["std"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["url"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.playground]
|
|
default-features = true
|
|
|
|
[lints]
|
|
workspace = true |