mirror of
https://github.com/epi052/feroxbuster.git
synced 2026-04-27 23:11:12 -03:00
* bumped version to 2.11.0 * updated deps * new cli options * added --request-file, --protocol, --scan-dir-listings * added tests / clippy * removed errant module definition * implemented visible bar limiter * many fixes; feature implemented i believe * added banner test for limit-bars * beginning troubleshooting of recursion panic * put a bandaid on trace-level logging bug * clippy
42 lines
638 B
TOML
42 lines
638 B
TOML
# composite tasks
|
|
[tasks.upgrade]
|
|
dependencies = ["upgrade-deps", "update"]
|
|
|
|
[tasks.check]
|
|
dependencies = ["fmt", "clippy", "test"]
|
|
|
|
# cleaning
|
|
[tasks.clean-state]
|
|
script = """
|
|
rm ferox-*.state
|
|
"""
|
|
|
|
# dependency management
|
|
[tasks.upgrade-deps]
|
|
command = "cargo"
|
|
args = ["upgrade", "--exclude", "self_update"]
|
|
|
|
[tasks.update]
|
|
command = "cargo"
|
|
args = ["update"]
|
|
|
|
# clippy / lint
|
|
[tasks.clippy]
|
|
clear = true
|
|
script = """
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
"""
|
|
|
|
[tasks.fmt]
|
|
clear = true
|
|
script = """
|
|
cargo fmt --all
|
|
"""
|
|
|
|
# tests
|
|
[tasks.test]
|
|
clear = true
|
|
script = """
|
|
cargo nextest run --all-features --all-targets
|
|
"""
|