xref: /aosp_15_r20/external/crosvm/rutabaga_gfx/kumquat/gpu_client/Cargo.toml (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
1[package]
2name = "virtgpu_kumquat_ffi"
3version = "0.1.3"
4authors = ["Android Open Source Project"]
5edition = "2021"
6description = "Library for virtgpu syscalls"
7license-file = "LICENSE"
8
9[lib]
10name = "virtgpu_kumquat_ffi"
11crate-type = ["cdylib", "staticlib"]
12
13[dependencies]
14rutabaga_gfx = { path = "../../", version = "0.1.3"}
15zerocopy = { version = "0.7", features = ["derive"] }
16libc = "0.2.93"
17log = "0.4"
18
19[profile.dev]
20lto = true
21incremental = false
22
23[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
24nix = { version = "0.28", features = ["event", "feature", "fs", "mman", "socket", "uio", "ioctl"] }
25
26[workspace]
27