Andrew Hobden 9 лет назад
Родитель
Сommit
e4bac6499b
2 измененных файлов с 8 добавлено и 1 удалено
  1. 2 1
      fuzz/.gitignore
  2. 6 0
      fuzz/Cargo.toml

+ 2 - 1
fuzz/.gitignore

@@ -1,3 +1,4 @@
 
 target
-libfuzzer
+corpus
+artifacts

+ 6 - 0
fuzz/Cargo.toml

@@ -3,9 +3,15 @@
 name = "url-fuzz"
 version = "0.0.1"
 authors = ["Automatically generated"]
+publish = false
+
+[package.metadata]
+cargo-fuzz = true
 
 [dependencies.url]
 path = ".."
+[dependencies.libfuzzer-sys]
+git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
 
 [[bin]]
 name = "parse"