Skip to content

Commit

Permalink
{vhost, vhost-user-backend}: Bulk update rust-vmm dependencies
Browse files Browse the repository at this point in the history
Update dependencies to use recommended versions and version syntax.

See: rust-vmm/community#136

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
  • Loading branch information
rbradford committed Nov 16, 2022
1 parent 6078c59 commit 95fac63
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions crates/vhost-user-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ license = "Apache-2.0"
libc = "0.2.39"
log = "0.4.17"
vhost = { path = "../vhost", version = "0.5", features = ["vhost-user-slave"] }
virtio-bindings = "0.1"
virtio-queue = "0.6"
vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = "0.10"
virtio-bindings = "0.1.0"
virtio-queue = "0.7.0"
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = "0.11.0"

[dev-dependencies]
nix = "0.25"
vhost = { path = "../vhost", version = "0.5", features = ["vhost-user-master", "vhost-user-slave"] }
vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
tempfile = "3.2.0"
6 changes: 3 additions & 3 deletions crates/vhost/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ vhost-user-slave = ["vhost-user"]
bitflags = "1.0"
libc = "0.2.39"

vmm-sys-util = "0.10.0"
vm-memory = "0.9.0"
vmm-sys-util = "0.11.0"
vm-memory = "0.10.0"

[dev-dependencies]
tempfile = "3.2.0"
vm-memory = { version = "0.9.0", features=["backend-mmap"] }
vm-memory = { version = "0.10.0", features=["backend-mmap"] }
serial_test = "0.5"

0 comments on commit 95fac63

Please sign in to comment.