2019-02-27 23:24:27 +00:00
|
|
|
[package]
|
|
|
|
name = "network"
|
2020-08-06 03:43:05 +00:00
|
|
|
version = "0.2.0"
|
2020-08-04 02:31:41 +00:00
|
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
2019-02-27 23:24:27 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
2019-03-21 06:17:01 +00:00
|
|
|
[dev-dependencies]
|
2020-05-17 11:16:48 +00:00
|
|
|
sloggers = "1.0.0"
|
2020-01-23 07:16:11 +00:00
|
|
|
genesis = { path = "../genesis" }
|
2020-05-10 09:56:31 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-05-17 11:16:48 +00:00
|
|
|
matches = "0.1.8"
|
|
|
|
tempfile = "3.1.0"
|
2020-06-04 11:48:05 +00:00
|
|
|
exit-future = "0.2.0"
|
2019-03-21 06:17:01 +00:00
|
|
|
|
2019-02-27 23:24:27 +00:00
|
|
|
[dependencies]
|
2019-03-18 05:16:54 +00:00
|
|
|
beacon_chain = { path = "../beacon_chain" }
|
2019-06-07 06:55:16 +00:00
|
|
|
store = { path = "../store" }
|
2020-06-19 04:13:23 +00:00
|
|
|
eth2_libp2p = { path = "../eth2_libp2p" }
|
2020-05-18 11:24:23 +00:00
|
|
|
hashset_delay = { path = "../../common/hashset_delay" }
|
|
|
|
rest_types = { path = "../../common/rest_types" }
|
|
|
|
types = { path = "../../consensus/types" }
|
2020-06-18 11:06:34 +00:00
|
|
|
state_processing = { path = "../../consensus/state_processing" }
|
2020-05-18 11:24:23 +00:00
|
|
|
slot_clock = { path = "../../common/slot_clock" }
|
2019-10-30 01:22:18 +00:00
|
|
|
slog = { version = "2.5.2", features = ["max_level_trace"] }
|
2020-05-17 11:16:48 +00:00
|
|
|
hex = "0.4.2"
|
2019-10-30 01:22:18 +00:00
|
|
|
eth2_ssz = "0.1.2"
|
2020-06-12 00:04:50 +00:00
|
|
|
eth2_ssz_types = { path = "../../consensus/ssz_types" }
|
2019-10-30 01:22:18 +00:00
|
|
|
tree_hash = "0.1.0"
|
2020-05-17 11:16:48 +00:00
|
|
|
futures = "0.3.5"
|
|
|
|
error-chain = "0.12.2"
|
2020-06-04 11:48:05 +00:00
|
|
|
tokio = { version = "0.2.21", features = ["full"] }
|
2020-07-06 01:55:56 +00:00
|
|
|
parking_lot = "0.11.0"
|
2020-07-07 06:57:27 +00:00
|
|
|
smallvec = "1.4.1"
|
2019-11-27 01:47:46 +00:00
|
|
|
# TODO: Remove rand crate for mainnet
|
2020-05-17 11:16:48 +00:00
|
|
|
rand = "0.7.3"
|
2019-11-27 01:47:46 +00:00
|
|
|
fnv = "1.0.6"
|
2020-05-17 11:16:48 +00:00
|
|
|
rlp = "0.4.5"
|
|
|
|
lazy_static = "1.4.0"
|
2020-05-18 11:24:23 +00:00
|
|
|
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
|
2020-06-05 04:55:03 +00:00
|
|
|
environment = { path = "../../lighthouse/environment" }
|
2020-06-09 23:55:44 +00:00
|
|
|
itertools = "0.9.0"
|