[package] name = "pallet-beefy-mmr" version = "39.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 } codec = { features = ["derive"], workspace = true } log = { workspace = true } scale-info = { features = ["derive"], workspace = true } serde = { optional = true, workspace = true, default-features = true } binary-merkle-tree.workspace = true frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true pallet-beefy.workspace = true pallet-mmr.workspace = true pallet-session.workspace = true sp-consensus-beefy.workspace = true sp-core.workspace = true sp-io.workspace = true sp-runtime.workspace = true sp-api.workspace = true sp-state-machine.workspace = true [dev-dependencies] array-bytes = { workspace = true, default-features = true } sp-staking = { default-features = true, path = "../../primitives/staking" } [features] default = ["std"] std = [ "array-bytes", "binary-merkle-tree/std", "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "log/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-state-machine/std", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-beefy/try-runtime", "pallet-mmr/try-runtime", "pallet-session/try-runtime", "sp-runtime/try-runtime", ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-mmr/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ]