-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
44 lines (38 loc) · 1.12 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "input"
description = "libinput bindings for rust"
license = "MIT"
documentation = "https://docs.rs/input"
repository = "https://github.com/Drakulix/input.rs"
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]
libc = "0.2"
bitflags = "2.4"
log = { version = "0.4.20", optional = true }
[dependencies.input-sys]
version = "1.18.0"
path = "input-sys"
default-features = false
[dependencies.udev]
version = "0.9"
optional = true
[dev-dependencies]
rustix = { version = "0.38", features = ["event"] }
[features]
default = ["udev", "log", "libinput_1_21"]
use_bindgen = ["input-sys/use_bindgen"]
libinput_1_11 = ["input-sys/libinput_1_11"]
libinput_1_14 = ["input-sys/libinput_1_14", "libinput_1_11"]
libinput_1_15 = ["input-sys/libinput_1_15", "libinput_1_14"]
libinput_1_19 = ["input-sys/libinput_1_19", "libinput_1_15"]
libinput_1_21 = ["input-sys/libinput_1_21", "libinput_1_19"]
[workspace]
members = [
"input-sys"
]