Skip to content

Commit

Permalink
Local versions of repositories
Browse files Browse the repository at this point in the history
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
  • Loading branch information
vireshk committed Jun 28, 2023
1 parent e678c3b commit 2ae109d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions crates/vhost-user-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ xen = ["vm-memory/xen", "vhost/xen"]
[dependencies]
libc = "0.2.39"
log = "0.4.17"
vhost = { path = "../vhost", version = "0.7", features = ["vhost-user-slave"] }
virtio-bindings = "0.2.0"
virtio-queue = "0.8.0"
vm-memory = { version = "0.11.0", features = ["backend-mmap", "backend-atomic"] }
vhost = { path = "../vhost", features = ["vhost-user-slave"] }
virtio-bindings = { git = "https://github.com/vireshk/vm-virtio", branch = "main" }
virtio-queue = { git = "https://github.com/vireshk/vm-virtio", branch = "main" }
vm-memory = { git = "https://github.com/vireshk/vm-memory", branch = "main", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = "0.11.0"

[dev-dependencies]
nix = "0.26"
vhost = { path = "../vhost", version = "0.7", features = ["test-utils", "vhost-user-master", "vhost-user-slave"] }
vm-memory = { version = "0.11.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vhost = { path = "../vhost", features = ["test-utils", "vhost-user-master", "vhost-user-slave"] }
vm-memory = { git = "https://github.com/vireshk/vm-memory", branch = "main", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
tempfile = "3.2.0"
4 changes: 2 additions & 2 deletions crates/vhost/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ bitflags = "1.0"
libc = "0.2.39"

vmm-sys-util = "0.11.0"
vm-memory = "0.11.0"
vm-memory = { git = "https://github.com/vireshk/vm-memory", branch = "main", features = ["backend-bitmap"] }

[dev-dependencies]
tempfile = "3.2.0"
vm-memory = { version = "0.11.0", features=["backend-mmap"] }
vm-memory = { git = "https://github.com/vireshk/vm-memory", branch = "main", features = ["backend-mmap"] }
serial_test = "0.5"

0 comments on commit 2ae109d

Please sign in to comment.