Files
pezkuwi-sdk/substrate/frame/beefy-mmr/Cargo.toml
T

88 lines
2.4 KiB
TOML

[package]
name = "pallet-beefy-mmr"
version = "28.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
description = "BEEFY + MMR runtime utilities"
repository.workspace = true
homepage.workspace = true
[lints]
workspace = true
[dependencies]
array-bytes = { optional = true, workspace = true, default-features = true }
binary-merkle-tree = { workspace = true }
codec = { features = ["derive"], workspace = true }
frame-benchmarking = { optional = true, workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
log = { workspace = true }
pallet-beefy = { workspace = true }
pallet-mmr = { workspace = true }
pallet-session = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
serde = { optional = true, workspace = true, default-features = true }
sp-api = { workspace = true }
sp-consensus-beefy = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-state-machine = { workspace = true }
[dev-dependencies]
array-bytes = { workspace = true, default-features = true }
pallet-balances = { workspace = true }
sp-staking = { workspace = true, default-features = true }
[features]
default = ["std"]
std = [
"array-bytes",
"binary-merkle-tree/std",
"codec/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"log/std",
"pallet-balances/std",
"pallet-beefy/std",
"pallet-mmr/std",
"pallet-session/std",
"scale-info/std",
"serde",
"sp-api/std",
"sp-consensus-beefy/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-staking/std",
"sp-state-machine/std",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"pallet-balances/try-runtime",
"pallet-beefy/try-runtime",
"pallet-mmr/try-runtime",
"pallet-session/try-runtime",
"sp-runtime/try-runtime",
]
runtime-benchmarks = [
"binary-merkle-tree/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-beefy/runtime-benchmarks",
"pallet-mmr/runtime-benchmarks",
"pallet-session/runtime-benchmarks",
"sp-api/runtime-benchmarks",
"sp-consensus-beefy/runtime-benchmarks",
"sp-io/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"sp-staking/runtime-benchmarks",
"sp-state-machine/runtime-benchmarks",
]