test_fuzz/
lib.rs

1pub use runtime;
2pub use test_fuzz_macro::{test_fuzz, test_fuzz_impl};
3
4// smoelius: Re-export afl so that test-fuzz clients do not need to add it to their Cargo.toml
5// files.
6#[cfg(feature = "__persistent")]
7pub use afl;
8
9// smoelius: Do the same for `cast_checks`.
10#[cfg(feature = "cast_checks")]
11pub use cast_checks;
12
13// smoelius: Unfortunately, the same trick doesn't work for serde.
14// https://github.com/serde-rs/serde/issues/1465
15
16pub use internal::serde_format;
17
18mod utils;
19pub use utils::{
20    deserialize_ref, deserialize_ref_mut, serde_ref, serde_ref_mut, serialize_ref,
21    serialize_ref_mut,
22};
23
24mod convert;
25pub use convert::{FromRef, Into};