We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--all
If you want to sweep everything, you might want to run cargo clean instead of sweep.
cargo clean
sweep
But cargo-sweep can be used as a cargo clean that runs recursively in a folder full of projects, here's how you do it:
cargo-sweep
$ cargo sweep --recursive --time 0
I suggest we add a --all flag to remove the need of using --time 0:
--time 0
$ cargo sweep --recursive --all $ cargo sweep --all
The text was updated successfully, but these errors were encountered:
Hmm, this seems fine, I suppose. I would want to desugar it to --time 0 internally if we do support it.
Sorry, something went wrong.
Can I try taking this on?
@Max-Weissman sure thing, go for it :)
incremental
Successfully merging a pull request may close this issue.
If you want to sweep everything, you might want to run
cargo clean
instead ofsweep
.But
cargo-sweep
can be used as acargo clean
that runs recursively in a folder full of projects, here's how you do it:I suggest we add a
--all
flag to remove the need of using--time 0
:The text was updated successfully, but these errors were encountered: