Skip to content

Commit 40b31d3

Browse files
authoredSep 25, 2024
Merge pull request #74 from ids1024/v0.9.1
V0.9.1, depending on udev 0.9.0
2 parents cca7e43 + 195e96e commit 40b31d3

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.9.1
2+
3+
- Update udev to 0.8
4+
- Drop io-lifetimes dependency and require Rust 1.63
5+
16
## 0.9.0
27

38
- Update to bitflags 2.x and udev 0.8

‎Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ description = "libinput bindings for rust"
44
license = "MIT"
55
documentation = "https://docs.rs/input"
66
repository = "https://github.com/Drakulix/input.rs"
7-
version = "0.9.0"
7+
version = "0.9.1"
88
keywords = ["wayland", "input", "bindings"]
99
categories = ["external-ffi-bindings"]
1010
authors = ["Drakulix (Victoria Brekenfeld)"]
1111
edition = "2018"
1212
exclude = [".gitignore", ".rustfmt.toml", ".github"]
13+
rust-version = "1.63.0"
1314

1415
[dependencies]
15-
io-lifetimes = "1.0.3"
1616
libc = "0.2"
1717
bitflags = "2.4"
1818
log = { version = "0.4.20", optional = true }
@@ -23,7 +23,7 @@ path = "input-sys"
2323
default-features = false
2424

2525
[dependencies.udev]
26-
version = "0.8"
26+
version = "0.9"
2727
optional = true
2828

2929
[dev-dependencies]

‎src/context.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
#![allow(clippy::result_unit_err)]
33

44
use crate::{ffi, AsRaw, Device, Event, FromRaw};
5-
use io_lifetimes::{AsFd, BorrowedFd, OwnedFd};
65
use std::{
76
ffi::{CStr, CString},
87
io::{Error as IoError, Result as IoResult},
98
iter::Iterator,
10-
os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd},
9+
os::unix::io::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, OwnedFd, RawFd},
1110
path::Path,
1211
rc::Rc,
1312
};

0 commit comments

Comments
 (0)