1
0

update to Upstream evdev_rs

currently pinned to upstream master, which is ~0.4.0, modulo some minor
internal tweaks + my PR to implement Send on `Device` and
`UInputDevice`

https://github.com/ndesh26/evdev-rs/pull/55

It looks like there are some larger breaking changes coming down the
pipeline as well? Change is always good, so I'll update whenever 0.5.0
is released as well :)
This commit is contained in:
Daniel Prilik
2020-10-30 10:28:55 -04:00
parent cf1b0a4eb4
commit 858209484f
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@@ -119,7 +119,7 @@ dependencies = [
[[package]] [[package]]
name = "evdev-rs" name = "evdev-rs"
version = "0.4.0" version = "0.4.0"
source = "git+https://github.com/daniel5151/evdev-rs.git#0750443a1eb8edfa34cdfcf91e8c5c6cf6a12c3b" source = "git+https://github.com/ndesh26/evdev-rs.git#8e995b8bfc1f8ed844ae47edaa4286c99e8c88b5"
dependencies = [ dependencies = [
"bitflags 1.2.1", "bitflags 1.2.1",
"evdev-sys", "evdev-sys",
@@ -130,7 +130,7 @@ dependencies = [
[[package]] [[package]]
name = "evdev-sys" name = "evdev-sys"
version = "0.2.1" version = "0.2.1"
source = "git+https://github.com/daniel5151/evdev-rs.git#0750443a1eb8edfa34cdfcf91e8c5c6cf6a12c3b" source = "git+https://github.com/ndesh26/evdev-rs.git#8e995b8bfc1f8ed844ae47edaa4286c99e8c88b5"
dependencies = [ dependencies = [
"cc", "cc",
"libc", "libc",
@@ -212,9 +212,9 @@ dependencies = [
[[package]] [[package]]
name = "num-integer" name = "num-integer"
version = "0.1.43" version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b" checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"num-traits", "num-traits",
@@ -222,9 +222,9 @@ dependencies = [
[[package]] [[package]]
name = "num-traits" name = "num-traits"
version = "0.2.12" version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611" checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [ dependencies = [
"autocfg", "autocfg",
] ]

View File

@@ -5,6 +5,6 @@ authors = ["Daniel Prilik <danielprilik@gmail.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
# custom fork which implements `Send` on UInputDevice # master includes a PR that implements `Send` for `Device` and `UInputDevice`
evdev-rs = { git = "https://github.com/daniel5151/evdev-rs.git", sha = "cc9060d" } evdev-rs = { git = "https://github.com/ndesh26/evdev-rs.git" }
notify-rust = "4" notify-rust = "4"