21 lines
345 B
Bash
Executable file
21 lines
345 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source $(dirname "$0")/common.sh
|
|
|
|
command_exists cargo && \
|
|
cargo install \
|
|
bat \
|
|
cargo-edit \
|
|
cargo-expand \
|
|
cargo-tree \
|
|
cargo-update \
|
|
cargo-watch \
|
|
fd-find \
|
|
hexyl \
|
|
just \
|
|
ripgrep \
|
|
tectonic \
|
|
tokei \
|
|
topgrade \
|
|
;
|
|
|