Skip to content

Commit 15d4386

Browse files
committed
Update dependencies and MSRV to 1.69.0
1 parent 5b557a2 commit 15d4386

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.6.0...0.6.1)
1010

1111
- Added support for querying the configuration of a SPI device.
12-
- Minimum Supported Rust Version is now 1.63.0
12+
- `nix` updated to 0.29
13+
- `bitflags` updated to 2.9
14+
- Minimum Supported Rust Version is now 1.69.0
1315

1416
## 0.6.0 / 2023-08-03
1517

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Provides access to the Linux spidev interface. This
1717
interface allows for configuration of the spidev device,
1818
half-duplex SPI access, and full-duplex SPI access.
1919
"""
20-
rust-version = "1.63"
20+
rust-version = "1.69"
2121

2222
[dependencies]
2323
libc = "0.2"
24-
bitflags = "2.3"
25-
nix = "0.26.4"
24+
bitflags = "2.9"
25+
nix = { version = "0.29", features = ["ioctl"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://github.com/rust-embedded/rust-spidev/workflows/CI/badge.svg)](https://github.com/rust-embedded/rust-spidev/actions)
44
[![Version](https://img.shields.io/crates/v/spidev.svg)](https://crates.io/crates/spidev)
55
[![License](https://img.shields.io/crates/l/spidev.svg)](https://github.com/rust-embedded/rust-spidev/blob/master/README.md#license)
6-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.63.0+-blue.svg)
6+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.69.0+-blue.svg)
77

88
[Documentation](https://docs.rs/spidev)
99

@@ -77,7 +77,7 @@ The following features are implemented and planned for the library:
7777

7878
## Minimum Supported Rust Version (MSRV)
7979

80-
This crate is guaranteed to compile on stable Rust 1.63.0 and up. It *might*
80+
This crate is guaranteed to compile on stable Rust 1.69.0 and up. It *might*
8181
compile with older versions but that may change in any new patch release.
8282

8383
## Cross Compiling

0 commit comments

Comments
 (0)