Files
pezkuwi-subxt/substrate/bin/utils/chain-spec-builder/Cargo.toml
T
Michal Kucharczyk 2fd8c51ebc chain-spec-builder: cleanup (#2174)
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 <>
2023-11-21 11:51:23 +01:00

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" }