Skip to content

Commit f35bd20

Browse files
committed
Bumps the MSRV to 1.65
1 parent b0cead1 commit f35bd20

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/msrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain: 1.60.0
18+
toolchain: 1.65.0
1919
target: thumbv7em-none-eabihf
2020
- run: cargo check --features=stm32f303xc,usb,rt,can,ld --lib
2121

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ documentation = "https://docs.rs/stm32f3xx-hal"
1616
version = "0.10.0"
1717
exclude = ["codegen", ".markdownlint.yml"]
1818
resolver = "2"
19-
rust-version = "1.60"
19+
rust-version = "1.65"
2020

2121
[package.metadata.docs.rs]
2222
features = ["stm32f303xc", "rt", "usb", "can", "enumset"]

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crate](https://img.shields.io/crates/v/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal)
55
[![Docs](https://docs.rs/stm32f3xx-hal/badge.svg)](https://docs.rs/stm32f3xx-hal)
66
[![Crates.io](https://img.shields.io/crates/d/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal)
7-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg)
7+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.65+-blue.svg)
88

99
`stm32f3xx-hal` contains a multi device hardware abstraction on top of the
1010
peripheral access API for the STMicro STM32F3 series microcontrollers. The
@@ -37,7 +37,9 @@ Almost all of the implementation was shamelessly adapted from the
3737
[`stm32f30x-hal`][] crate by Jorge Aparicio.
3838

3939
[`stm32f3`]: https://crates.io/crates/stm32f3
40+
4041
[`stm32f30x-hal`]: https://github.com/japaric/stm32f30x-hal
42+
4143
[`embedded-hal`]: https://github.com/japaric/embedded-hal
4244

4345
## Getting Started
@@ -88,7 +90,7 @@ You can find a list [here, in the docs][chip-features].
8890
#### Note
8991

9092
1. This features are mutually exclusive. Only one feature / chip variant can be
91-
chosen.
93+
chosen.
9294
2. You **have** to choose exactly **one** feature to build this crate at all.
9395

9496
[chip-features]: https://docs.rs/stm32f3xx-hal/latest/stm32f3xx_hal/#target-chip-selection

0 commit comments

Comments
 (0)