Skip to content

Commit

Permalink
build: update rust version (PROOF-918) (#41)
Browse files Browse the repository at this point in the history
update rust version
  • Loading branch information
jacobtrombetta authored Sep 30, 2024
1 parent 986e35e commit d71ebe7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
needs: [test-check-lint]
environment: deploy #!! DO NOT CHANGE THIS LINE !! #
container:
image: rust:1.80
image: rust:1.81
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</a>

<a href="https://www.rust-lang.org/">
<img alt="Rust" src="https://img.shields.io/badge/rust-1.80-blue">
<img alt="Rust" src="https://img.shields.io/badge/rust-1.81-blue">
</a>
</a>

Expand Down Expand Up @@ -117,7 +117,7 @@ To get a local copy up and running, consider the following steps.
<details open>
<summary>GPU backend prerequisites:</summary>

* [Rust 1.80](https://www.rust-lang.org/tools/install)
* [Rust 1.81](https://www.rust-lang.org/tools/install)
* `x86_64` Linux instance.
* NVIDIA driver version >= 560.35.03 (check the [compatibility list here](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html)).

Expand All @@ -128,7 +128,7 @@ To get a local copy up and running, consider the following steps.

You'll need the following requirements to run the environment:

* [Rust 1.80](https://www.rust-lang.org/tools/install)
* [Rust 1.81](https://www.rust-lang.org/tools/install)
* `x86_64` Linux instance.

</details>
Expand Down
2 changes: 1 addition & 1 deletion ci/run_docker_with_cpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

IMAGE=rust:1.80
IMAGE=rust:1.81

# If you don't have a GPU instance configured in your machine
docker run -v "$PWD":/src -w /src --privileged -it "$IMAGE"
2 changes: 1 addition & 1 deletion ci/run_docker_with_gpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

IMAGE=rust:1.80
IMAGE=rust:1.81

# If you have a GPU instance configured in your machine
docker run -v "$PWD":/src -w /src --gpus all --privileged -it "$IMAGE"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
//! <img alt="crates.io version" src="https://img.shields.io/crates/v/blitzar.svg">
//! </a>
//! <a href="https://www.rust-lang.org/">
//! <img alt="Rust" src="https://img.shields.io/badge/rust-1.80-blue">
//! <img alt="Rust" src="https://img.shields.io/badge/rust-1.81-blue">
//! </a>
//! <a href="https://developer.nvidia.com/cuda-downloads">
//! <img alt="CUDA" src="https://img.shields.io/badge/CUDA-12.6.1-green?style=flat&logo=nvidia">
Expand Down

0 comments on commit d71ebe7

Please sign in to comment.