Skip to content

Commit 6ada2f3

Browse files
committed
Upgrade to Rust 1.95, that matches our LLVM 22 dependency
1 parent 28422cc commit 6ada2f3

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: matrix.language == 'rust'
3131
uses: dtolnay/rust-toolchain@master
3232
with:
33-
toolchain: 1.94.0
33+
toolchain: 1.95.0
3434

3535
- name: Initialize CodeQL
3636
uses: github/codeql-action/init@v4

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Rust
2121
uses: dtolnay/rust-toolchain@master
2222
with:
23-
toolchain: 1.94.0
23+
toolchain: 1.95.0
2424
components: rustfmt
2525

2626
- name: Check C++ formatting

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Rust
2929
uses: dtolnay/rust-toolchain@master
3030
with:
31-
toolchain: 1.94.0
31+
toolchain: 1.95.0
3232
components: rustfmt
3333

3434
- name: Setup Python

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ if (NOT RUSTC_LLVM_VERSION STREQUAL LLVM_PACKAGE_VERSION)
6363
message(WARNING "The LLVM versions used by rustc and clang are different!")
6464
endif()
6565

66-
set(RUST_STABLE_VERSION "1.94.0")
66+
set(RUST_STABLE_VERSION "1.95.0")
6767

6868
function(write_rust_toolchain DIR)
6969
set(_content "[toolchain]\nchannel = \"${RUST_STABLE_VERSION}\"\n")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ On Ubuntu, install the required dependencies with:
3737

3838
```bash
3939
sudo apt install libclang-22-dev clang++-22 ninja-build cmake python3-tomli
40-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.94.0
40+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.95.0
4141
```
4242

4343

libcc2rs/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.94.0"
2+
channel = "1.95.0"

rules/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.94.0"
2+
channel = "1.95.0"

0 commit comments

Comments
 (0)