pallet-babe 6.0.0

Consensus extension module for BABE consensus. Collects on-chain randomness from VRF outputs and manages epoch transitions.
Documentation
[package]
name = "pallet-babe"
version = "6.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "Consensus extension module for BABE consensus. Collects on-chain randomness from VRF outputs and manages epoch transitions."
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, features = ["derive"] }
log = { version = "0.4.17", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
frame-benchmarking = { version = "6.0.0", default-features = false, optional = true}
frame-support = { version = "6.0.0", default-features = false}
frame-system = { version = "6.0.0", default-features = false}
pallet-authorship = { version = "6.0.0", default-features = false}
pallet-session = { version = "6.0.0", default-features = false}
pallet-timestamp = { version = "6.0.0", default-features = false}
sp-application-crypto = { version = "9.0.0", default-features = false}
sp-consensus-babe = { version = "0.11.0", default-features = false}
sp-consensus-vrf = { version = "0.11.0", default-features = false}
sp-io = { version = "9.0.0", default-features = false}
sp-runtime = { version = "9.0.0", default-features = false}
sp-session = { version = "5.0.0", default-features = false}
sp-staking = { version = "5.0.0", default-features = false}
sp-std = { version = "6.0.0", default-features = false}

[dev-dependencies]
frame-election-provider-support = { version = "6.0.0" }
pallet-balances = { version = "6.0.0" }
pallet-offences = { version = "6.0.0" }
pallet-staking = { version = "6.0.0" }
pallet-staking-reward-curve = { version = "4.0.0" }
sp-core = { version = "9.0.0" }

[features]
default = ["std"]
std = [
	"codec/std",
	"frame-benchmarking?/std",
	"frame-support/std",
	"frame-system/std",
	"log/std",
	"pallet-authorship/std",
	"pallet-session/std",
	"pallet-timestamp/std",
	"scale-info/std",
	"sp-application-crypto/std",
	"sp-consensus-babe/std",
	"sp-consensus-vrf/std",
	"sp-io/std",
	"sp-runtime/std",
	"sp-session/std",
	"sp-staking/std",
	"sp-std/std",
]
runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks"]
try-runtime = ["frame-support/try-runtime"]