TOML · 422 bytes Raw Blame History
1 [package]
2 name = "armfortas-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"
12 armfortas = { path = ".." }
13
14 # Prevent this from interfering with workspaces
15 [workspace]
16 members = ["."]
17
18 [[bin]]
19 name = "fuzz_lexer"
20 path = "fuzz_targets/fuzz_lexer.rs"
21 doc = false
22
23 [[bin]]
24 name = "fuzz_parser"
25 path = "fuzz_targets/fuzz_parser.rs"
26 doc = false