Skip to content

Commit da418eb

Browse files
committed
Set MSRV to 1.84 and set resolver = 3
1 parent c90d2f1 commit da418eb

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
include:
3737
# MSRV
38-
- rust: 1.70.0
38+
- rust: 1.84.0
3939
TARGET: x86_64-unknown-linux-gnu
4040

4141
# Test nightly but don't fail
@@ -109,7 +109,7 @@ jobs:
109109
- uses: actions-rs/toolchain@v1
110110
with:
111111
profile: minimal
112-
toolchain: 1.70.0
112+
toolchain: 1.84.0
113113
components: clippy
114114

115115
- uses: actions-rs/clippy-check@v1

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- Updated `mio` to version `1`.
88
- Updated `nix` to version `0.26`.
9-
- Minimum supported Rust version updated to 1.70.0
9+
- Minimum supported Rust version updated to 1.84.0
1010

1111
## [0.6.2] - 2024-05-13
1212

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ documentation = "https://docs.rs/sysfs_gpio/"
1212
description = "Provides access to GPIOs using the Linux sysfs interface."
1313
readme = "README.md"
1414
edition = "2021"
15+
rust-version = "1.84"
16+
resolver = "3"
1517

1618
[features]
1719
mio-evented = ["mio"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sysfs_gpio
33

44
[![Build Status](https://github.com/rust-embedded/rust-sysfs-gpio/workflows/CI/badge.svg)](https://github.com/rust-embedded/rust-sysfs-gpio/actions)
55
[![Version](https://img.shields.io/crates/v/sysfs-gpio.svg)](https://crates.io/crates/sysfs-gpio)
6-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.70+-blue.svg)
6+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.84+-blue.svg)
77
[![License](https://img.shields.io/crates/l/sysfs-gpio.svg)](https://github.com/rust-embedded/rust-sysfs-gpio/blob/master/README.md#license)
88

99
- [API Documentation](https://docs.rs/sysfs_gpio)
@@ -85,7 +85,7 @@ The following features are planned for the library:
8585

8686
## Minimum Supported Rust Version (MSRV)
8787

88-
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
88+
This crate is guaranteed to compile on stable Rust 1.84.0 and up. It *might*
8989
compile with older versions but that may change in any new patch release.
9090

9191
## Cross Compiling

0 commit comments

Comments
 (0)