mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
2fd8c51ebc
This PR removes: - `New`, `Generate`, `Edit` commands, - `kitchensink` dependency from the `chain-spec-builder` util. New `convert-to-raw`, `update-code` commands were added. Additionally renames the `runtime` command (which was added in #1256) to `create`. --------- Co-authored-by: Sebastian Kunert <skunert49@gmail.com> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: command-bot <>
28 lines
659 B
TOML
28 lines
659 B
TOML
[package]
|
|
name = "staging-chain-spec-builder"
|
|
version = "2.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
build = "build.rs"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[[bin]]
|
|
path = "bin/main.rs"
|
|
name = "chain-spec-builder"
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
|
log = "0.4.17"
|
|
sc-chain-spec = { path = "../../../client/chain-spec" }
|
|
serde_json = "1.0.108"
|
|
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|