Add Cargo.toml file
Signed-off-by: Arron Wang <arron.wang@intel.com>
This commit is contained in:
parent
25d7d68403
commit
309d82bf2b
1 changed files with 11 additions and 3 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -1,8 +1,16 @@
|
|||
[package]
|
||||
name = "crate-template"
|
||||
name = "vhost_user_backend"
|
||||
version = "0.1.0"
|
||||
authors = [TODO]
|
||||
license = "Apache-2.0 OR BSD-3-Clause"
|
||||
authors = ["The Cloud Hypervisor Authors"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
epoll = ">=4.0.1"
|
||||
libc = ">=0.2.39"
|
||||
log = ">=0.4.6"
|
||||
virtio-bindings = "0.1.0"
|
||||
vm-memory = {version = ">=0.2.0", features = ["backend-mmap"]}
|
||||
vm-virtio = { git = "https://github.com/cloud-hypervisor/vm-virtio", branch = "dragonball" }
|
||||
vmm-sys-util = ">=0.3.1"
|
||||
vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue