pallet-babe 2.0.0-rc6

Consensus extension module for BABE consensus. Collects on-chain randomness from VRF outputs and manages epoch transitions.
Documentation
[package]
name = "pallet-babe"
version = "2.0.0-rc6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Consensus extension module for BABE consensus. Collects on-chain randomness from VRF outputs and manages epoch transitions."

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
frame-benchmarking = { version = "2.0.0-rc6", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc6", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc6", default-features = false, path = "../system" }
pallet-authorship = { version = "2.0.0-rc6", default-features = false, path = "../authorship" }
pallet-session = { version = "2.0.0-rc6", default-features = false, path = "../session" }
pallet-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../timestamp" }
serde = { version = "1.0.101", optional = true }
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.8.0-rc6", default-features = false, path = "../../primitives/consensus/babe" }
sp-consensus-vrf = { version = "0.8.0-rc6", default-features = false, path = "../../primitives/consensus/vrf" }
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/inherents" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/runtime" }
sp-session = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/session" }
sp-staking = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/staking" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/std" }
sp-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/timestamp" }

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