• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "rutabaga_gfx"
3version = "0.1.1-alpha.1"
4authors = ["The ChromiumOS Authors + Android Open Source Project"]
5edition = "2021"
6description = "[highly unstable] Handling virtio-gpu protocols"
7license-file = "LICENSE"
8
9[features]
10gfxstream = []
11gfxstream_stub = []
12virgl_renderer = []
13virgl_renderer_next = []
14minigbm = []
15# To try out Vulkano, delete the following line and uncomment the line in "dependencies". Vulkano
16# features are just a prototype and not integrated yet into the ChromeOS build system.
17vulkano = []
18x = []
19
20[dependencies]
21cfg-if = "1.0.0"
22data_model = { path = "../common/data_model", version = "0.1.1-alpha.1"}
23libc = "0.2.116"
24remain = "0.2"
25thiserror = "1.0.23"
26serde = { version = "1", features = [ "derive" ] }
27zerocopy = "0.6"
28log = "0.4"
29
30[target.'cfg(unix)'.dependencies]
31nix = "0.26.1"
32
33[target.'cfg(windows)'.dependencies]
34winapi = "0.3"
35
36# To build latest Vulkano, change version to git = "https:/github.com/vulkano-rs/vulkano.git"
37# vulkano = { version = "0.31.0", optional = true }
38
39[build-dependencies]
40pkg-config = "0.3"
41anyhow = "1.0.57"
42