hydrabadger/Cargo.toml

52 lines
888 B
TOML
Raw Normal View History

2018-06-28 11:47:17 -07:00
[package]
2018-06-30 12:00:23 -07:00
name = "hydrabadger"
2018-06-28 11:47:17 -07:00
version = "0.1.0"
authors = ["c0gent <nsan1129@gmail.com>"]
2018-07-02 19:36:12 -07:00
autobins = false
[[bin]]
name = "simulation"
path = "src/bin/simulation.rs"
[[bin]]
name = "network"
path = "src/bin/network.rs"
2018-06-28 11:47:17 -07:00
[dependencies]
2018-06-30 12:00:23 -07:00
log = "*"
2018-07-02 19:36:12 -07:00
env_logger = "*"
2018-06-30 12:00:23 -07:00
clap = "*"
failure = "*"
crossbeam = "*"
crossbeam-channel = "*"
2018-07-02 19:36:12 -07:00
chrono = "*"
rust-crypto = "*"
num-traits = "*"
num-bigint = "*"
colored = "*"
itertools = "*"
pairing = "*"
rand = "0.4.2"
2018-07-02 19:36:12 -07:00
serde = "*"
# serde_bytes = "*"
2018-07-02 19:36:12 -07:00
serde_derive = "*"
signifix = "*"
futures = "0.1"
tokio = "0.1.7"
tokio-codec = "*"
tokio-io = "*"
bincode = "*"
tokio-serde = "*"
tokio-serde-bincode = "*"
2018-07-02 19:36:12 -07:00
bytes = "*"
uuid = { version = "0.6", features = ["v4", "serde"] }
byteorder = "*"
# tokio-serde-bincode = "*"
#
2018-06-30 12:00:23 -07:00
[dependencies.hbbft]
version = "*"
git = "https://github.com/c0gent/hbbft"
branch = "master"
2018-06-30 12:00:23 -07:00
features = ["serialization-protobuf"]