Skip to content

Commit f27d167

Browse files
stefano-garzarellaepilys
authored andcommitted
Update vm-memory to 0.14.0
vm-memory was just updated for dependency with `vmm-sys-util` where a security issue was fixed. Let's also update the coverage, which after this dependency update (without touching code) went down slightly (-0.93%). Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
1 parent 4758e4f commit f27d167

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

coverage_config_x86_64.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"coverage_score": 86.98,
2+
"coverage_score": 86.05,
33
"exclude_path": "virtio-bindings|virtio-queue/src/mock\\.rs",
44
"crate_features": "virtio-blk/backend-stdio"
55
}

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.13.1", features = ["backend-mmap", "backend-atomic"] }
23+
vm-memory = { version = "0.14.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.13.1", features = ["backend-mmap", "backend-atomic"] }
16+
vm-memory = { version = "0.14.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.13.1"
16+
vm-memory = "0.14.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.13.1", features = ["backend-mmap", "backend-atomic"] }
24+
vm-memory = { version = "0.14.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.10.0" }
17-
vm-memory = "0.13.1"
17+
vm-memory = "0.14.0"
1818

1919
[dev-dependencies]
2020
virtio-queue = { path = "../virtio-queue", version = "0.10.0", features = ["test-utils"] }
21-
vm-memory = { version = "0.13.1", features = ["backend-mmap"] }
21+
vm-memory = { version = "0.14.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.13.1"
13+
vm-memory = "0.14.0"
1414
log = "0.4.17"
1515
virtio-bindings = { path = "../virtio-bindings" }
1616
virtio-queue = { path = "../virtio-queue", version = "0.10.0"}
1717

1818
[dev-dependencies]
19-
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic"] }
19+
vm-memory = { version = "0.14.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.10.0" }
22-
vm-memory = "0.13.1"
22+
vm-memory = "0.14.0"
2323

2424
[dev-dependencies]
2525
virtio-queue = { path = "../virtio-queue", version = "=0.10.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.13.1"
16+
vm-memory = "0.14.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.13.1", features = ["backend-mmap", "backend-atomic"] }
23+
vm-memory = { version = "0.14.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.10.0" }
1515
virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" }
16-
vm-memory = "0.13.1"
16+
vm-memory = "0.14.0"
1717

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

0 commit comments

Comments
 (0)