[package]1authors = ["The Cranelift Project Developers"]2name = "cranelift-control"3version = "0.125.0"4description = "White-box fuzz testing framework"5license = "Apache-2.0 WITH LLVM-exception"6repository = "https://github.com/bytecodealliance/wasmtime"7readme = "README.md"8keywords = ["fuzz", "test"]9edition.workspace = true10rust-version.workspace = true1112[dependencies]13arbitrary = { workspace = true, optional = true }1415[features]16default = ["fuzz"]1718# Enable fuzzing support with `arbitrary`. Does not work on `no_std` targets.19fuzz = ["dep:arbitrary"]2021# Turn on chaos mode.22# Without this feature, a zero-sized dummy will be compiled23# for the control plane.24chaos = ["fuzz"]252627