Files
pezkuwi-subxt/substrate/frame/offences/benchmarking/Cargo.toml
T
Marcio Diaz fb9bbf306d Benchmark Offences Pallet (#5411)
* Add initial report_ofence bench.

* Remove unused imports

* Style nit

* Add nominators

* Remove logs.

* Nits.

* Add nominators param.

* Reorg, comment.

* Remove whitespaces.

* Apply review suggestion: move benchmark to own crate.

* Remove import.

* Remove line.

* Add feature flag.

* Pass can_report.

* Cleaning up.

* More cleaning
2020-04-07 11:36:57 +02:00

44 lines
1.9 KiB
TOML

[package]
name = "pallet-offences-benchmarking"
version = "2.0.0-alpha.5"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME offences pallet benchmarking"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/std" }
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/staking" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../../benchmarking" }
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../../system" }
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../../support" }
pallet-im-online = { version = "2.0.0-alpha.5", default-features = false, path = "../../im-online" }
pallet-offences = { version = "2.0.0-alpha.5", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
pallet-staking = { version = "2.0.0-alpha.5", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../../session" }
sp-io = { path = "../../../primitives/io", default-features = false, version = "2.0.0-alpha.5"}
[features]
default = ["std"]
std = [
"sp-runtime/std",
"sp-std/std",
"sp-staking/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"pallet-offences/std",
"pallet-im-online/std",
"pallet-staking/std",
"pallet-session/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]