Skip to content

Commit

Permalink
Switch RISC-V MSRV to nightly release channel (esp-rs#725)
Browse files Browse the repository at this point in the history
* Use `nightly` release for MSRV check

* Un-pin the `log` package version
  • Loading branch information
jessebraham authored and playfulFence committed Sep 20, 2023
1 parent 0c10132 commit 6bedb39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ jobs:
- uses: dtolnay/rust-toolchain@v1
with:
target: riscv32imc-unknown-none-elf, riscv32imac-unknown-none-elf
toolchain: "1.65.0"
toolchain: "nightly-2022-09-16"
components: rust-src
- uses: Swatinem/rust-cache@v2

# Verify the MSRV for all RISC-V chips.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ There are a number of other crates within the [esp-rs organization] which can be

The **M**inimum **S**upported **R**ust **V**ersions are:

- `1.65.0` for RISC-V devices (**ESP32-C2**, **ESP32-C3**, **ESP32-C6**, **ESP32-H2**)
- `nightly-2022-09-16` for RISC-V devices (**ESP32-C2**, **ESP32-C3**, **ESP32-C6**, **ESP32-H2**)
- This corresponds to the date that the `1.65.0` release was branched from `master`
- `1.65.0` for Xtensa devices (**ESP32**, **ESP32-S2**, **ESP32-S3**)
- `1.67.0` for all `async` examples (`embassy_hello_world`, `embassy_wait`, etc.)

Expand Down
2 changes: 1 addition & 1 deletion esp-hal-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ embedded-hal-1 = { version = "=1.0.0-alpha.11", optional = true, package =
embedded-hal-nb = { version = "=1.0.0-alpha.3", optional = true }
esp-synopsys-usb-otg = { version = "0.3.2", optional = true, features = ["fs", "esp32sx"] }
fugit = "0.3.7"
log = "=0.4.18"
log = "0.4.20"
lock_api = { version = "0.4.10", optional = true }
nb = "1.1.0"
paste = "1.0.14"
Expand Down

0 comments on commit 6bedb39

Please sign in to comment.