mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
7f1bff9462
* Speed up chainspec json load * Update client/chain-spec/src/chain_spec.rs * Update client/chain-spec/src/chain_spec.rs * Update client/chain-spec/src/chain_spec.rs * Load the chainspec through `mmap` Co-authored-by: icodezjb <icodezjb@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Jan Bujak <jan@parity.io>
26 lines
948 B
TOML
26 lines
948 B
TOML
[package]
|
|
name = "sc-chain-spec"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate chain configurations."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sc-chain-spec-derive = { version = "4.0.0-dev", path = "./derive" }
|
|
impl-trait-for-tuples = "0.2.1"
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sp-core = { version = "4.0.0-dev", path = "../../primitives/core" }
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
serde_json = "1.0.68"
|
|
sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
memmap2 = "0.5.0"
|