We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3140cf commit cb52cecCopy full SHA for cb52cec
README.md
@@ -23,7 +23,7 @@ Then add a dependency on the fuzzer-sys crate and your own crate:
23
24
```toml
25
[dependencies]
26
-fuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } # will eventually publish to crates.io
+libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } # will eventually publish to crates.io
27
your_crate = "*" # or something
28
```
29
@@ -33,7 +33,7 @@ and change the `src/main.rs` to fuzz your code:
33
#![no_main]
34
35
#[macro_use]
36
-extern crate fuzzer_sys;
+extern crate libfuzzer_sys;
37
extern crate your_crate;
38
39
fuzz_target!(|data: &[u8]| {
0 commit comments