Skip to content

Commit 4084a91

Browse files
dependabot[bot]epilys
authored andcommitted
build(deps): update vm-memory requirement in the vm-virtio group
Updates the requirements on [vm-memory](https://github.com/rust-vmm/vm-memory) to permit the latest version. Updates `vm-memory` to 0.15.0 - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md) - [Commits](rust-vmm/vm-memory@v0.14.0...v0.15.0) --- updated-dependencies: - dependency-name: vm-memory dependency-type: direct:production dependency-group: vm-virtio ... Signed-off-by: dependabot[bot] <support@github.com> [SG: update also fuzz/Cargo.toml and fuzz/common/Cargo.toml] Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
1 parent 2c3b285 commit 4084a91

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ memfd = "0.6.3"
2020
virtio-queue = { path = "../virtio-queue", features = ["test-utils"] }
2121
virtio-vsock = { path = "../virtio-vsock" }
2222
virtio-queue-ser = { path = "../virtio-queue-ser" }
23-
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
23+
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }
2424
common = { path = "common" }
2525
virtio-blk = { path = "../virtio-blk", features = ["backend-stdio"] }
2626

fuzz/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ virtio-queue = { path = "../../virtio-queue", features = ["test-utils"] }
1313
virtio-vsock = { path = "../../virtio-vsock" }
1414
virtio-queue-ser = { path = "../../virtio-queue-ser" }
1515
virtio-blk = { path = "../../virtio-blk" }
16-
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
16+
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }

virtio-blk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ edition = "2021"
1313
backend-stdio = []
1414

1515
[dependencies]
16-
vm-memory = "0.14.0"
16+
vm-memory = "0.15.0"
1717
vmm-sys-util = "0.12.1"
1818
log = "0.4.17"
1919
virtio-queue = { path = "../virtio-queue" }
2020
virtio-device = { path = "../virtio-device" }
2121
virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" }
2222

2323
[dev-dependencies]
24-
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
24+
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }
2525
virtio-queue = { path = "../virtio-queue", features = ["test-utils"] }

virtio-console/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ edition = "2021"
1414
[dependencies]
1515
virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" }
1616
virtio-queue = { path = "../virtio-queue", version = "0.12.0" }
17-
vm-memory = "0.14.0"
17+
vm-memory = "0.15.0"
1818

1919
[dev-dependencies]
2020
virtio-queue = { path = "../virtio-queue", version = "0.12.0", features = ["test-utils"] }
21-
vm-memory = { version = "0.14.0", features = ["backend-mmap"] }
21+
vm-memory = { version = "0.15.0", features = ["backend-mmap"] }

virtio-device/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ license = "Apache-2.0 OR MIT"
1010
edition = "2021"
1111

1212
[dependencies]
13-
vm-memory = "0.14.0"
13+
vm-memory = "0.15.0"
1414
log = "0.4.17"
1515
virtio-bindings = { path = "../virtio-bindings" }
1616
virtio-queue = { path = "../virtio-queue", version = "0.12.0"}
1717

1818
[dev-dependencies]
19-
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
19+
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }

virtio-queue-ser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ versionize_derive = "0.1.3"
1919
# to prevent accidental changes to the serializer output in a patch release of
2020
# virtio-queue.
2121
virtio-queue = { path = "../virtio-queue", version = "=0.12.0" }
22-
vm-memory = "0.14.0"
22+
vm-memory = "0.15.0"
2323

2424
[dev-dependencies]
2525
virtio-queue = { path = "../virtio-queue", version = "=0.12.0", features = ["test-utils"] }

virtio-queue/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ edition = "2021"
1313
test-utils = []
1414

1515
[dependencies]
16-
vm-memory = "0.14.0"
16+
vm-memory = "0.15.0"
1717
vmm-sys-util = "0.12.1"
1818
log = "0.4.17"
1919
virtio-bindings = { path="../virtio-bindings", version = "0.2.2" }
2020

2121
[dev-dependencies]
2222
criterion = "0.5.1"
23-
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
23+
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }
2424
memoffset = "0.9.0"
2525

2626
[[bench]]

virtio-vsock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ edition = "2021"
1313
# The `path` part gets stripped when publishing the crate.
1414
virtio-queue = { path = "../virtio-queue", version = "0.12.0" }
1515
virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" }
16-
vm-memory = "0.14.0"
16+
vm-memory = "0.15.0"
1717

1818
[dev-dependencies]
1919
virtio-queue = { path = "../virtio-queue", version = "0.12.0", features = ["test-utils"] }
20-
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
20+
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }

0 commit comments

Comments
 (0)