• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "shlex-fuzz"
3version = "0.0.0"
4authors = ["Automatically generated"]
5publish = false
6edition = "2018"
7
8[package.metadata]
9cargo-fuzz = true
10
11[dependencies]
12libfuzzer-sys = "0.4"
13
14[dependencies.shlex]
15path = ".."
16
17# Prevent this from interfering with workspaces
18[workspace]
19members = ["."]
20
21[[bin]]
22name = "fuzz_next"
23path = "fuzz_targets/fuzz_next.rs"
24test = false
25doc = false
26
27[[bin]]
28name = "fuzz_quote"
29path = "fuzz_targets/fuzz_quote.rs"
30test = false
31doc = false
32