blob: ec484a4571693238053039e58c2804e4fd9b1d0f (
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
|