Feature-gate all uses of arbitrary (#8867)

Feature gate all uses of `arbitrary` so it is not compiled during release builds.


Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
Mac L
2026-02-19 23:32:46 +04:00
committed by GitHub
parent 2d91009ab4
commit 9cb72100d4
9 changed files with 22 additions and 10 deletions

View File

@@ -7,10 +7,11 @@ edition = "2021"
[features]
default = []
arbitrary = ["dep:arbitrary"]
fake_crypto = []
[dependencies]
arbitrary = { workspace = true }
arbitrary = { workspace = true, optional = true }
c-kzg = { workspace = true }
educe = { workspace = true }
ethereum_hashing = { workspace = true }

View File

@@ -114,6 +114,7 @@ impl Debug for KzgCommitment {
}
}
#[cfg(feature = "arbitrary")]
impl arbitrary::Arbitrary<'_> for KzgCommitment {
fn arbitrary(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> {
let mut bytes = [0u8; BYTES_PER_COMMITMENT];

View File

@@ -110,6 +110,7 @@ impl Debug for KzgProof {
}
}
#[cfg(feature = "arbitrary")]
impl arbitrary::Arbitrary<'_> for KzgProof {
fn arbitrary(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> {
let mut bytes = [0u8; BYTES_PER_PROOF];