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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "evdev-rs"
version = "0.6.3"
authors = ["Nayan Deshmukh <nayan26deshmukh@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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.
"""
homepage = "https://github.com/ndesh26/evdev-rs"
readme = "README.md"
keywords = ["evdev"]
license = "MIT/Apache-2.0"
repository = "https://github.com/ndesh26/evdev-rs"
[package.metadata.docs.rs]
features = ["serde"]
[features]
default = []
libevdev-1-10 = ["evdev-sys/libevdev-1-10"]
[lib]
name = "evdev_rs"
path = "src/lib.rs"
[[example]]
name = "evtest"
path = "examples/evtest.rs"
[[example]]
name = "vmouse"
path = "examples/vmouse.rs"
[[test]]
name = "all"
path = "tests/all.rs"
[dependencies.bitflags]
version = "2.9.1"
[dependencies.evdev-sys]
version = "0.2.6"
[dependencies.libc]
version = "0.2.174"
[dependencies.log]
version = "0.4.27"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false
|