[package] authors = [ "MaidSafe Developers " ] description = "Implementation of Protocol for Asynchronous, Reliable, Secure and Efficient Consensus" documentation = "https://docs.rs/parsec" edition = "2018" exclude = [ "input_graphs/*" ] homepage = "https://maidsafe.net" license = "GPL-3.0" name = "parsec" readme = "README.md" repository = "https://github.com/maidsafe/parsec" version = "0.7.3" [dependencies] bincode = "1.2.1" fnv = "1.0.6" itertools = "~0.8.0" lazy_static = "1.4" log = "~0.3.8" rand = "~0.7.3" rand_core = "~0.5.1" serde = "1.0.66" serde_derive = "1.0.66" tiny-keccak = "1.5.0" unwrap = "1.2.1" threshold_crypto = "~0.4.0" failure = "~0.1.5" [dependencies.pom] version = "1.1.0" optional = true [dependencies.proptest] version = "~0.8.6" optional = true [dependencies.rand_xorshift] version = "~0.2.0" optional = true [dev-dependencies] clap = "2.32.0" criterion = "~0.2.5" env_logger = "~0.7.1" pom = "1.1.0" rand_xorshift = "~0.2.0" walkdir = "2.2.7" [features] dump-graphs = [ ] mock = [ ] testing = [ "proptest", "mock", "pom", "rand_xorshift" ] malice-detection = [ ] [workspace] members = [ "dot_gen" ] [lib] bench = false [[example]] name = "basic" path = "examples/basic.rs" required-features = [ "mock" ] [[bench]] name = "bench" harness = false