panorama/Justfile

26 lines
No EOL
390 B
Makefile

ct:
tokei
fmt:
cargo +nightly fmt --all
doc:
cargo doc --workspace --no-deps
test:
cargo test --all
watch:
cargo watch -c
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