Merge pull request #7248 from shua/rmdeps

rm unused dependencies
This commit is contained in:
Luke Boswell 2024-11-28 11:26:41 +11:00 committed by GitHub
commit b178b41c50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 1 additions and 24 deletions

View file

@ -4,7 +4,7 @@ To setup fuzzing you will need to install cargo-fuzz and run with rust nightly:
```sh
$ cargo install cargo-fuzz
$ cargo +nightly fuzz run -j<cores> <target> -- -dict=../parse/fuzz/dict.txt
$ cargo +nightly fuzz run -j<cores> <target> -- -dict=../dict.txt
```
The different targets can be found by running `cargo fuzz list`.