Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rust-fuzz/book
📖 Guides and tutorials on how to fuzz Rust code
https://github.com/rust-fuzz/book
documentation fuzz-testing fuzzing rust
Last synced: about 2 months ago
JSON representation
📖 Guides and tutorials on how to fuzz Rust code
- Host: GitHub
- URL: https://github.com/rust-fuzz/book
- Owner: rust-fuzz
- Created: 2017-03-07T04:01:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-13T19:06:21.000Z (about 1 year ago)
- Last Synced: 2024-05-22T08:05:41.429Z (9 months ago)
- Topics: documentation, fuzz-testing, fuzzing, rust
- Language: Shell
- Homepage: https://rust-fuzz.github.io/book/
- Size: 6.02 MB
- Stars: 116
- Watchers: 9
- Forks: 18
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Rust Fuzzing Book
[**Read the Rust Fuzzing Book online here!**](https://rust-fuzz.github.io/book/)
## Building
First, install [`mdbook`](https://github.com/rust-lang/mdBook):
```sh
$ cargo install mdbook
```To build the book, run:
```sh
$ mdbook build
```To serve the book locally, re-building on any change, run:
```sh
$ mdbook serve
```