lighthouse/Cargo.toml

53 lines
1.2 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>"]
edition = "2018"
2018-07-06 07:54:07 +00:00
[dependencies]
2018-08-14 06:23:38 +00:00
blake2-rfc = "0.2.18"
2018-09-23 10:19:30 +00:00
bls-aggregates = { git = "https://github.com/sigp/signature-schemes" }
2018-07-28 00:02:45 +00:00
bytes = ""
crypto-mac = "^0.6.2"
clap = "2.32.0"
db = { path = "lighthouse/db" }
2018-09-22 02:11:10 +00:00
dirs = "1.0.3"
2018-07-28 00:02:45 +00:00
futures = "0.1.23"
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-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"
[workspace]
members = [
"beacon_chain/attestation_validation",
2018-12-13 01:27:45 +00:00
"beacon_chain/genesis",
"beacon_chain/naive_fork_choice",
"beacon_chain/spec",
"beacon_chain/types",
"beacon_chain/utils/bls",
"beacon_chain/utils/boolean-bitfield",
"beacon_chain/utils/hashing",
"beacon_chain/utils/honey-badger-split",
2018-12-30 02:03:20 +00:00
"beacon_chain/utils/slot_clock",
"beacon_chain/utils/ssz",
"beacon_chain/utils/vec_shuffle",
2018-10-19 16:11:45 +00:00
"beacon_chain/validator_induction",
"beacon_chain/validator_shuffling",
2018-12-30 02:03:20 +00:00
"lighthouse/beacon_chain",
"lighthouse/db",
]