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