Skip to content
This repository was archived by the owner on Oct 24, 2022. It is now read-only.

Commit 77bc417

Browse files
authored
Merge pull request #23 from jiangliu/refactor
Refactor
2 parents 89fa48e + 6d04368 commit 77bc417

File tree

7 files changed

+1669
-888
lines changed

7 files changed

+1669
-888
lines changed

Cargo.toml

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@
22
name = "vhost-user-backend"
33
version = "0.1.0"
44
authors = ["The Cloud Hypervisor Authors"]
5+
keywords = ["vhost-user", "virtio"]
6+
description = "A framework to build vhost-user backend service daemon"
57
edition = "2018"
68
license = "Apache-2.0"
79

810
[dependencies]
911
epoll = ">=4.0.1"
1012
libc = ">=0.2.39"
1113
log = ">=0.4.6"
12-
vhost = { git = "https://github.com/rust-vmm/vhost", features = ["vhost-user-slave"] }
13-
virtio-bindings = "0.1.0"
14-
vm-memory = {version = ">=0.2.0", features = ["backend-mmap", "backend-atomic"]}
14+
vhost = { version = "0.1", features = ["vhost-user-slave"] }
15+
virtio-bindings = "0.1"
1516
virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio" }
16-
vmm-sys-util = ">=0.3.1"
17+
vm-memory = {version = "0.6", features = ["backend-mmap", "backend-atomic"]}
18+
vmm-sys-util = "0.8"
19+
20+
[dev-dependencies]
21+
vm-memory = {version = "0.6", features = ["backend-mmap", "backend-atomic", "backend-bitmap"]}

coverage_config_x86_64.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"coverage_score": 0,
2+
"coverage_score": 77.4,
33
"exclude_path": "",
44
"crate_features": ""
55
}

0 commit comments

Comments
 (0)