mutatis 0.5.2

`mutatis` is a library for writing custom, structure-aware test-case mutators for fuzzers in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `Mutate` implementations for `std` types.

use super::*;
use std::hash::Hash;

mod hash_map;
mod hash_set;
mod mutex;
mod net;
mod os_string;
mod path_buf;

pub use hash_map::*;
pub use hash_set::*;
pub use mutex::*;
pub use net::*;
pub use os_string::*;
pub use path_buf::*;