mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
2b8af8cb1a
* chore(release): sp-core v7.0.0 * chore(release): sp-runtime v7.0.0 * fix bad merge
63 lines
2.6 KiB
TOML
63 lines
2.6 KiB
TOML
[package]
|
|
name = "pallet-offences-benchmarking"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME offences pallet benchmarking"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
|
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" }
|
|
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../election-provider-support" }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
|
pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../babe" }
|
|
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../balances" }
|
|
pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../grandpa" }
|
|
pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../im-online" }
|
|
pallet-offences = { version = "4.0.0-dev", default-features = false, path = "../../offences" }
|
|
pallet-session = { version = "4.0.0-dev", default-features = false, path = "../../session" }
|
|
pallet-staking = { version = "4.0.0-dev", default-features = false, path = "../../staking" }
|
|
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
|
|
sp-std = { version = "5.0.0", default-features = false, path = "../../../primitives/std" }
|
|
|
|
[dev-dependencies]
|
|
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../../staking/reward-curve" }
|
|
pallet-timestamp = { version = "4.0.0-dev", path = "../../timestamp" }
|
|
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
|
|
sp-io = { version = "7.0.0", path = "../../../primitives/io" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-election-provider-support/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-babe/std",
|
|
"pallet-balances/std",
|
|
"pallet-grandpa/std",
|
|
"pallet-im-online/std",
|
|
"pallet-offences/std",
|
|
"pallet-session/std",
|
|
"pallet-staking/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"pallet-staking/runtime-benchmarks",
|
|
]
|