hydrabadger/Cargo.toml

53 lines
958 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
2018-07-11 13:06:20 -07:00
# [[bin]]
# name = "simulation"
# path = "src/bin/simulation.rs"
2018-07-02 19:36:12 -07:00
[[bin]]
2018-07-11 15:25:27 -07:00
name = "peer_node"
path = "src/bin/peer_node.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 = "*"
2018-07-08 16:23:10 -07:00
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 = "*"
2018-07-12 15:32:39 -07:00
parking_lot = "*"
clear_on_drop = "*"
2018-06-30 12:00:23 -07:00
[dependencies.hbbft]
version = "*"
git = "https://github.com/c0gent/hbbft"
2018-07-19 17:24:06 -07:00
branch = "master"
# branch = "c0gent-publickey-copy"
# path = "../hbbft"
2018-06-30 12:00:23 -07:00
features = ["serialization-protobuf"]