mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
8db7ec9cc9
* all reverences of substrate.dev replaced with *correct* docs.substrate.io links * fix links in non-cargo files, errors in replace * homepage https://substrate.io * cargo +nightly fmt * FMT Co-authored-by: Bastian Köcher <info@kchr.de>
63 lines
2.7 KiB
TOML
63 lines
2.7 KiB
TOML
[package]
|
|
name = "pallet-offences-benchmarking"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
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 = "2.0.0", default-features = false }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" }
|
|
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, features = [
|
|
"runtime-benchmarks",
|
|
], path = "../../offences" }
|
|
pallet-session = { version = "4.0.0-dev", default-features = false, path = "../../session" }
|
|
pallet-staking = { version = "4.0.0-dev", default-features = false, features = [
|
|
"runtime-benchmarks",
|
|
], path = "../../staking" }
|
|
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
|
|
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" }
|
|
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../election-provider-support" }
|
|
|
|
[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 = "4.0.0-dev", path = "../../../primitives/core" }
|
|
sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"frame-benchmarking/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",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"frame-election-provider-support/std",
|
|
"sp-std/std",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
]
|