Files
pezkuwi-subxt/substrate/utils/frame/benchmarking-cli/Cargo.toml
T
Oliver Tale-Yazdi e89d0fca35 Lift dependencies to the workspace (Part 2/x) (#3366)
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>
2024-02-20 14:28:05 +00:00

72 lines
2.6 KiB
TOML

[package]
name = "frame-benchmarking-cli"
version = "32.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage = "https://substrate.io"
repository.workspace = true
description = "CLI for benchmarking FRAME"
readme = "README.md"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
array-bytes = "6.1"
chrono = "0.4"
clap = { version = "4.5.1", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.1" }
comfy-table = { version = "7.1.0", default-features = false }
handlebars = "4.2.2"
Inflector = "0.11.4"
itertools = "0.10.3"
lazy_static = "1.4.0"
linked-hash-map = "0.5.4"
log = { workspace = true, default-features = true }
rand = { version = "0.8.5", features = ["small_rng"] }
rand_pcg = "0.3.1"
serde = { workspace = true, default-features = true }
serde_json = { workspace = true, default-features = true }
thiserror = { workspace = true }
thousands = "0.2.0"
frame-benchmarking = { path = "../../../frame/benchmarking" }
frame-support = { path = "../../../frame/support" }
frame-system = { path = "../../../frame/system" }
sc-block-builder = { path = "../../../client/block-builder" }
sc-cli = { path = "../../../client/cli", default-features = false }
sc-client-api = { path = "../../../client/api" }
sc-client-db = { path = "../../../client/db", default-features = false }
sc-executor = { path = "../../../client/executor" }
sc-service = { path = "../../../client/service", default-features = false }
sc-sysinfo = { path = "../../../client/sysinfo" }
sp-api = { path = "../../../primitives/api" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-core = { path = "../../../primitives/core" }
sp-database = { path = "../../../primitives/database" }
sp-externalities = { path = "../../../primitives/externalities" }
sp-inherents = { path = "../../../primitives/inherents" }
sp-keystore = { path = "../../../primitives/keystore" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-state-machine = { path = "../../../primitives/state-machine" }
sp-storage = { path = "../../../primitives/storage" }
sp-trie = { path = "../../../primitives/trie" }
sp-io = { path = "../../../primitives/io" }
sp-wasm-interface = { path = "../../../primitives/wasm-interface" }
gethostname = "0.2.3"
[features]
default = ["rocksdb"]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sc-client-db/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
rocksdb = ["sc-cli/rocksdb", "sc-client-db/rocksdb"]