[package] name = "substrate-consensus-babe-primitives" version = "2.0.0" authors = ["Parity Technologies "] description = "Primitives for BABE consensus" edition = "2018" [dependencies] substrate-client = { path = "../../../client", default-features = false } rstd = { package = "sr-std", path = "../../../sr-std", default-features = false } sr-primitives = { path = "../../../sr-primitives", default-features = false } primitives = { package = "substrate-primitives", path = "../../../primitives", default-features = false } slots = { package = "substrate-consensus-slots", path = "../../slots", optional = true } parity-codec = { version = "4.1.1", default-features = false } schnorrkel = { version = "0.1.1", optional = true } [features] default = ["std"] std = [ "rstd/std", "sr-primitives/std", "substrate-client/std", "parity-codec/std", "schnorrkel", "slots", ]