Skip to content

Commit 406bb6d

Browse files
committed
Bumped the MSRV to v1.73 for both the build and clippy.
1 parent 034baa1 commit 406bb6d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.65.0"
1+
msrv = "1.73.0"

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77

88
### Unreleased Features
99

10-
- Upgraded to Rust Edition 2021, MSRV 1.63.0
11-
- New bindings in the -sys crate for _libiio_ v0.24
12-
- Build features to select the version of bindings to match the installed _libiio_ (Currently v0.21 or v0.24)
10+
- Upgraded to Rust Edition 2021, MSRV 1.73.0
11+
- New bindings in the -sys crate for _libiio_ v0.24 & v0.25
12+
- Build features to select the version of bindings to match the installed _libiio_, with several options.
1313
- Conditional features based on the version of _libiio_.
1414
- Updated examples and utils to use `clap` v3.2, with forward-looking implementation.
1515

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "industrial-io"
33
version = "0.6.0-pre.0"
44
edition = "2021"
5-
rust-version = "1.65.0"
5+
rust-version = "1.73.0"
66
authors = ["Frank Pagliughi <[email protected]>"]
77
repository = "https://github.com/fpagliughi/rust-industrial-io"
88
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Rust library for using the Linux Industrial I/O (IIO) subsystem for the input an
77
This is a wrapper around the user-space C library, [libiio](https://github.com/analogdevicesinc/libiio). It assumes that a fairly recent version of the C library is installed on the target. By default, it will use bindings for the latest version of the C library at the time the crate version was created - currently v0.25 - but several previous versions are also supported and a specific one can be selected via
88
cargo build features.
99

10-
To use this library an application, add this to _Cargo.toml:_
10+
To use this library in an application, add this to _Cargo.toml:_
1111

1212
```toml
1313
[dependencies]
@@ -40,7 +40,7 @@ To keep up with the latest announcements for this project, follow:
4040

4141
### Unreleased Features in this Branch (Upcoming v0.6)
4242

43-
- Targeting Rust Edition 2021 with MSRV v1.65
43+
- Targeting Rust Edition 2021 with MSRV v1.73
4444
- Converted to explicit re-exports to avoid ambigious warnings.
4545
- Added a mutable iterator for channel data in a buffer (to fill the buffer)
4646
- Added lifetime to buffer iterator so as not to outlive the buffer.

libiio-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libiio-sys"
33
version = "0.4.0-pre.0"
44
edition = "2021"
5-
rust-version = "1.63.0"
5+
rust-version = "1.73.0"
66
authors = ["Frank Pagliughi <[email protected]>"]
77
repository = "https://github.com/fpagliughi/rust-industrial-io"
88
homepage = "https://github.com/fpagliughi/rust-industrial-io"

0 commit comments

Comments
 (0)