1[package] 2authors = ["The Cloud Hypervisor Authors"] 3build = "../build.rs" 4edition = "2021" 5name = "vhost_user_net" 6version = "0.1.0" 7 8[dependencies] 9clap = { version = "4.5.13", features = ["cargo", "wrap_help"] } 10env_logger = "0.11.3" 11epoll = "4.3.3" 12libc = "0.2.167" 13log = "0.4.22" 14net_util = { path = "../net_util" } 15option_parser = { path = "../option_parser" } 16thiserror = { workspace = true } 17vhost = { workspace = true, features = ["vhost-user-backend"] } 18vhost-user-backend = { workspace = true } 19virtio-bindings = { workspace = true } 20vm-memory = { workspace = true } 21vmm-sys-util = { workspace = true } 22