blob: b447424dedf6350b5dee07346e106bba3e26a9dc [file] [edit]
#![feature(cfg_sanitize)]
mod crash_handler;
pub mod domains;
pub mod internal;
pub mod worker;
pub use fuzztest_macro::fuzztest;
pub use serde;
pub mod options;
pub use options::get_fuzztest_options;
pub use options::FuzzTestOptions;
// Re-export helper crates used in macro expansion to decouple downstream Cargo.toml files.
pub mod reexports {
pub use anyhow;
pub use inventory;
pub use rand;
}