• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "rutabaga_gfx_ffi"
3version = "0.1.3"
4authors = ["The ChromiumOS Authors + Android Open Source Project"]
5edition = "2021"
6description = "Handling virtio-gpu protocols with C API"
7license-file = "LICENSE"
8
9[lib]
10name = "rutabaga_gfx_ffi"
11crate-type = ["cdylib", "staticlib"]
12
13[dependencies]
14rutabaga_gfx = { path = "../", version = "0.1.3"}
15libc = "0.2.93"
16log = "0.4"
17once_cell = "1.7"
18
19[features]
20minigbm = ["rutabaga_gfx/minigbm"]
21gfxstream = ["rutabaga_gfx/gfxstream"]
22virgl_renderer = ["rutabaga_gfx/virgl_renderer"]
23vulkano = ["rutabaga_gfx/vulkano"]
24
25[profile.dev]
26lto = true
27incremental = false
28
29[workspace]
30