mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 07:58:02 +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
56 lines
1.7 KiB
TOML
56 lines
1.7 KiB
TOML
[package]
|
|
name = "subxt-cli"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/subxt-cli"
|
|
homepage.workspace = true
|
|
description = "Command line utilities for working with subxt codegen"
|
|
|
|
[[bin]]
|
|
name = "subxt"
|
|
path = "src/main.rs"
|
|
doc = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
# Compute the state root hash from the genesis entry.
|
|
# Enable this to create a smaller chain spec file.
|
|
chain-spec-pruning = ["smoldot"]
|
|
|
|
[dependencies]
|
|
subxt-codegen = { workspace = true }
|
|
subxt-utils-fetchmetadata = { workspace = true, features = ["url"] }
|
|
subxt-utils-stripmetadata = { workspace = true }
|
|
subxt-metadata = { workspace = true }
|
|
subxt = { workspace = true, features = ["default"] }
|
|
clap = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
color-eyre = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
hex = { workspace = true }
|
|
frame-metadata = { workspace = true }
|
|
codec = { package = "parity-scale-codec", workspace = true }
|
|
scale-info = { workspace = true }
|
|
scale-value = { workspace = true }
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
jsonrpsee = { workspace = true, features = ["async-client", "client-ws-transport-tls", "http-client"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
scale-typegen-description = { workspace = true }
|
|
heck = { workspace = true }
|
|
indoc = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
smoldot = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
strip-ansi-escapes = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|