mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-04 09:11:42 +00:00
* Fix stuck backfill and add regression test. * Remove unnecessary `yield_now` * Merge branch 'unstable' into fix-stuck-backfill * Revert previous change and add extra comment. * Merge branch 'unstable' into fix-stuck-backfill * Update tests to use configured event schedule instead of hard coded values. * Merge branch 'unstable' of https://github.com/sigp/lighthouse into fix-stuck-backfill
30 lines
830 B
TOML
30 lines
830 B
TOML
[package]
|
|
name = "beacon_processor"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
slog = { workspace = true }
|
|
itertools = { workspace = true }
|
|
logging = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
futures = { workspace = true }
|
|
fnv = { workspace = true }
|
|
strum = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
slot_clock = { workspace = true }
|
|
lighthouse_network = { workspace = true }
|
|
hex = { workspace = true }
|
|
derivative = { workspace = true }
|
|
types = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
lighthouse_metrics = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
num_cpus = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util"] }
|