remove cargo and other dependencies

This commit is contained in:
Alexander Navarro 2024-08-05 16:25:50 -04:00
parent f91266a578
commit 70c208c4a2
4 changed files with 3 additions and 34 deletions

View file

@ -40,18 +40,3 @@ echo -e "${C_DODGERBLUE1}Installing packages...${NO_FORMAT}"
sudo dnf install -y {{ range .packages.dnf.packages }} {{ . | quote }} {{- end -}}
{{ end }}
# ╭──────────────────────────────────────────────────────────╮
# │ Install Rust │
# ╰──────────────────────────────────────────────────────────╯
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain stable
. "$HOME/.cargo/env"
# ╭──────────────────────────────────────────────────────────╮
# │ Install Cargo Packages │
# ╰──────────────────────────────────────────────────────────╯
cargo install {{ range .packages.cargo }} {{ . | quote }} {{- end -}}