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