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>"]
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
2019-02-27 23:24:27 +00:00
|
|
|
|
2019-03-21 06:17:01 +00:00
|
|
|
[dev-dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
sloggers = { workspace = true }
|
|
|
|
genesis = { workspace = true }
|
2020-05-17 11:16:48 +00:00
|
|
|
matches = "0.1.8"
|
2023-09-22 04:30:56 +00:00
|
|
|
exit-future = { workspace = true }
|
|
|
|
slog-term = { workspace = true }
|
|
|
|
slog-async = { workspace = true }
|
2023-09-26 00:32:18 +00:00
|
|
|
eth2 = { workspace = true }
|
2019-03-21 06:17:01 +00:00
|
|
|
|
2019-02-27 23:24:27 +00:00
|
|
|
[dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
beacon_chain = { workspace = true }
|
|
|
|
store = { workspace = true }
|
|
|
|
lighthouse_network = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
slot_clock = { workspace = true }
|
|
|
|
slog = { workspace = true }
|
|
|
|
hex = { workspace = true }
|
|
|
|
ethereum_ssz = { workspace = true }
|
|
|
|
ssz_types = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
error-chain = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tokio-stream = { workspace = true }
|
|
|
|
smallvec = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
fnv = { workspace = true }
|
2021-02-10 23:29:49 +00:00
|
|
|
rlp = "0.5.0"
|
2023-09-22 04:30:56 +00:00
|
|
|
lazy_static = { workspace = true }
|
|
|
|
lighthouse_metrics = { workspace = true }
|
|
|
|
logging = { workspace = true }
|
|
|
|
task_executor = { workspace = true }
|
2024-01-31 15:48:01 +00:00
|
|
|
igd-next = "0.14.3"
|
2023-09-22 04:30:56 +00:00
|
|
|
itertools = { workspace = true }
|
|
|
|
num_cpus = { workspace = true }
|
|
|
|
lru_cache = { workspace = true }
|
2020-11-06 04:14:14 +00:00
|
|
|
if-addrs = "0.6.4"
|
2023-10-03 13:59:33 +00:00
|
|
|
lru = { workspace = true }
|
2023-09-22 04:30:56 +00:00
|
|
|
strum = { workspace = true }
|
|
|
|
tokio-util = { workspace = true }
|
|
|
|
derivative = { workspace = true }
|
|
|
|
delay_map = { workspace = true }
|
|
|
|
ethereum-types = { workspace = true }
|
|
|
|
operation_pool = { workspace = true }
|
|
|
|
execution_layer = { workspace = true }
|
|
|
|
beacon_processor = { workspace = true }
|
|
|
|
parking_lot = { workspace = true }
|
|
|
|
environment = { workspace = true }
|
2023-06-15 16:59:10 +00:00
|
|
|
|
|
|
|
[features]
|
2023-07-31 01:53:08 +00:00
|
|
|
# NOTE: This can be run via cargo build --bin lighthouse --features network/disable-backfill
|
|
|
|
disable-backfill = []
|
2023-06-15 16:59:10 +00:00
|
|
|
fork_from_env = ["beacon_chain/fork_from_env"]
|
2023-10-20 07:30:27 +00:00
|
|
|
portable = ["beacon_chain/portable"]
|