Skip to content

Commit

Permalink
Merge pull request #74 from ids1024/v0.9.1
Browse files Browse the repository at this point in the history
V0.9.1, depending on udev 0.9.0
  • Loading branch information
Drakulix authored Sep 25, 2024
2 parents cca7e43 + 195e96e commit 40b31d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.9.1

- Update udev to 0.8
- Drop io-lifetimes dependency and require Rust 1.63

## 0.9.0

- Update to bitflags 2.x and udev 0.8
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ description = "libinput bindings for rust"
license = "MIT"
documentation = "https://docs.rs/input"
repository = "https://github.com/Drakulix/input.rs"
version = "0.9.0"
version = "0.9.1"
keywords = ["wayland", "input", "bindings"]
categories = ["external-ffi-bindings"]
authors = ["Drakulix (Victoria Brekenfeld)"]
edition = "2018"
exclude = [".gitignore", ".rustfmt.toml", ".github"]
rust-version = "1.63.0"

[dependencies]
io-lifetimes = "1.0.3"
libc = "0.2"
bitflags = "2.4"
log = { version = "0.4.20", optional = true }
Expand All @@ -23,7 +23,7 @@ path = "input-sys"
default-features = false

[dependencies.udev]
version = "0.8"
version = "0.9"
optional = true

[dev-dependencies]
Expand Down
3 changes: 1 addition & 2 deletions src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
#![allow(clippy::result_unit_err)]

use crate::{ffi, AsRaw, Device, Event, FromRaw};
use io_lifetimes::{AsFd, BorrowedFd, OwnedFd};
use std::{
ffi::{CStr, CString},
io::{Error as IoError, Result as IoResult},
iter::Iterator,
os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd},
os::unix::io::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, OwnedFd, RawFd},
path::Path,
rc::Rc,
};
Expand Down

0 comments on commit 40b31d3

Please sign in to comment.