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 = [] 15 16[dependencies] 17anyhow = "*" 18base = { path = "../../base" } 19bitflags = "2.3" 20cfg-if = "1.0.0" 21enumn = "0.1.0" 22libc = ">=0.2.39" 23remain = "*" 24tempfile = "*" 25thiserror = { version = "1.0.20" } 26zerocopy = { version = "0.7", features = ["derive"] } 27 28[target.'cfg(windows)'.dependencies] 29serde = { version = "1", features = [ "derive" ] } 30serde_json = "*" 31tube_transporter = { path = "../../tube_transporter" } 32