Skip to content

Commit

Permalink
Update vm-memory and vmm-sys-util in virtio-queue
Browse files Browse the repository at this point in the history
vm-memory 0.9.0 -> 0.10.0
vm-sys-util 0.10.0 -> 0.11.0

Also specify the dev-dependency memoffset using a caret requirement
instead of a tilde requirement

Signed-off-by: Patrick Roy <[email protected]>
  • Loading branch information
roypat authored and andreeaflorescu committed Nov 14, 2022
1 parent ffc2b53 commit d0814e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/virtio-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ edition = "2021"
test-utils = []

[dependencies]
vm-memory = "0.9.0"
vmm-sys-util = "0.10.0"
vm-memory = "0.10.0"
vmm-sys-util = "0.11.0"
log = "0.4.17"
virtio-bindings = { path="../virtio-bindings", version = "0.1.0" }

[dev-dependencies]
criterion = "0.3.0"
vm-memory = { version = "0.9.0", features = ["backend-mmap", "backend-atomic"] }
memoffset = "~0"
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] }
memoffset = "0.7.1"

[[bench]]
name = "main"
Expand Down

0 comments on commit d0814e9

Please sign in to comment.