95 lines
2.9 KiB
TOML
95 lines
2.9 KiB
TOML
[package]
|
|
name = "pallet-beefy"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
repository.workspace = true
|
|
description = "BEEFY FRAME pallet"
|
|
homepage.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
log = { workspace = true }
|
|
pallet-authorship = { workspace = true }
|
|
pallet-session = { workspace = true }
|
|
scale-info = { features = ["derive", "serde"], workspace = true }
|
|
serde = { optional = true, workspace = true, default-features = true }
|
|
sp-consensus-beefy = { features = ["serde"], workspace = true }
|
|
sp-runtime = { features = ["serde"], workspace = true }
|
|
sp-session = { workspace = true }
|
|
sp-staking = { features = ["serde"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
frame-election-provider-support = { workspace = true, default-features = true }
|
|
pallet-balances = { workspace = true, default-features = true }
|
|
pallet-offences = { workspace = true, default-features = true }
|
|
pallet-staking = { workspace = true, default-features = true }
|
|
pallet-staking-reward-curve = { workspace = true, default-features = true }
|
|
pallet-timestamp = { workspace = true, default-features = true }
|
|
sp-core = { workspace = true, default-features = true }
|
|
sp-io = { workspace = true, default-features = true }
|
|
sp-staking = { workspace = true, default-features = true }
|
|
sp-state-machine = { workspace = true }
|
|
sp-tracing = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-election-provider-support/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-authorship/std",
|
|
"pallet-balances/std",
|
|
"pallet-offences/std",
|
|
"pallet-session/std",
|
|
"pallet-staking/std",
|
|
"pallet-timestamp/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-consensus-beefy/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-staking/std",
|
|
"sp-state-machine/std",
|
|
]
|
|
try-runtime = [
|
|
"frame-election-provider-support/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-offences/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-staking/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-election-provider-support/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-authorship/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-offences/runtime-benchmarks",
|
|
"pallet-session/runtime-benchmarks",
|
|
"pallet-staking-reward-curve/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"sp-consensus-beefy/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-session/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
"sp-state-machine/runtime-benchmarks",
|
|
]
|