mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 20:04:20 +00:00
Brings up the master request handler on Windows. To stay within the existing protocol, PackedTube was introduced, which is able to transmit a Tube via a RawDescriptor. BUG=b:221882601 TEST=presubmit & cargo test & tested downstream Change-Id: Ibd4c2f55c42738392beed5b15b8d445e47890627 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3856828 Reviewed-by: David Stevens <stevensd@chromium.org> Commit-Queue: Idan Raiter <idanr@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
33 lines
802 B
TOML
33 lines
802 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 = "*"
|
|
tube_transporter = { path = "../../tube_transporter" }
|