| 1 | [package] |
| 2 | name = "gbm-sys" |
| 3 | version = "0.4.0" |
| 4 | authors = ["Drakulix (Victor Brekenfeld)" ] |
| 5 | build = "build.rs" |
| 6 | description = "Bindgen generated unsafe libgbm wrapper" |
| 7 | documentation = "https://Drakulix.github.io/gbm.rs/gbm-sys" |
| 8 | repository = "https://github.com/Drakulix/gbm.rs/tree/master/gbm-sys" |
| 9 | keywords = ["gbm" , "bindings" ] |
| 10 | categories = ["external-ffi-bindings" ] |
| 11 | license = "MIT" |
| 12 | edition = "2021" |
| 13 | |
| 14 | [lib] |
| 15 | path = "src/lib.rs" |
| 16 | |
| 17 | [build-dependencies.bindgen] |
| 18 | version = "0.69" |
| 19 | optional = true |
| 20 | |
| 21 | # Specify version of bindgen deps to fix `check-minimal` test |
| 22 | [build-dependencies] |
| 23 | proc-macro2 = { version = "1.0.69" , optional = true } |
| 24 | regex = { version = "1.10" , optional = true } |
| 25 | |
| 26 | [dependencies] |
| 27 | libc = "0.2" |
| 28 | |
| 29 | [features] |
| 30 | use_bindgen = ["bindgen" , "dep:proc-macro2" , "dep:regex" ] |
| 31 | update_bindings = ["use_bindgen" ] |
| 32 | |