tp-consensus-babe 0.8.2

Primitives for BABE consensus
[package]
name = "tp-consensus-babe"
version = "0.8.2"
authors = ["Parity Technologies <admin@parity.io>", "Tetcoin Developers <support@tetcoin.org>"]
description = "Primitives for BABE consensus"
edition = "2018"
license = "Apache-2.0"
keywords = ["tetcoin", "tetcore", "crypto", "blockchain", "framework"]
categories = ["cryptography::cryptocurrencies"]
homepage = "https://core.tetcoin.org"
repository = "https://github.com/tetcoin/tetcore"
documentation = "https://docs.rs/babe"
readme = "README.md"

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

[dependencies]
tet-application-crypto = { version = "2.0.2", default-features = false, path = "../../application-crypto" }
codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false }
merlin = { version = "2.0", default-features = false }
tetcore-std = { version = "2.0.2", default-features = false, path = "../../std" }
tp-api = { version = "2.0.2", default-features = false, path = "../../api" }
tp-consensus = { version = "0.8.2", optional = true, path = "../common" }
tp-consensus-slots = { version = "0.8.2", default-features = false, path = "../slots" }
tp-consensus-vrf = { version = "0.8.2", path = "../vrf", default-features = false }
tet-core = { version = "2.0.2", default-features = false, path = "../../core" }
tp-inherents = { version = "2.0.2", default-features = false, path = "../../inherents" }
tp-keystore = { version = "0.8.1", default-features = false, path = "../../keystore", optional = true }
tp-runtime = { version = "2.0.2", default-features = false, path = "../../runtime" }
tp-timestamp = { version = "2.0.2", default-features = false, path = "../../timestamp" }

[features]
default = ["std"]
std = [
	"tet-application-crypto/std",
	"codec/std",
	"merlin/std",
	"tetcore-std/std",
	"tp-api/std",
	"tp-consensus",
	"tp-consensus-slots/std",
	"tp-consensus-vrf/std",
	"tet-core/std",
	"tp-inherents/std",
	"tp-keystore",
	"tp-runtime/std",
	"tp-timestamp/std",
]