mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
305aefc43d
This PR updates the version of `serde_json` to `1.0.108` throughout the codebase.
35 lines
995 B
TOML
35 lines
995 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"
|
|
kitchensink-runtime = { version = "3.0.0-dev", path = "../../node/runtime" }
|
|
log = "0.4.17"
|
|
node-cli = { package = "staging-node-cli", path = "../../node/cli" }
|
|
sc-chain-spec = { path = "../../../client/chain-spec" }
|
|
sc-keystore = { path = "../../../client/keystore" }
|
|
serde_json = "1.0.108"
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-keystore = { path = "../../../primitives/keystore" }
|
|
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|