File tree 4 files changed +11
-8
lines changed
4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 35
35
36
36
include :
37
37
# MSRV
38
- - rust : 1.65 .0
38
+ - rust : 1.70 .0
39
39
TARGET : x86_64-unknown-linux-gnu
40
40
41
41
# Test nightly but don't fail
@@ -109,10 +109,9 @@ jobs:
109
109
- uses : actions-rs/toolchain@v1
110
110
with :
111
111
profile : minimal
112
- toolchain : 1.65 .0
112
+ toolchain : 1.70 .0
113
113
components : clippy
114
114
115
115
- uses : actions-rs/clippy-check@v1
116
116
with :
117
117
token : ${{ secrets.GITHUB_TOKEN }}
118
-
Original file line number Diff line number Diff line change 4
4
5
5
### Changed
6
6
7
+ - Updated ` mio ` to version ` 1 ` .
8
+ - Updated ` nix ` to version ` 0.26 ` .
9
+ - Minimum supported Rust version updated to 1.70.0
10
+
7
11
## [ 0.6.2] - 2024-05-13
8
12
9
13
- Minimum supported Rust version updated to 1.65.0
Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ homepage = "https://github.com/rust-embedded/rust-sysfs-gpio"
11
11
documentation = " https://docs.rs/sysfs_gpio/"
12
12
description = " Provides access to GPIOs using the Linux sysfs interface."
13
13
readme = " README.md"
14
- edition = " 2018 "
14
+ edition = " 2021 "
15
15
16
16
[features ]
17
17
mio-evented = [" mio" ]
18
18
async-tokio = [" futures" , " tokio" , " mio-evented" ]
19
19
20
20
[dependencies ]
21
21
futures = { version = " 0.3" , optional = true }
22
- nix = " 0.23 "
23
- mio = { version = " 0.8 " , optional = true , features = [" os-ext" ]}
22
+ nix = " 0.26 "
23
+ mio = { version = " 1 " , optional = true , features = [" os-ext" ]}
24
24
tokio = { version = " 1" , optional = true , features = [" net" ] }
25
25
26
26
[dev-dependencies ]
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ sysfs_gpio
3
3
4
4
[ ![ Build Status] ( https://github.com/rust-embedded/rust-sysfs-gpio/workflows/CI/badge.svg )] ( https://github.com/rust-embedded/rust-sysfs-gpio/actions )
5
5
[ ![ 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.65 +-blue.svg )
6
+ ![ Minimum Supported Rust Version] ( https://img.shields.io/badge/rustc-1.70 +-blue.svg )
7
7
[ ![ License] ( https://img.shields.io/crates/l/sysfs-gpio.svg )] ( https://github.com/rust-embedded/rust-sysfs-gpio/blob/master/README.md#license )
8
8
9
9
- [ API Documentation] ( https://docs.rs/sysfs_gpio )
@@ -85,7 +85,7 @@ The following features are planned for the library:
85
85
86
86
## Minimum Supported Rust Version (MSRV)
87
87
88
- This crate is guaranteed to compile on stable Rust 1.65 .0 and up. It * might*
88
+ This crate is guaranteed to compile on stable Rust 1.70 .0 and up. It * might*
89
89
compile with older versions but that may change in any new patch release.
90
90
91
91
## Cross Compiling
You can’t perform that action at this time.
0 commit comments