• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.0.52"
14syn = { path = "..", default-features = false, features = ["full", "parsing"] }
15
16[features]
17span-locations = ["proc-macro2/span-locations"]
18
19[[bin]]
20name = "create_token_buffer"
21path = "fuzz_targets/create_token_buffer.rs"
22test = false
23doc = false
24
25[[bin]]
26name = "parse_file"
27path = "fuzz_targets/parse_file.rs"
28test = false
29doc = false
30
31[workspace]
32