Skip to content

Commit d899978

Browse files
authored
Merge pull request #19 from slyrz/master
Use new crate name in example
2 parents f3140cf + cb52cec commit d899978

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Then add a dependency on the fuzzer-sys crate and your own crate:
2323

2424
```toml
2525
[dependencies]
26-
fuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } # will eventually publish to crates.io
26+
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } # will eventually publish to crates.io
2727
your_crate = "*" # or something
2828
```
2929

@@ -33,7 +33,7 @@ and change the `src/main.rs` to fuzz your code:
3333
#![no_main]
3434

3535
#[macro_use]
36-
extern crate fuzzer_sys;
36+
extern crate libfuzzer_sys;
3737
extern crate your_crate;
3838

3939
fuzz_target!(|data: &[u8]| {

0 commit comments

Comments
 (0)