Skip to content

Commit 1a31f58

Browse files
committed
Increase MSRV to 1.93
1 parent b567a49 commit 1a31f58

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
uses: taiki-e/install-action@just
4242
- name: Install Rust
4343
run: |
44-
rustup install 1.83
45-
rustup target add ${{ matrix.target }} --toolchain=1.83
44+
rustup install 1.93
45+
rustup target add ${{ matrix.target }} --toolchain=1.93
4646
- name: Run just
4747
run: |
48-
RUSTUP_TOOLCHAIN=1.83 just ${{ matrix.action }}-tier2 ${{ matrix.target }}
48+
RUSTUP_TOOLCHAIN=1.93 just ${{ matrix.action }}-tier2 ${{ matrix.target }}
4949
5050
# Build the workspace for a target architecture using latest stable
5151
build-tier2-stable:
@@ -138,15 +138,15 @@ jobs:
138138
strategy:
139139
matrix:
140140
rust:
141-
- 1.83
141+
- 1.93
142142
- stable
143143
- ""
144144
action:
145145
- build
146146
- clippy
147147
- doc
148148
exclude:
149-
- rust: 1.83
149+
- rust: 1.93
150150
action: clippy
151151
- rust: stable
152152
action: clippy

aarch32-cpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ name = "aarch32-cpu"
2121
readme = "README.md"
2222
repository = "https://github.com/rust-embedded/aarch32.git"
2323
homepage = "https://github.com/rust-embedded/aarch32"
24-
rust-version = "1.83"
24+
rust-version = "1.93"
2525
version = "0.3.0"
2626

2727
[dependencies]

aarch32-cpu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you need a driver for the Arm Generic Interrupt Controller, see
2929

3030
## Minimum Supported Rust Version (MSRV)
3131

32-
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
32+
This crate is guaranteed to compile on stable Rust 1.93.0 and up, as recorded
3333
by the `package.rust-version` property in `Cargo.toml`.
3434

3535
Increasing the MSRV is not considered a breaking change and may occur in a

aarch32-rt-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "aarch32-rt-macros"
1111
readme = "README.md"
1212
repository = "https://github.com/rust-embedded/aarch32.git"
1313
homepage = "https://github.com/rust-embedded/aarch32"
14-
rust-version = "1.83"
14+
rust-version = "1.93"
1515
version = "0.3.0"
1616

1717
[lib]

aarch32-rt-macros/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This crate contains proc-macros that are re-exported through the `aarch32-rt` cr
66

77
## Minimum Supported Rust Version (MSRV)
88

9-
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
9+
This crate is guaranteed to compile on stable Rust 1.93.0 and up, as recorded
1010
by the `package.rust-version` property in `Cargo.toml`.
1111

1212
Increasing the MSRV is not considered a breaking change and may occur in a

aarch32-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license = "MIT OR Apache-2.0"
2020
name = "aarch32-rt"
2121
readme = "README.md"
2222
repository = "https://github.com/rust-embedded/aarch32.git"
23-
rust-version = "1.83"
23+
rust-version = "1.93"
2424
version = "0.3.0"
2525

2626
[dependencies]

aarch32-rt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ uses different instructions for reading/writing system registers.
2222

2323
## Minimum Supported Rust Version (MSRV)
2424

25-
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
25+
This crate is guaranteed to compile on stable Rust 1.93.0 and up, as recorded
2626
by the `package.rust-version` property in `Cargo.toml`.
2727

2828
Increasing the MSRV is not considered a breaking change and may occur in a

arm-targets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "arm-targets"
1111
readme = "README.md"
1212
repository = "https://github.com/rust-embedded/aarch32.git"
1313
homepage = "https://github.com/rust-embedded/aarch32"
14-
rust-version = "1.83"
14+
rust-version = "1.93"
1515
version = "0.4.2"
1616

1717
[dependencies]

arm-targets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This allows you to write Rust code in your firmware like:
3535

3636
## Minimum Supported Rust Version (MSRV)
3737

38-
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
38+
This crate is guaranteed to compile on stable Rust 1.93.0 and up, as recorded
3939
by the `package.rust-version` property in `Cargo.toml`.
4040

4141
Increasing the MSRV is not considered a breaking change and may occur in a

0 commit comments

Comments
 (0)