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
|
|
|
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 = [
|
|
|
|
"beacon_chain/types",
|
2018-10-03 05:25:15 +00:00
|
|
|
"beacon_chain/transition",
|
2018-10-02 06:41:10 +00:00
|
|
|
"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-03 03:13:51 +00:00
|
|
|
"beacon_chain/utils/shuffling",
|
2018-10-02 06:41:10 +00:00
|
|
|
"beacon_chain/utils/ssz",
|
|
|
|
"beacon_chain/utils/ssz_helpers",
|
2018-10-02 07:35:03 +00:00
|
|
|
"beacon_chain/validation",
|
2018-10-02 06:41:10 +00:00
|
|
|
"lighthouse/db",
|
|
|
|
]
|