blob: 9d89f8a8e475665ba3e35aaead36e4aa71cbc8b8 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
# Install Rust and Cargo tools
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo '[ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env"' >> ~/.bashrc
source "$HOME/.cargo/env"
cargo install cargo-clone-crate cargo-edit cargo-info evcxr_jupyter bacon du-dust ripgrep
|