Skip to content

Commit 0dfeff0

Browse files
committed
Bump the MSRV to 1.63
1 parent 3a6abd3 commit 0dfeff0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/raspberry_rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cargo-command: check
3333
args: --lib --no-default-features --features=raspberry
3434
- name: Check MSRV
35-
toolchain: "1.62"
35+
toolchain: "1.63"
3636
cargo-command: check
3737
args: --features=raspberry
3838
- name: Unit Test

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- uses: actions-rs/toolchain@v1
6666
with:
6767
profile: minimal
68-
toolchain: "1.62"
68+
toolchain: "1.63"
6969
override: true
7070
- uses: Swatinem/rust-cache@v1
7171
- uses: actions-rs/cargo@v1

cargo-espflash/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Jesse Braham <[email protected]>",
77
]
88
edition = "2021"
9-
rust-version = "1.62"
9+
rust-version = "1.63"
1010
description = "Cargo subcommand for flashing Espressif devices over serial"
1111
repository = "https://github.com/esp-rs/espflash"
1212
license = "MIT OR Apache-2.0"

cargo-espflash/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# cargo-espflash
22

33
[![Crates.io](https://img.shields.io/crates/v/cargo-espflash?labelColor=1C2C2E&color=C96329&logo=Rust&style=flat-square)](https://crates.io/crates/cargo-espflash)
4-
![MSRV](https://img.shields.io/badge/MSRV-1.62-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
4+
![MSRV](https://img.shields.io/badge/MSRV-1.63-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
55
![Crates.io](https://img.shields.io/crates/l/cargo-espflash?labelColor=1C2C2E&style=flat-square)
66

77
Cross-compiler and Cargo extension for flashing Espressif devices over serial.
@@ -10,7 +10,7 @@ Supports the **ESP32**, **ESP32-C2/C3**, **ESP32-S2/S3**, and **ESP8266**.
1010

1111
## Installation
1212

13-
If you are installing `cargo-espflash` from source (ie. using `cargo install`) then you must have `rustc>=1.62.0` installed on your system.
13+
If you are installing `cargo-espflash` from source (ie. using `cargo install`) then you must have `rustc>=1.63.0` installed on your system.
1414

1515
If you are running **macOS** or **Linux** then [libuv] must also be installed; this is available via most popular package managers. If you are running **Windows** you can ignore this step.
1616

espflash/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Jesse Braham <[email protected]>",
77
]
88
edition = "2021"
9-
rust-version = "1.62"
9+
rust-version = "1.63"
1010
description = "A command-line tool for flashing Espressif devices over serial"
1111
repository = "https://github.com/esp-rs/espflash"
1212
license = "MIT OR Apache-2.0"

espflash/README.md

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

33
[![Crates.io](https://img.shields.io/crates/v/espflash?labelColor=1C2C2E&color=C96329&logo=Rust&style=flat-square)](https://crates.io/crates/espflash)
44
[![docs.rs](https://img.shields.io/docsrs/espflash?labelColor=1C2C2E&color=C96329&logo=rust&style=flat-square)](https://docs.rs/espflash)
5-
![MSRV](https://img.shields.io/badge/MSRV-1.62-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
5+
![MSRV](https://img.shields.io/badge/MSRV-1.63-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
66
![Crates.io](https://img.shields.io/crates/l/espflash?labelColor=1C2C2E&style=flat-square)
77

88
A library and command-line tool for flashing Espressif devices over serial.
@@ -11,7 +11,7 @@ Supports the **ESP32**, **ESP32-C2/C3**, **ESP32-S2/S3**, and **ESP8266**.
1111

1212
## Installation
1313

14-
If you are installing `espflash` from source (ie. using `cargo install`) then you must have `rustc>=1.62.0` installed on your system.
14+
If you are installing `espflash` from source (ie. using `cargo install`) then you must have `rustc>=1.63.0` installed on your system.
1515

1616
If you are running **macOS** or **Linux** then [libuv] must also be installed; this is available via most popular package managers. If you are running **Windows** you can ignore this step.
1717

0 commit comments

Comments
 (0)