f51036cb2801141d152f7fba1b4741ca888f9ac4
[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 # Prevent this from interfering with workspaces
15 [workspace]
16 members = ["."]
17
18 [profile.release]
19 debug = true
20 debug-assertions = true
21 overflow-checks = true
22
23 [[bin]]
24 name = "fn_new"
25 path = "fuzz_targets/fn_new.rs"
26 test = false
27 doc = false
28
29 [[bin]]
30 name = "loc_set_ops"
31 path = "fuzz_targets/loc_set_ops.rs"
32 test = false
33 doc = false
34
35 [[bin]]
36 name = "loc_set_max_conflicts_with"
37 path = "fuzz_targets/loc_set_max_conflicts_with.rs"
38 test = false
39 doc = false