We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfc480b commit 53167c1Copy full SHA for 53167c1
fuzz/Cargo.toml
@@ -11,7 +11,7 @@ cargo-fuzz = true
11
[dependencies]
12
afl = { version = "0.13", optional = true }
13
honggfuzz = { version = "0.5", optional = true }
14
-libfuzzer-sys = { version = "0.4", optional = true }
+libfuzzer-sys = { version = "0.4.7", optional = true }
15
proc-macro2 = { path = "..", default-features = false }
16
17
[features]
fuzz/fuzz_targets/parse_token_stream.rs
@@ -43,7 +43,7 @@ fn main() {
43
}
44
45
#[cfg(feature = "libfuzzer")]
46
-libfuzzer_sys::fuzz_target!(|bytes: &[u8]| { do_fuzz(bytes) });
+libfuzzer_sys::fuzz_target!(|bytes: &[u8]| do_fuzz(bytes));
47
48
#[cfg(feature = "afl")]
49
fn main() {
0 commit comments