mirror of
https://github.com/epi052/feroxbuster.git
synced 2026-04-19 06:31:13 -03:00
26 lines
438 B
TOML
26 lines
438 B
TOML
# composite tasks
|
|
[tasks.upgrade]
|
|
dependencies = ["upgrade-deps", "update"]
|
|
|
|
# cleaning
|
|
[tasks.clean-state]
|
|
script = """
|
|
rm ferox-*.state
|
|
"""
|
|
|
|
# dependency management
|
|
[tasks.upgrade-deps]
|
|
command = "cargo"
|
|
args = ["upgrade", "--exclude", "indicatif", "leaky-bucket"]
|
|
|
|
[tasks.update]
|
|
command = "cargo"
|
|
args = ["update"]
|
|
|
|
# clippy / lint
|
|
[tasks.clippy]
|
|
clear = true
|
|
script = """
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
"""
|