Skip to content

Commit ff51ff7

Browse files
committed
Update to Rust 1.75
1 parent da24f22 commit ff51ff7

File tree

8 files changed

+12
-19
lines changed

8 files changed

+12
-19
lines changed

.github/workflows/container-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
env:
1717
ZEPHYR_VERSION: ${{ matrix.zephyr_version }}
18-
RUST_VERSION: 1.74.0
18+
RUST_VERSION: 1.75.0
1919

2020
permissions:
2121
contents: read

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: false
3636
runs-on: ubuntu-latest
3737
container:
38-
image: ghcr.io/${{ github.repository }}:zephyr-rust-${{ matrix.zephyr_version }}-1.74.0
38+
image: ghcr.io/${{ github.repository }}:zephyr-rust-${{ matrix.zephyr_version }}-1.75.0
3939
credentials:
4040
username: ${{ github.actor }}
4141
password: ${{ secrets.GITHUB_TOKEN }}

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Version Compatibility
1212
=====================
1313
**Zephyr**: v2.3, v2.7.3, v3.7. 3.0-3.6 not supported.
1414

15-
**Rust**: exactly 1.74.0
15+
**Rust**: exactly 1.75.0
1616

1717
Please use one of the above Zephyr releases before reporting issues! At the
1818
time you are reading this, Zephyr's main branch will likely not work, though it
@@ -79,13 +79,13 @@ included as a submodule of this project. In practice, using a different
7979
compiler version often fails to compile because of Rust internally making heavy
8080
use of unstable compiler features.
8181

82-
The current base is stable-1.74.0. Rustup is the default workflow, and the
82+
The current base is stable-1.75.0. Rustup is the default workflow, and the
8383
rust-toolchain file in this repo should cause rustup to automatically install
8484
and use the right version. If not, manually install:
8585

8686
.. code-block:: console
8787
88-
rustup toolchain install 1.74.0
88+
rustup toolchain install 1.75.0
8989
9090
If supplying your own rustc and cargo, make sure they are the version above.
9191
The build will fail if it detects a version mismatch.

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.74.0"
2+
channel = "1.75.0"
33
profile = "minimal"

rust/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
HOST=$(rustc -vV | grep host: | cut -d ' ' -f 2)
44
CARGO_ARGS="-v build --target=${RUST_TARGET_SPEC} --release"
5-
VERSION="1.74"
5+
VERSION="1.75"
66
CURRENT_RUSTC_VERSION=$(rustc -vV | grep ^release: | cut -d ' ' -f 2 | cut -d '.' -f '1,2')
77

88
# Assert cargo version matches the certified version

rust/libc

Submodule libc updated 133 files

rust/rust

Submodule rust updated 6226 files

rust/sysroot-stage1/Cargo.lock

+3-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)