mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
BUG=b:194137301 TEST=cargo test --all-features Change-Id: I899c579779d51b7712ce4030856dfbe683c99df2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3270300 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org>
27 lines
608 B
TOML
27 lines
608 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 = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
vmm = []
|
|
device = []
|
|
vfio-device = []
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
bitflags = ">=1.0.1"
|
|
data_model= "*"
|
|
libc = ">=0.2.39"
|
|
remain = "*"
|
|
sys_util = "*"
|
|
tempfile = "*"
|
|
thiserror = { version = "1.0.20" }
|