1[package] 2name = "vmm_vhost" 3version = "0.1.0" 4keywords = ["vhost", "vhost-user", "virtio", "vdpa"] 5description = "a pure rust library for vdpa, vhost and vhost-user" 6authors = ["Liu Jiang <gerry@linux.alibaba.com>"] 7repository = "https://github.com/rust-vmm/vhost" 8documentation = "https://docs.rs/vhost" 9readme = "README.md" 10license = "Apache-2.0 or BSD-3-Clause" 11edition = "2021" 12 13[features] 14default = [] 15vmm = [] 16device = [] 17vfio-device = [] 18 19[dependencies] 20anyhow = "*" 21base = { path = "../../base" } 22bitflags = ">=1.0.1" 23cfg-if = "1.0.0" 24data_model = { path = "../../common/data_model" } 25libc = ">=0.2.39" 26remain = "*" 27tempfile = "*" 28thiserror = { version = "1.0.20" } 29zerocopy = "*" 30 31[target.'cfg(windows)'.dependencies] 32serde = { version = "1", features = [ "derive" ] } 33serde_json = "*" 34tube_transporter = { path = "../../tube_transporter" } 35