diff options
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 3c19003..c8f9850 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "micromark-fuzz" +name = "markdown-fuzz" version = "0.0.0" authors = ["Automatically generated"] publish = false @@ -11,7 +11,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -[dependencies.micromark] +[dependencies.markdown] path = ".." # Prevent this from interfering with workspaces @@ -19,7 +19,7 @@ path = ".." members = ["."] [[bin]] -name = "micromark" -path = "fuzz_targets/micromark.rs" +name = "markdown" +path = "fuzz_targets/markdown.rs" test = false doc = false |