Skip to content

Add MSRV 1.34.0 #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ matrix:
rust: nightly
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)

# MSRV
- env: TARGET=x86_64-unknown-linux-gnu
rust: 1.34.0
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)

before_install:
- set -e
- rustup self update
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

rust-gpio-cdev is a Rust library/crate providing access to [GPIO character device
ABI](https://www.kernel.org/doc/Documentation/ABI/testing/gpio-cdev). This API,
stabilized with Linux v4.4, deprecates the legacy sysfs interface to GPIOs that is
stabilized with Linux v4.4, deprecates the legacy sysfs interface to GPIOs that is
planned to be removed from the upstream kernel after
year 2020 (which is coming up quickly).

Expand Down Expand Up @@ -173,6 +173,11 @@ would need to quickly handle the event notification, make another system call
to the value file to see the state, etc. which had far too many variables involved
to be considered reliable.

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.34.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License

Licensed under either of
Expand Down