mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
06cfb211a9
* cli: Add chainSpec command Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli/chainSpec: Move to dedicated module Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Compute the state root hash Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Remove code substitutes Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * artifacts: Update polkadot.json Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * scripts: Generate the chain spec Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Remove testing artifacts Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Fix clippy Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Apply rustfmt Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Introduce feature flag for smoldot dependency Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Rename chain-spec to chain-spec-pruning Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * scripts: Update chain-spec command Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
42 lines
1.3 KiB
TOML
42 lines
1.3 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"
|
|
|
|
[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, features = ["fetch-metadata"] }
|
|
subxt-metadata = { workspace = true }
|
|
subxt = { workspace = true, features = ["native", "jsonrpsee"] }
|
|
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 }
|
|
jsonrpsee = { workspace = true, features = ["async-client", "client-ws-transport-native-tls", "http-client"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
thiserror = { workspace = true }
|
|
smoldot = { workspace = true, optional = true}
|