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