1[package] 2name = "vhost_user_net" 3version = "0.1.0" 4authors = ["The Cloud Hypervisor Authors"] 5edition = "2018" 6 7[dependencies] 8clap = { version = "2.33.3", features=["wrap_help"] } 9epoll = ">=4.0.1" 10libc = "0.2.98" 11log = "0.4.14" 12net_util = { path = "../net_util" } 13option_parser = { path = "../option_parser" } 14vhost_user_backend = { path = "../vhost_user_backend" } 15vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } 16virtio-bindings = "0.1.0" 17vm-memory = "0.5.0" 18vmm-sys-util = ">=0.3.1" 19