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