1 | [package] |
2 | name = "drm-sys" |
3 | description = "Bindings to the Direct Rendering Manager API" |
4 | version = "0.4.0" |
5 | authors = ["Tyler Slabinski <tslabinski@slabity.net>" ] |
6 | license = "MIT" |
7 | build = "build.rs" |
8 | rust-version = "1.63" |
9 | |
10 | [dependencies] |
11 | libc = { version = "^0.2.29" , default-features = false } |
12 | |
13 | [features] |
14 | default = [] |
15 | use_bindgen = ["bindgen" , "pkg-config" ] |
16 | update_bindings = ["use_bindgen" ] |
17 | |
18 | [build-dependencies] |
19 | bindgen = { version = "0.59" , optional = true } |
20 | pkg-config = { version = "0.3.19" , optional = true } |
21 | |