Files
pezkuwi-subxt/substrate/utils/frame/benchmarking-cli/Cargo.toml
T
Gavin Wood 91af5b6fcc New database trait (#5549)
* Introduce trait

* The trait

* Generic

* Basic impls.

* Remove unneeded bounds

* Minor changes

* Switch over to the new DB trait

* Integrated parity-db and added CLI for db selection

* Default impl.

* Fix logs.

* Started integrating subdb

* Apply suggestions from code review

Co-Authored-By: Cecile Tonglet <cecile@parity.io>

* Apply suggestions from code review

Co-Authored-By: Nikolay Volf <nikvolf@gmail.com>

* Enable subdb

* Bump parity-db

* Fixed CLI macro

* Fixed browser build

* Fixed features

* Sort out features

* Use parity-db from crates.io

* Typo

Co-authored-by: arkpar <arkady.paronyan@gmail.com>
Co-authored-by: Cecile Tonglet <cecile@parity.io>
Co-authored-by: Nikolay Volf <nikvolf@gmail.com>
2020-04-15 14:38:39 +02:00

31 lines
1.3 KiB
TOML

[package]
name = "frame-benchmarking-cli"
version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "CLI for benchmarking FRAME"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
frame-benchmarking = { version = "2.0.0-dev", path = "../../../frame/benchmarking" }
sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sc-service = { version = "0.8.0-dev", default-features = false, path = "../../../client/service" }
sc-cli = { version = "0.8.0-dev", path = "../../../client/cli" }
sc-client = { version = "0.8.0-dev", path = "../../../client" }
sc-client-db = { version = "0.8.0-dev", path = "../../../client/db" }
sc-executor = { version = "0.8.0-dev", path = "../../../client/executor" }
sp-externalities = { version = "0.8.0-dev", path = "../../../primitives/externalities" }
sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-dev", path = "../../../primitives/state-machine" }
structopt = "0.3.8"
codec = { version = "1.3.0", package = "parity-scale-codec" }
[features]
default = ["db"]
db = ["sc-client-db/kvdb-rocksdb", "sc-client-db/parity-db"]