diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index b5bd110..22cd792 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] afl = "0.8.0" -crc64fast = { path = ".." } \ No newline at end of file +crc64fast-nvme = { path = ".." } diff --git a/fuzz/README.md b/fuzz/README.md index 8852e2d..fe9b982 100644 --- a/fuzz/README.md +++ b/fuzz/README.md @@ -1,6 +1,6 @@ # Fuzz Testing -This is the fuzz testing target for the `crc64fast` crate. +This is the fuzz testing target for the `crc64fast-nvme` crate. 1. Install `afl` via `cargo install afl` 2. Build the fuzz target via `cargo afl build` diff --git a/fuzz/src/main.rs b/fuzz/src/main.rs index a5cdcf5..f568477 100644 --- a/fuzz/src/main.rs +++ b/fuzz/src/main.rs @@ -1,6 +1,6 @@ #[macro_use] extern crate afl; -extern crate crc64fast; +extern crate crc64fast-nvme; use crc64fast::Digest;