mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 04:37:13 +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>
23 lines
623 B
TOML
23 lines
623 B
TOML
[package]
|
|
name = "builder_client"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = ["Sean Anderson <sean@sigmaprime.io>"]
|
|
|
|
[dependencies]
|
|
bls = { workspace = true }
|
|
context_deserialize = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
lighthouse_version = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
arbitrary = { workspace = true }
|
|
mockito = { workspace = true }
|
|
tokio = { workspace = true }
|
|
types = { workspace = true, features = ["arbitrary"] }
|