mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
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.1", 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.21", features = ["thread-pool"] }
|