mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
40114fd26e
This code is unused and untested, while simultaneously making the rest of the virtio device code more complex. Remove it. BUG=b:276993009 TEST=tools/dev_container tools/presubmit Change-Id: I9d44f92419c6912d1735043404d4f64efc95bba4 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4676076 Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Frederick Mayle <fmayle@google.com> Reviewed-by: Junichi Uekawa <uekawa@chromium.org>
34 lines
846 B
TOML
34 lines
846 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 = []
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
base = { path = "../../base" }
|
|
bitflags = "2.3"
|
|
cfg-if = "1.0.0"
|
|
data_model = { path = "../../common/data_model" }
|
|
enumn = "0.1.0"
|
|
libc = ">=0.2.39"
|
|
remain = "*"
|
|
tempfile = "*"
|
|
thiserror = { version = "1.0.20" }
|
|
zerocopy = "*"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
tube_transporter = { path = "../../tube_transporter" }
|