build: use rust compiler 1.77.1 for all builds

This commit is contained in:
thunderbiscuit
2024-04-19 14:39:33 -04:00
parent e14124b454
commit 4d737d3393
14 changed files with 25 additions and 25 deletions

View File

@@ -36,10 +36,10 @@ curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install java 17.0.2-tem
```
2. Install Rust (note that we are currently building using Rust 1.73.0):
2. Install Rust (note that we are currently building using Rust 1.77.1):
```shell
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup default 1.73.0
rustup default 1.77.1
```
3. Clone this repository.
```shell