Cargo.toml
1 [package] 2 name = "cab-fuzz" 3 authors.workspace = true 4 edition.workspace = true 5 license.workspace = true 6 publish.workspace = true 7 repository.workspace = true 8 version.workspace = true 9 10 [lints] 11 workspace = true 12 13 [package.metadata] 14 cargo-fuzz = true 15 16 [dependencies] 17 cab.path = "../" 18 19 ust.path = "../../ust" 20 21 libfuzzer-sys.workspace = true 22 rpds.workspace = true 23 24 [[bin]] 25 bench = false 26 doc = false 27 name = "tokenizer" 28 path = "./tokenizer.rs" 29 test = false 30 31 [[bin]] 32 bench = false 33 doc = false 34 name = "noder" 35 path = "./noder.rs" 36 test = false