Cargo.toml (406B)
1 [package] 2 name = "mozprofile-fuzz" 3 version = "0.0.0" 4 authors = ["Automatically generated"] 5 publish = false 6 edition = "2018" 7 8 [package.metadata] 9 cargo-fuzz = true 10 11 [dependencies] 12 libfuzzer-sys = "0.4" 13 14 [dependencies.mozprofile] 15 path = ".." 16 17 # Prevent this from interfering with workspaces 18 [workspace] 19 members = ["."] 20 21 [[bin]] 22 name = "prefreader" 23 path = "fuzz_targets/prefreader.rs" 24 test = false 25 doc = false