1[package] 2name = "vhost_user_net" 3version = "0.1.0" 4authors = ["The Cloud Hypervisor Authors"] 5edition = "2021" 6 7[dependencies] 8clap = { version = "3.1.8", features = ["wrap_help"] } 9env_logger = "0.9.0" 10epoll = "4.3.1" 11libc = "0.2.122" 12log = "0.4.16" 13net_util = { path = "../net_util" } 14option_parser = { path = "../option_parser" } 15vhost = { version = "0.4.0", features = ["vhost-user-slave"] } 16vhost-user-backend = "0.3.0" 17virtio-bindings = "0.1.0" 18vm-memory = "0.7.0" 19vmm-sys-util = "0.9.0" 20