crosvm/rutabaga_gfx/ffi/Cargo.toml
Pierre Labatut 67b36de49a Also build rutabaga as a ststic library.
This is useful to create monolithic portable binaries.

Change-Id: I7de6b20fbc5ab85f588cd2711d7e99d0183d9f15
Bug: b/276425028
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4450988
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org>
Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
2023-04-20 17:22:38 +00:00

29 lines
706 B
TOML

[package]
name = "rutabaga_gfx_ffi"
version = "0.1.1-alpha.1"
authors = ["The ChromiumOS Authors + Android Open Source Project"]
edition = "2021"
license-file = "LICENSE"
[lib]
name = "rutabaga_gfx_ffi"
crate-type = ["cdylib", "staticlib"]
[dependencies]
rutabaga_gfx = { path = "../", version = "0.1.1-alpha.1"}
data_model = {path = "../../common/data_model", version = "0.1.1-alpha.1"}
libc = "0.2.93"
log = "0.4"
[features]
minigbm = ["rutabaga_gfx/minigbm"]
gfxstream = ["rutabaga_gfx/gfxstream"]
virgl_renderer = ["rutabaga_gfx/virgl_renderer"]
virgl_renderer_next = ["rutabaga_gfx/virgl_renderer_next"]
vulkano = ["rutabaga_gfx/vulkano"]
[profile.dev]
lto = true
incremental = false
[workspace]