Skip to content

Commit

Permalink
Bump MSRV to 1.67.0 and update xtask (#164)
Browse files Browse the repository at this point in the history
* Bump MSRV to 1.67.0

* Update `xtask` dependencies to get latest `svd2rust`/`svdtools`
  • Loading branch information
jessebraham authored Oct 18, 2023
1 parent 414c3b9 commit 9f8903e
Show file tree
Hide file tree
Showing 15 changed files with 111 additions and 121 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MSRV: "1.65.0"
MSRV: "1.67.0"

# Cancel any currently running workflows from the same PR, branch, or
# tag when a new workflow is triggered.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ Prior to opening a pull request, we ask that you please:

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

- `1.65.0` for RISC-V devices (**ESP32-C2/C3/C6**, **ESP32-H2**, **ESP32-S2/S3 RISC-V ULP coprocessors**)
- `1.65.0` for Xtensa devices (**ESP32**, **ESP32-S2/S3**, **ESP8266**)
- `1.67.0` for RISC-V devices (**ESP32-C2/C3/C6**, **ESP32-H2**, **ESP32-S2/S3 RISC-V ULP coprocessors**)
- `1.67.0` for Xtensa devices (**ESP32**, **ESP32-S2/S3**, **ESP8266**)

Note that targeting the Xtensa ISA currently requires the use of the [esp-rs/rust] compiler fork, which can be installed using [esp-rs/espup].

Expand Down
2 changes: 1 addition & 1 deletion esp32/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32"
version = "0.26.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32c2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32c2"
version = "0.14.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-C2"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32c3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32c3"
version = "0.17.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-C3"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32c6-lp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32c6-lp"
version = "0.1.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-C6's LP coprocessor"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32c6/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32c6"
version = "0.7.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-C6"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32h2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32h2"
version = "0.3.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-H2"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32s2-ulp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32s2-ulp"
version = "0.1.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-S2's RISC-V ULP coprocessor"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32s2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32s2"
version = "0.17.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-S2"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32s3-ulp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32s3-ulp"
version = "0.1.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-S3's RISC-V ULP coprocessor"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp32s3"
version = "0.21.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP32-S3"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp8266/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "esp8266"
version = "0.7.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.67"
description = "Peripheral access crate for the ESP8266"
repository = "https://github.com/esp-rs/esp-pacs"
license = "MIT OR Apache-2.0"
Expand Down
Loading

0 comments on commit 9f8903e

Please sign in to comment.