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" } 16vhost = { workspace = true, features = ["vhost-user-backend"] } 17vhost-user-backend = { workspace = true } 18virtio-bindings = { workspace = true } 19vm-memory = { workspace = true } 20vmm-sys-util = { workspace = true } 21