mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
8e7bc96616
Add `vhost_user_devices` crate which will be used to create a vhost-user device executables. BUG=b:185089400 TEST=cargo test in /vhost_user_devices Change-Id: I7256d68316f7763d3ceaa65abc97663975e7608f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2822169 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Noah Gold <nkgold@google.com> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
19 lines
454 B
TOML
19 lines
454 B
TOML
[package]
|
|
name = "vhost_user_devices"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
devices = { path = "../devices" }
|
|
libc = "*"
|
|
remain = "*"
|
|
sync = { path = "../sync" }
|
|
thiserror = "*"
|
|
vm_memory = { path = "../vm_memory" }
|
|
vmm_vhost = { version = "*", features = ["vhost-user-slave"] }
|
|
|
|
[dev-dependencies]
|
|
data_model = { path = "../data_model" }
|
|
tempfile = { path = "../tempfile" }
|