[package] name = "tp-consensus" version = "0.8.2" authors = ["Parity Technologies ", "Tetcoin Developers "] 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" description = "Common utilities for building and using consensus engines in tetcore." documentation = "https://docs.rs/tp-consensus/" readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] thiserror = "1.0.21" tetsy-libp2p = { version = "0.34.2", default-features = false } # tetsy-libp2p = { version = "0.34.0", default-features = false, git = "https://github.com/tetcoin/tetsy-libp2p.git", rev = "bc2e822ef4c5f69225112b461018212a18782e4a" } log = "0.4.8" tet-core = { path= "../../core", version = "2.0.2"} tp-inherents = { version = "2.0.2", path = "../../inherents" } tp-state-machine = { version = "0.8.2", path = "../../state-machine" } futures = { version = "0.3.1", features = ["thread-pool"] } futures-timer = "3.0.1" tetcore-std = { version = "2.0.2", path = "../../std" } tp-version = { version = "2.0.2", path = "../../version" } tp-runtime = { version = "2.0.2", path = "../../runtime" } tetcore-utils = { version = "2.0.2", path = "../../utils" } tp-trie = { version = "2.0.2", path = "../../trie" } tp-api = { version = "2.0.2", path = "../../api" } codec = { package = "tetsy-scale-codec", version = "2.0.1", features = ["derive"] } parking_lot = "0.11.1" serde = { version = "1.0", features = ["derive"] } prometheus-endpoint = { package = "prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.1"} wasm-timer = "0.2.5" [dev-dependencies] futures = "0.3.9" # tp-test-primitives = { version = "2.0.0", path = "../../test-primitives" } tp-test-primitives = { path = "../../test-primitives" } [features] default = []