Cargo Features
mutatis has no features set by default.
[dependencies]
mutatis = { version = "0.3.0", features = ["alloc", "std", "log", "check", "derive"] }
- alloc std?
-
Implement
Mutator
s for types in Rust'salloc
crate and internally use features that thealloc
crate provides. - std check? = alloc
-
Implement
Mutator
s for types in Rust'sstd
crate and internally use features that thestd
crate provides. - log check?
-
Enable logging with the
log
crate.Enables log
- check = log, std
-
Enable the
mutatis::check
module, which provides a small framework for property-based testing built on top ofmutatis::Mutator
. - derive
-
Enable the
derive(Mutator)
macro for automatically derivingMutator
implementations for custom types.Enables mutatis-derive