1[package]
2name = "input-sys"
3version = "1.18.0"
4authors = ["Victoria Brekenfeld (Drakulix) <github@drakulix.de>"]
5build = "build.rs"
6description = "Bindgen generated unsafe libinput wrapper"
7documentation = "https://drakulix.github.io/input.rs/input-sys"
8repository = "https://github.com/Drakulix/input.rs/tree/master/input-sys"
9keywords = ["wayland", "input", "bindings"]
10categories = ["external-ffi-bindings"]
11license = "MIT"
12edition = "2018"
13
14[lib]
15path = "src/lib.rs"
16
17[build-dependencies.bindgen]
18version = "0.69"
19optional = true
20
21# Fix for non-existant feature on nightly `-Z minimal-versions`
22[build-dependencies.proc-macro2]
23version = "1.0.76"
24optional = true
25
26# Fix for `-Z minimal-versions`
27[build-dependencies.regex]
28version = "1.10"
29optional = true
30
31[features]
32default = ["libinput_1_21"]
33use_bindgen = ["bindgen", "proc-macro2", "regex"]
34update_bindings = ["use_bindgen"]
35libinput_1_11 = []
36libinput_1_14 = []
37libinput_1_15 = []
38libinput_1_19 = []
39libinput_1_21 = []
40