jabyengine/podman/scripts/install_rust.sh

8 lines
229 B
Bash
Executable File

#!/bin/bash
echo "<<< Install Rust prerequisites >>>"
apt install -y curl
echo "<<< Install Rust >>>"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
cargo install cargo-edit --locked