mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 09:16:00 +00:00
We have a legacy `TestRandom` trait which generates random types for testing and fuzzing. This function overlaps with `arbitrary` which is used very commonly in the ecosystem. Remove `TestRandom` and generate random type instances using `Arbitrary`. Co-Authored-By: Mac L <mjladson@pm.me> Co-Authored-By: Michael Sproul <michael@sigmaprime.io>
26 lines
724 B
TOML
26 lines
724 B
TOML
[package]
|
|
name = "doppelganger_service"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
|
|
[dependencies]
|
|
beacon_node_fallback = { workspace = true }
|
|
bls = { workspace = true }
|
|
environment = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
logging = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
slot_clock = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
types = { workspace = true }
|
|
validator_store = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
arbitrary = { workspace = true }
|
|
futures = { workspace = true }
|
|
logging = { workspace = true }
|
|
types = { workspace = true, features = ["arbitrary"] }
|