lighthouse/Cargo.toml

41 lines
1.4 KiB
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-07-29 00:11:37 +00:00
bigint = "4.2"
2018-07-28 00:02:45 +00:00
blake2 = "^0.7.1"
bls = { git = "https://github.com/sigp/bls" }
bytes = ""
crypto-mac = "^0.6.2"
clap = "2.32.0"
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
2018-07-06 07:54:07 +00:00
ethereum-types = ""
2018-07-28 00:02:45 +00:00
futures = "0.1.23"
libp2p-peerstore = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
libp2p-core = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
libp2p-mplex = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
libp2p-tcp-transport = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
libp2p-floodsub = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
libp2p-identify = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
libp2p-kad = { git = "https://github.com/tomaka/libp2p-rs", branch ="zksummit" }
# TODO: Bring pem module internal; too risky to have as external dep.
pem = "0.5.0"
2018-07-12 05:37:36 +00:00
rand = "0.3"
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-07-28 00:02:45 +00:00
tokio-io = "0.1"
tokio-core = "0.1"
2018-07-29 00:11:37 +00:00
tokio-timer = "0.1"
tokio-stdin = "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" }