Skip to content

Commit

Permalink
Bumps the MSRV to 1.65
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed Jul 2, 2024
1 parent b0cead1 commit f35bd20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.60.0
toolchain: 1.65.0
target: thumbv7em-none-eabihf
- run: cargo check --features=stm32f303xc,usb,rt,can,ld --lib

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ documentation = "https://docs.rs/stm32f3xx-hal"
version = "0.10.0"
exclude = ["codegen", ".markdownlint.yml"]
resolver = "2"
rust-version = "1.60"
rust-version = "1.65"

[package.metadata.docs.rs]
features = ["stm32f303xc", "rt", "usb", "can", "enumset"]
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Crate](https://img.shields.io/crates/v/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal)
[![Docs](https://docs.rs/stm32f3xx-hal/badge.svg)](https://docs.rs/stm32f3xx-hal)
[![Crates.io](https://img.shields.io/crates/d/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal)
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg)
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.65+-blue.svg)

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

[`stm32f3`]: https://crates.io/crates/stm32f3

[`stm32f30x-hal`]: https://github.com/japaric/stm32f30x-hal

[`embedded-hal`]: https://github.com/japaric/embedded-hal

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

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

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

0 comments on commit f35bd20

Please sign in to comment.