hydrabadger/Cargo.toml

61 lines
1.1 KiB
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-12-07 08:44:48 -08:00
edition = "2018"
2018-07-02 19:36:12 -07:00
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
2018-07-28 15:43:13 -07:00
[features]
# Used for debugging memory usage.
exit_upon_epoch_1000 = []
# Disables SIMD in reed-solomon-erasure, which currently doesn't work on Android.
no-simd = ["hbbft/no-simd"]
2018-07-28 15:43:13 -07:00
2018-08-04 18:54:30 -07:00
2018-06-28 11:47:17 -07:00
[dependencies]
2018-10-12 15:04:42 -07:00
log = "0.4"
env_logger = "0.5"
2018-10-12 15:04:42 -07:00
clap = "2"
failure = "0.1"
crossbeam = "0.4"
crossbeam-channel = "0.2"
chrono = "0.4"
2018-07-02 19:36:12 -07:00
rust-crypto = "*"
num-traits = "*"
num-bigint = "*"
colored = "*"
itertools = "*"
pairing = "*"
2019-01-22 09:50:16 -08:00
rand = "0.6"
2018-08-03 06:35:15 -07:00
serde = "1"
2018-10-12 15:04:42 -07:00
serde_bytes = "~0.10.4"
2018-08-03 06:35:15 -07:00
serde_derive = "1"
2018-10-12 15:04:42 -07:00
signifix = "0.9"
2018-07-02 19:36:12 -07:00
futures = "0.1"
2018-11-25 10:44:51 -08:00
tokio = "~0.1.13"
2018-10-12 15:04:42 -07:00
tokio-codec = "~0.1.1"
tokio-io = "~0.1.9"
2018-10-04 07:08:29 -07:00
bincode = "1"
2018-10-12 15:04:42 -07:00
tokio-serde = "0.2"
tokio-serde-bincode = "0.1"
bytes = "~0.4.10"
uuid = { version = "0.6", features = ["v4", "serde"] }
2018-10-12 15:04:42 -07:00
byteorder = "1"
parking_lot = "0.6"
clear_on_drop = "0.2"
2018-06-30 12:00:23 -07:00
[dependencies.hbbft]
2019-07-24 18:27:53 -07:00
version = "0.1"
2018-07-28 15:43:13 -07:00
[profile.release]
debug = true
debug-assertions = true