mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
305aefc43d
This PR updates the version of `serde_json` to `1.0.108` throughout the codebase.
45 lines
1.7 KiB
TOML
45 lines
1.7 KiB
TOML
[package]
|
|
name = "node-bench"
|
|
version = "0.9.0-dev"
|
|
authors.workspace = true
|
|
description = "Substrate node integration benchmarks."
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
array-bytes = "6.1"
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
|
log = "0.4.17"
|
|
node-primitives = { path = "../primitives" }
|
|
node-testing = { path = "../testing" }
|
|
kitchensink-runtime = { path = "../runtime" }
|
|
sc-client-api = { path = "../../../client/api" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sp-state-machine = { path = "../../../primitives/state-machine" }
|
|
serde = "1.0.188"
|
|
serde_json = "1.0.108"
|
|
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
|
|
kvdb = "0.13.0"
|
|
kvdb-rocksdb = "0.19.0"
|
|
sp-trie = { path = "../../../primitives/trie" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-consensus = { path = "../../../primitives/consensus/common" }
|
|
sc-basic-authorship = { path = "../../../client/basic-authorship" }
|
|
sp-inherents = { path = "../../../primitives/inherents" }
|
|
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false}
|
|
sp-tracing = { path = "../../../primitives/tracing" }
|
|
hash-db = "0.16.0"
|
|
tempfile = "3.1.0"
|
|
fs_extra = "1"
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
|
lazy_static = "1.4.0"
|
|
parity-db = "0.4.8"
|
|
sc-transaction-pool = { path = "../../../client/transaction-pool" }
|
|
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
|
|
futures = { version = "0.3.21", features = ["thread-pool"] }
|