-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 999 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 999 Bytes
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
[package]
name = "input-sys"
version = "1.18.0"
authors = ["Victoria Brekenfeld (Drakulix) <github@drakulix.de>"]
build = "build.rs"
description = "Bindgen generated unsafe libinput wrapper"
documentation = "https://drakulix.github.io/input.rs/input-sys"
repository = "https://github.com/Drakulix/input.rs/tree/master/input-sys"
keywords = ["wayland", "input", "bindings"]
categories = ["external-ffi-bindings"]
license = "MIT"
edition = "2018"
[lib]
path = "src/lib.rs"
[build-dependencies.bindgen]
version = "0.72"
optional = true
# Fix for non-existant feature on nightly `-Z minimal-versions`
[build-dependencies.proc-macro2]
version = "1.0.76"
optional = true
# Fix for `-Z minimal-versions`
[build-dependencies.regex]
version = "1.10"
optional = true
[features]
default = ["libinput_1_21"]
use_bindgen = ["bindgen", "proc-macro2", "regex"]
update_bindings = ["use_bindgen"]
libinput_1_11 = []
libinput_1_14 = []
libinput_1_15 = []
libinput_1_19 = []
libinput_1_21 = []
libinput_1_23 = []