mirror of
https://github.com/epi052/feroxbuster.git
synced 2026-04-19 06:31:13 -03:00
33 lines
534 B
TOML
33 lines
534 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"]
|
|
|
|
[tasks.update]
|
|
command = "cargo"
|
|
args = ["update"]
|
|
|
|
# clippy / lint
|
|
[tasks.clippy]
|
|
clear = true
|
|
script = """
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
"""
|
|
|
|
# tests
|
|
[tasks.test]
|
|
clear = true
|
|
script = """
|
|
cargo nextest run --all-features --all-targets --retries 10
|
|
"""
|