Codebase list feroxbuster / run/90b52aee-7fd2-476c-b515-8b44edae945f/upstream Makefile.toml
run/90b52aee-7fd2-476c-b515-8b44edae945f/upstream

Tree @run/90b52aee-7fd2-476c-b515-8b44edae945f/upstream (Download .tar.gz)

Makefile.toml @run/90b52aee-7fd2-476c-b515-8b44edae945f/upstreamraw · history · blame

# 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
"""