mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
5c4fa55f09
Bumps [log](https://github.com/rust-lang/log) from 0.4.14 to 0.4.16. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/commits) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
2.0 KiB
TOML
43 lines
2.0 KiB
TOML
[package]
|
|
name = "node-bench"
|
|
version = "0.9.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate node integration benchmarks."
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1.6", features = ["derive"] }
|
|
log = "0.4.16"
|
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
|
node-testing = { version = "3.0.0-dev", path = "../testing" }
|
|
node-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
|
|
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
|
sp-state-machine = { version = "0.12.0", path = "../../../primitives/state-machine" }
|
|
serde = "1.0.136"
|
|
serde_json = "1.0.79"
|
|
derive_more = "0.99.16"
|
|
kvdb = "0.11.0"
|
|
kvdb-rocksdb = "0.15.1"
|
|
sp-trie = { version = "6.0.0", path = "../../../primitives/trie" }
|
|
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
|
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
|
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
|
|
sp-tracing = { version = "5.0.0", path = "../../../primitives/tracing" }
|
|
hash-db = "0.15.2"
|
|
tempfile = "3.1.0"
|
|
fs_extra = "1"
|
|
hex = "0.4.0"
|
|
rand = { version = "0.7.2", features = ["small_rng"] }
|
|
lazy_static = "1.4.0"
|
|
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
|
|
parity-db = { version = "0.3" }
|
|
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
|
|
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
|
futures = { version = "0.3.21", features = ["thread-pool"] }
|