1 | [package] |
2 | name = "gbm-sys" |
3 | version = "0.2.2" |
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 | |
13 | [lib] |
14 | path = "src/lib.rs" |
15 | |
16 | [build-dependencies.bindgen] |
17 | version = "0.58" |
18 | optional = true |
19 | |
20 | [dependencies] |
21 | libc = "0.2" |
22 | |
23 | [features] |
24 | gen = ["bindgen" ] |
25 | update_bindings = ["gen" ] |
26 | |