mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
48 lines
1.8 KiB
TOML
48 lines
1.8 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
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
array-bytes = "6.1"
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
|
log = { workspace = true, default-features = true }
|
|
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 = { workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
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.12"
|
|
sc-transaction-pool = { path = "../../../client/transaction-pool" }
|
|
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
|
|
futures = { version = "0.3.30", features = ["thread-pool"] }
|