mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
22a2dce38a
- Revbum to 0.1.1, 0.1.0-{anything} causes data_model 0.1.0 to be downloaded since it's a higher release number. - Also, add include LICENSE in the package includes for data_model. - Also, use the correct version when not using path in rutabaga_gfx. BUG=b:173630595 TEST=compile Change-Id: I68af3eb1fa4ab89a77968f784e388b10c94d8b97 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4209693 Reviewed-by: Dennis Kempin <denniskempin@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org>
37 lines
1,014 B
TOML
37 lines
1,014 B
TOML
[package]
|
|
name = "rutabaga_gfx"
|
|
version = "0.1.1-alpha.1"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
description = "[highly unstable] Handling virtio-gpu protocols"
|
|
license-file = "LICENSE"
|
|
|
|
[features]
|
|
gfxstream = []
|
|
gfxstream_stub = []
|
|
virgl_renderer = []
|
|
virgl_renderer_next = []
|
|
minigbm = []
|
|
# To try out Vulkano, delete the following line and uncomment the line in "dependencies". Vulkano
|
|
# features are just a prototype and not integrated yet into the ChromeOS build system.
|
|
vulkano = []
|
|
x = []
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
data_model = { path = "../common/data_model", version = "0.1.1-alpha.1"}
|
|
libc = "0.2.116"
|
|
remain = "0.2"
|
|
thiserror = "1.0.23"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
|
|
[target.'cfg(not(target_os = "fuchsia"))'.dependencies]
|
|
base = { path = "../base" }
|
|
|
|
|
|
# To build latest Vulkano, change version to git = "https:/github.com/vulkano-rs/vulkano.git"
|
|
# vulkano = { version = "0.31.0", optional = true }
|
|
|
|
[build-dependencies]
|
|
pkg-config = "0.3"
|
|
anyhow = "1.0.57"
|