mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
2b43443edc
Does couple of things - move tube under right directory - cleanup cros_async dependency - export tube module from base - enable base windows tests - add verbose flag to test runner test: built on window and presubmit bug: b:213151429 bug: b:213153157 Change-Id: I0d1906d7edcc3352db53325ea7527550eaf00895 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3550296 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Vikram Auradkar <auradkar@google.com>
32 lines
747 B
TOML
32 lines
747 B
TOML
[package]
|
|
name = "vmm_vhost"
|
|
version = "0.1.0"
|
|
keywords = ["vhost", "vhost-user", "virtio", "vdpa"]
|
|
description = "a pure rust library for vdpa, vhost and vhost-user"
|
|
authors = ["Liu Jiang <gerry@linux.alibaba.com>"]
|
|
repository = "https://github.com/rust-vmm/vhost"
|
|
documentation = "https://docs.rs/vhost"
|
|
readme = "README.md"
|
|
license = "Apache-2.0 or BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = []
|
|
vmm = []
|
|
device = []
|
|
vfio-device = []
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
base = { path = "../../base" }
|
|
bitflags = ">=1.0.1"
|
|
cfg-if = "1.0.0"
|
|
data_model= "*"
|
|
libc = ">=0.2.39"
|
|
remain = "*"
|
|
tempfile = "*"
|
|
thiserror = { version = "1.0.20" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|