bin/setup-rust

Wed, 22 May 2024 21:14:12 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 22 May 2024 21:14:12 -0500
changeset 1173
79c1553aa040
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

Change tab completion/snippet maps

#!/bin/bash
set -eu -o pipefail

if rustup update; then
  exit
fi

curl https://sh.rustup.rs -sSf | sh
source ~/.cargo/env
rustup component add rls rustfmt

mercurial