1[package] 2name = "drm-fourcc" 3version = "2.2.0" 4authors = ["Daniel Franklin <daniel@danielzfranklin.org>"] 5edition = "2018" 6license = "MIT" 7description = "Provides an enum with every valid Direct Rendering Manager (DRM) format fourcc" 8repository = "https://github.com/danielzfranklin/drm-fourcc-rs" 9keywords = ["drm", "fourcc", "linux"] 10categories = ["os::linux-apis"] 11 12# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 13 14[features] 15default = ["std"] 16# Adds `Error` impls for the Unrecognized types. 17std = [] 18# Re-build the bindings based on the headers on your machine. Should not be necessary 19build_bindings = ["regex", "bindgen"] 20 21[dependencies] 22serde = { version = "1.0.125", optional = true, features = ["derive"] } 23 24[build-dependencies] 25regex = { version = "1.4.3", optional = true } 26bindgen = { version = "0.57.0", optional = true } 27