merge fuzzer package into workspace
[bigint-presentation-code.git] / register_allocator / fuzz / Cargo.toml
1 [package]
2 name = "bigint-presentation-code-register-allocator-fuzz"
3 version = "0.0.0"
4 publish = false
5 edition = "2021"
6
7 [package.metadata]
8 cargo-fuzz = true
9
10 [dependencies]
11 libfuzzer-sys = "0.4.5"
12 bigint-presentation-code-register-allocator = { path = "../", features = ["fuzzing"] }
13
14 [profile.release]
15 debug = true
16 debug-assertions = true
17 overflow-checks = true
18
19 [[bin]]
20 name = "fn_new"
21 path = "fuzz_targets/fn_new.rs"
22 test = false
23 doc = false
24
25 [[bin]]
26 name = "loc_set_ops"
27 path = "fuzz_targets/loc_set_ops.rs"
28 test = false
29 doc = false
30
31 [[bin]]
32 name = "loc_set_max_conflicts_with"
33 path = "fuzz_targets/loc_set_max_conflicts_with.rs"
34 test = false
35 doc = false