lighthouse/Cargo.toml

37 lines
842 B
TOML
Raw Normal View History

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