panorama/Justfile
2021-09-07 06:30:11 -05:00

26 lines
408 B
Makefile

ct:
tokei
fmt:
cargo +nightly fmt --all
doc:
cargo doc --workspace --no-deps
test:
cargo test --all
watch:
cargo watch -c -x 'check --all'
afl-imap:
#!/bin/bash
cd imap/imap-parsing-fuzz-target
pwd
cargo afl build
cargo afl fuzz -i in -o out target/debug/imap-parsing-fuzz-target
fuzz-imap:
#!/bin/bash
cd imap
cargo +nightly fuzz run parse_response