Skip to content

Commit 4132534

Browse files
committed
Bump up minimum Rust version to 1.79
1 parent 4501242 commit 4132534

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/e310x-hal.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
build-riscv:
1212
strategy:
1313
matrix:
14-
# All generated code should be running on stable now, MRSV is 1.76.0
15-
toolchain: [ stable, nightly, 1.76.0 ]
14+
# All generated code should be running on stable now, MRSV is 1.79.0
15+
toolchain: [ stable, nightly, 1.79.0 ]
1616
include:
1717
# Nightly is only for reference and allowed to fail
1818
- toolchain: nightly
@@ -47,4 +47,4 @@ jobs:
4747
run: cargo test --package e310x-hal
4848
- name: Build (all features)
4949
run: cargo test --package e310x-hal --all-features
50-
50+

.github/workflows/hifive1.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
build-riscv:
1212
strategy:
1313
matrix:
14-
# All generated code should be running on stable now, MRSV is 1.76.0
15-
toolchain: [nightly, stable, 1.76.0]
14+
# All generated code should be running on stable now, MRSV is 1.79.0
15+
toolchain: [nightly, stable, 1.79.0]
1616
board: [hifive1, hifive1-revb, redv, lofive, lofive-r1]
1717
include:
1818
# Nightly is only for reference and allowed to fail
@@ -49,4 +49,4 @@ jobs:
4949
run: cargo test --package hifive1 --features board-${{ matrix.board }}
5050
- name: Build (vectored)
5151
run: cargo test --package hifive1 --features board-${{ matrix.board }},v-trap
52-
52+

e310x-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "HAL for the E310x family of microcontrollers."
88
keywords = ["riscv", "e310", "hal"]
99
license = "ISC"
1010
edition = "2021"
11-
rust-version = "1.76"
11+
rust-version = "1.79"
1212

1313
[dependencies]
1414
embedded-hal = "1.0.0"

e310x-hal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is developed and maintained by the [RISC-V team][team].
1212

1313
## Minimum Supported Rust Version (MSRV)
1414

15-
This crate is guaranteed to compile on stable Rust 1.72.0 and up. It *might*
15+
This crate is guaranteed to compile on stable Rust 1.79.0 and up. It *might*
1616
compile with older versions but that may change in any new patch release.
1717

1818
## License

hifive1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Board support crate for HiFive1 and LoFive boards"
88
keywords = ["riscv", "register", "peripheral"]
99
license = "ISC"
1010
edition = "2021"
11-
rust-version = "1.76"
11+
rust-version = "1.79"
1212

1313
[dependencies]
1414
critical-section = { workspace = true }

hifive1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
## Minimum Supported Rust Version (MSRV)
2020

21-
This crate is guaranteed to compile on stable Rust 1.72.0 and up. It *might*
21+
This crate is guaranteed to compile on stable Rust 1.79.0 and up. It *might*
2222
compile with older versions but that may change in any new patch release.
2323

2424
## License

0 commit comments

Comments
 (0)