Maybe something like this to figure out what directories to delete:
# With dut find . -type f -name Cargo.toml -printf '%h\n' | sort -u | xargs -r -d '\n' -I{} dut -s {} | sort -h # With du find . -type f -name Cargo.toml -printf '%h\n' | sort -u | xargs -r du -sh | sort -h
ripgrep $ cargo clean Removed 3411 files, 1020.2MiB total websocat $ cargo clean Removed 1726 files, 820.7MiB total
Maybe something like this to figure out what directories to delete:
I found "websocat" and "ripgrep". Thankfully I got rid of everything else. That said, ripgrep itself is only 5.0M.