Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
/target
fuzz/target
fuzz/artifacts
fuzz/corpus
fuzz/crashes
fuzz/coverage
.TODO

.env
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,15 @@ make lint # cargo clippy --all-targets --all-features -D warnings

### Fuzz (requires nightly + cargo-fuzz)
```bash
make fuzz # runs fuzz_bid and fuzz_envelope
make fuzz # runs fuzz_bid and fuzz_envelope (~30s each)
make fuzz-bid # bid harness only (~30s)
make fuzz-envelope # envelope harness only (~30s)
```
Fuzz setup:
```bash
rustup toolchain install nightly
cargo install cargo-fuzz
cd fuzz && cargo +nightly fuzz run fuzz_bid
```

### Examples & CLI
Expand Down
Loading
Loading