Codebase list feroxbuster / upstream/2.6.1 Makefile.toml
upstream/2.6.1

Tree @upstream/2.6.1 (Download .tar.gz)

Makefile.toml @upstream/2.6.1raw · 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", "leaky-bucket"]

[tasks.update]
command = "cargo"
args = ["update"]