Ver Fonte

Auto merge of #288 - christophebiocca:patch-1, r=Manishearth

fuzzer_sys -> libfuzzer_sys

Running the fuzzing code fails right now. Changing the crate declaration to `extern crate libfuzzer_sys` makes it work properly.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-url/288)
<!-- Reviewable:end -->
bors-servo há 9 anos atrás
pai
commit
9e19259784
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      fuzz/fuzzers/parse.rs

+ 1 - 1
fuzz/fuzzers/parse.rs

@@ -1,6 +1,6 @@
 #![no_main]
 
-extern crate fuzzer_sys;
+extern crate libfuzzer_sys;
 
 extern crate url;
 use std::slice;