1[package] 2name = "gpu_display" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[features] 8x = [] 9kiwi = [] 10 11[dependencies] 12anyhow = "*" 13data_model = { path = "../common/data_model" } 14libc = "*" 15base = { path = "../base" } 16linux_input_sys = { path = "../linux_input_sys" } 17remain = "*" 18thiserror = "*" 19cfg-if = "*" 20serde = { version = "1", features = [ "derive" ] } 21zerocopy = "*" 22 23[target.'cfg(windows)'.dependencies] 24metrics = { path = "../metrics" } 25num-traits = "*" 26winapi = "*" 27win_util = { path = "../win_util" } 28sync = { path = "../common/sync" } 29euclid = "*" 30vm_control = { path = "../vm_control" } 31 32[build-dependencies] 33cc = "1.0.25" 34pkg-config = "0.3.11" 35cfg-if = "1.0.0" 36which = "4" 37 38[[example]] 39name = "simple" 40path = "examples/simple.rs" 41 42[[example]] 43name = "simple_open" 44path = "examples/simple_open.rs" 45required-features = ["x"] 46