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>"]
|
2018-12-19 15:38:59 +00:00
|
|
|
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"
|
2018-10-02 06:41:10 +00:00
|
|
|
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"
|
2018-10-01 07:07:34 +00:00
|
|
|
|
2018-10-02 06:41:10 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2018-12-05 05:08:03 +00:00
|
|
|
"beacon_chain/attestation_validation",
|
2018-10-20 05:34:08 +00:00
|
|
|
"beacon_chain/chain",
|
2018-10-29 19:29:15 +00:00
|
|
|
"beacon_chain/naive_fork_choice",
|
2018-12-12 05:08:01 +00:00
|
|
|
"beacon_chain/spec",
|
2018-10-02 06:41:10 +00:00
|
|
|
"beacon_chain/types",
|
|
|
|
"beacon_chain/utils/bls",
|
|
|
|
"beacon_chain/utils/boolean-bitfield",
|
|
|
|
"beacon_chain/utils/hashing",
|
2018-10-10 05:09:00 +00:00
|
|
|
"beacon_chain/utils/honey-badger-split",
|
2018-10-24 11:12:55 +00:00
|
|
|
"beacon_chain/utils/slot-clock",
|
2018-10-02 06:41:10 +00:00
|
|
|
"beacon_chain/utils/ssz",
|
2018-10-20 02:08:43 +00:00
|
|
|
"beacon_chain/utils/vec_shuffle",
|
2018-10-19 16:11:45 +00:00
|
|
|
"beacon_chain/validator_induction",
|
2018-10-20 02:08:43 +00:00
|
|
|
"beacon_chain/validator_shuffling",
|
2018-10-02 06:41:10 +00:00
|
|
|
"lighthouse/db",
|
|
|
|
]
|