Fix validator manager compilation (#9187)

Currently, running `cargo check -p validator_manager` fails due to missing features. Although the `validator_manager` will almost always be called through the Lighthouse binary which will enable the required features, it is still good hygiene to ensure all workspace crates can compile standalone.


  Add the `lighthouse` feature to the `eth2` dependency in `validator_manager`


Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
Mac L
2026-04-28 12:59:07 +04:00
committed by GitHub
parent 280e2f1d53
commit e35a671303

View File

@@ -11,7 +11,7 @@ clap = { workspace = true }
clap_utils = { workspace = true }
educe = { workspace = true }
environment = { workspace = true }
eth2 = { workspace = true }
eth2 = { workspace = true, features = ["lighthouse"] }
eth2_network_config = { workspace = true }
eth2_wallet = { workspace = true }
ethereum_serde_utils = { workspace = true }