1[package] 2name = "syn-fuzz" 3version = "0.0.0" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5edition = "2021" 6publish = false 7 8[package.metadata] 9cargo-fuzz = true 10 11[dependencies] 12libfuzzer-sys = "0.4" 13proc-macro2 = "1" 14syn = { path = "..", default-features = false, features = ["full", "parsing"] } 15 16[[bin]] 17name = "create_token_buffer" 18path = "fuzz_targets/create_token_buffer.rs" 19test = false 20doc = false 21 22[[bin]] 23name = "parse_file" 24path = "fuzz_targets/parse_file.rs" 25test = false 26doc = false 27 28[workspace] 29