[package] name = "syn-fuzz" version = "0.0.0" authors = ["David Tolnay "] edition = "2021" publish = false [package.metadata] cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" proc-macro2 = "1" syn = { path = "..", default-features = false, features = ["full", "parsing"] } [[bin]] name = "create_token_buffer" path = "fuzz_targets/create_token_buffer.rs" test = false doc = false [[bin]] name = "parse_file" path = "fuzz_targets/parse_file.rs" test = false doc = false [workspace]