lighthouse-pulse/Cargo.toml

37 lines
842 B
TOML
Raw Normal View History

2018-07-06 17:54:07 +10:00
[package]
2018-07-20 17:44:54 +10:00
name = "lighthouse"
2018-07-20 17:50:34 +10:00
version = "0.0.1"
2018-07-06 17:54:07 +10:00
authors = ["Paul Hauner <paul@paulhauner.com>"]
[dependencies]
2018-08-14 16:23:38 +10:00
# TODO: remove "blake2" in favor of "blake2-rfc"
2018-07-28 10:02:45 +10:00
blake2 = "^0.7.1"
2018-08-14 16:23:38 +10:00
blake2-rfc = "0.2.18"
2018-07-28 10:02:45 +10:00
bls = { git = "https://github.com/sigp/bls" }
2018-08-23 15:20:10 +10:00
boolean-bitfield = { path = "boolean-bitfield" }
2018-07-28 10:02:45 +10:00
bytes = ""
crypto-mac = "^0.6.2"
clap = "2.32.0"
2018-07-06 17:54:07 +10:00
ethereum-types = ""
2018-07-28 10:02:45 +10:00
futures = "0.1.23"
2018-08-07 10:08:39 +10:00
network-libp2p = { path = "network-libp2p" }
2018-07-12 15:37:36 +10:00
rand = "0.3"
2018-08-16 14:17:28 +10:00
rocksdb = "0.10.1"
2018-07-28 10:02:45 +10:00
rlp = { git = "https://github.com/paritytech/parity-common" }
2018-07-20 17:47:10 +10:00
slog = "^2.2.3"
slog-term = "^2.4.0"
slog-async = "^2.3.0"
2018-08-10 11:22:15 +10:00
ssz = { path = "ssz" }
2018-08-07 09:13:24 +10:00
tokio = "0.1"
2018-07-06 17:54:07 +10:00
[dependencies.pairing]
git = "https://github.com/mmaker/pairing"
branch = "feature/hashing"
[patch.crates-io]
ring = { git = "https://github.com/paritytech/ring" }
2018-08-15 13:41:16 +10:00
[[bin]]
path = "lighthouse/main.rs"
name = "lighthouse"