mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
495d24d730
Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Bastian Köcher <info@kchr.de>
31 lines
806 B
TOML
31 lines
806 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]
|
|
ansi_term = "0.12.1"
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
|
rand = "0.8"
|
|
node-cli = { package = "staging-node-cli", path = "../../node/cli" }
|
|
sc-chain-spec = { path = "../../../client/chain-spec" }
|
|
sc-keystore = { path = "../../../client/keystore" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-keystore = { path = "../../../primitives/keystore" }
|