Add testing feature to validator_client/http_api (#8909)

Create a `testing` feature which we can use to gate off `test_utils.rs` and its associated dependencies from the rest of the crate.


Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
Mac L
2026-03-02 09:19:41 +02:00
committed by GitHub
parent 6194dddc5b
commit f4b5b033a2
3 changed files with 13 additions and 5 deletions

View File

@@ -29,4 +29,4 @@ beacon_chain = { workspace = true }
http_api = { workspace = true }
regex = { workspace = true }
tempfile = { workspace = true }
validator_http_api = { workspace = true }
validator_http_api = { workspace = true, features = ["testing"] }