-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
59 lines (52 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
authors = ["MaidSafe Developers <[email protected]>"]
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.5.0"
[dependencies]
fnv = "~1.0.6"
itertools = "~0.8.0"
lazy_static = "~1.2.0"
log = "~0.3.8"
maidsafe_utilities = "~0.18.0"
pom = { version = "~1.1.0", optional = true }
proptest = { version = "~0.8.6", optional = true }
rand = "~0.4.2"
rand_core = "0.2.1"
safe_crypto = { version = "~0.7.0", optional = true }
serde = "~1.0.66"
serde_derive = "~1.0.66"
tiny-keccak = "~1.4.2"
unwrap = "~1.2.1"
threshold_crypto = "~0.3.1"
failure = "~0.1.5"
[dev-dependencies]
clap = "~2.32.0"
criterion = "~0.2.5"
pom = "~1.1.0"
safe_crypto = "~0.7.0"
walkdir = "~2.2.7"
[features]
dump-graphs = []
mock = ["safe_crypto/mock"]
testing = ["maidsafe_utilities/testing", "proptest", "mock", "pom"]
malice-detection = []
[workspace]
members = ["dot_gen"]
[lib]
# https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
bench = false
[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["mock"]
[[bench]]
name = "bench"
harness = false