Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 296 Bytes

cargo_installs.md

File metadata and controls

13 lines (10 loc) · 296 Bytes

Cargo install stuff

Cargo install commands

list cargo installed packages:

cargo install --list | rg '^[a-z0-9_-]+ v[0-9.]+:$' | cut -f1 -d' '

update cargo packages automatically:

cargo install $(cargo install --list | rg '^[a-z0-9_-]+ v[0-9.]+:$' | cut -f1 -d' ')