-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
30 lines (27 loc) · 938 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "evdev-rs"
version = "0.6.1"
authors = ["Nayan Deshmukh <[email protected]>"]
license = "MIT/Apache-2.0"
keywords = ["evdev"]
readme = "README.md"
repository = "https://github.com/ndesh26/evdev-rs"
homepage = "https://github.com/ndesh26/evdev-rs"
edition = "2018"
description = """
Bindings to libevdev for interacting with evdev devices. It moves the
common tasks when dealing with evdev devices into a library and provides
a library interface to the callers, thus avoiding erroneous ioctls, etc.
"""
[features]
default = []
# Use features from libevdev version 1.10 and greater (libevdev_property_disable)
libevdev-1-10 = ["evdev-sys/libevdev-1-10"]
[dependencies]
serde = { version = "1.0", default-features = false, features=["derive"], optional = true }
evdev-sys = { path = "evdev-sys", version = "0.2.5" }
libc = "0.2.67"
bitflags = "2.4.1"
log = "0.4.8"
[package.metadata.docs.rs]
features = ["serde"]