clean up warnings
[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 [[bin]]
15 name = "fn_new"
16 path = "fuzz_targets/fn_new.rs"
17 test = false
18 doc = false
19
20 [[bin]]
21 name = "loc_set_ops"
22 path = "fuzz_targets/loc_set_ops.rs"
23 test = false
24 doc = false
25
26 [[bin]]
27 name = "loc_set_max_conflicts_with"
28 path = "fuzz_targets/loc_set_max_conflicts_with.rs"
29 test = false
30 doc = false