Skip to content

Commit 6ae940e

Browse files
dependabot[bot]Manciukic
authored andcommitted
chore(deps): Bump the rust-vmm group across 1 directory with 5 updates
Bumps the rust-vmm group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [vm-memory](https://github.com/rust-vmm/vm-memory) | `0.17.0` | `0.17.1` | | [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) | `0.14.0` | `0.15.0` | | [event-manager](https://github.com/rust-vmm/event-manager) | `0.4.1` | `0.4.2` | | [linux-loader](https://github.com/rust-vmm/linux-loader) | `0.13.1` | `0.13.2` | | [vhost](https://github.com/rust-vmm/vhost) | `0.14.0` | `0.15.0` | Updates `vm-memory` from 0.17.0 to 0.17.1 - [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.17.0...v0.17.1) Updates `vmm-sys-util` from 0.14.0 to 0.15.0 - [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases) - [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/main/CHANGELOG.md) - [Commits](rust-vmm/vmm-sys-util@v0.14.0...v0.15.0) Updates `event-manager` from 0.4.1 to 0.4.2 - [Release notes](https://github.com/rust-vmm/event-manager/releases) - [Changelog](https://github.com/rust-vmm/event-manager/blob/main/CHANGELOG.md) - [Commits](rust-vmm/event-manager@v0.4.1...v0.4.2) Updates `linux-loader` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/rust-vmm/linux-loader/releases) - [Changelog](https://github.com/rust-vmm/linux-loader/blob/main/CHANGELOG.md) - [Commits](rust-vmm/linux-loader@v0.13.1...v0.13.2) Updates `vhost` from 0.14.0 to 0.15.0 - [Release notes](https://github.com/rust-vmm/vhost/releases) - [Commits](rust-vmm/vhost@vhost-v0.14.0...vhost-v0.15.0) --- updated-dependencies: - dependency-name: vm-memory dependency-version: 0.17.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm - dependency-name: vmm-sys-util dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: event-manager dependency-version: 0.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm - dependency-name: linux-loader dependency-version: 0.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm - dependency-name: vhost dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3c10d9c commit 6ae940e

File tree

9 files changed

+47
-48
lines changed

9 files changed

+47
-48
lines changed

Cargo.lock

Lines changed: 34 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/acpi-tables/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bench = false
1515
[dependencies]
1616
displaydoc = "0.2.5"
1717
thiserror = "2.0.17"
18-
vm-memory = { version = "0.17.0", features = ["backend-mmap", "backend-bitmap"] }
18+
vm-memory = { version = "0.17.1", features = ["backend-mmap", "backend-bitmap"] }
1919
zerocopy = { version = "0.8.27", features = ["derive"] }
2020

2121
[lints]

src/cpu-template-helper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde_json = "1.0.145"
2222
thiserror = "2.0.17"
2323

2424
vmm = { path = "../vmm" }
25-
vmm-sys-util = "0.14.0"
25+
vmm-sys-util = "0.15.0"
2626

2727
[lints]
2828
workspace = true

src/firecracker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gdb = ["vmm/gdb"]
2121

2222
[dependencies]
2323
displaydoc = "0.2.5"
24-
event-manager = "0.4.1"
24+
event-manager = "0.4.2"
2525
libc = "0.2.177"
2626
log-instrument = { path = "../log-instrument", optional = true }
2727
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
@@ -32,7 +32,7 @@ thiserror = "2.0.17"
3232
timerfd = "1.6.0"
3333
utils = { path = "../utils" }
3434
vmm = { path = "../vmm" }
35-
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }
35+
vmm-sys-util = { version = "0.15.0", features = ["with-serde"] }
3636

3737
[build-dependencies]
3838
seccompiler = { path = "../seccompiler" }

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libc = "0.2.177"
1919
log-instrument = { path = "../log-instrument", optional = true }
2020
regex = { version = "1.12.2", default-features = false, features = ["std"] }
2121
thiserror = "2.0.17"
22-
vmm-sys-util = "0.14.0"
22+
vmm-sys-util = "0.15.0"
2323

2424
utils = { path = "../utils" }
2525

src/pci/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ thiserror = "2.0.17"
2121

2222
[dev-dependencies]
2323
serde_test = "1.0.177"
24-
vmm-sys-util = "0.14.0"
24+
vmm-sys-util = "0.15.0"

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ displaydoc = "0.2.5"
1717
libc = "0.2.177"
1818
log-instrument = { path = "../log-instrument", optional = true }
1919
thiserror = "2.0.17"
20-
vmm-sys-util = "0.14.0"
20+
vmm-sys-util = "0.15.0"
2121

2222
utils = { path = "../utils" }
2323

src/snapshot-editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ log-instrument = { path = "../log-instrument", optional = true }
2222
semver = "1.0.27"
2323
thiserror = "2.0.17"
2424
vmm = { path = "../vmm" }
25-
vmm-sys-util = "0.14.0"
25+
vmm-sys-util = "0.15.0"
2626

2727
[target.'cfg(target_arch = "aarch64")'.dependencies]
2828
clap-num = "1.2.0"

src/vmm/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ derive_more = { version = "2.0.1", default-features = false, features = [
2828
"display",
2929
] }
3030
displaydoc = "0.2.5"
31-
event-manager = "0.4.1"
31+
event-manager = "0.4.2"
3232
gdbstub = { version = "0.7.8", optional = true }
3333
gdbstub_arch = { version = "0.3.2", optional = true }
3434
kvm-bindings = { version = "0.14.0", features = ["fam-wrappers", "serde"] }
3535
kvm-ioctls = "0.24.0"
3636
libc = "0.2.177"
37-
linux-loader = "0.13.1"
37+
linux-loader = "0.13.2"
3838
log = { version = "0.4.28", features = ["std", "serde"] }
3939
log-instrument = { path = "../log-instrument", optional = true }
4040
memfd = "0.6.5"
@@ -49,14 +49,14 @@ timerfd = "1.5.0"
4949
userfaultfd = "0.9.0"
5050
utils = { path = "../utils" }
5151
uuid = "1.18.1"
52-
vhost = { version = "0.14.0", features = ["vhost-user-frontend"] }
52+
vhost = { version = "0.15.0", features = ["vhost-user-frontend"] }
5353
vm-allocator = { version = "0.1.3", features = ["serde"] }
54-
vm-memory = { version = "0.17.0", features = [
54+
vm-memory = { version = "0.17.1", features = [
5555
"backend-mmap",
5656
"backend-bitmap",
5757
] }
5858
vm-superio = "0.8.1"
59-
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }
59+
vmm-sys-util = { version = "0.15.0", features = ["with-serde"] }
6060
zerocopy = { version = "0.8.27" }
6161

6262
[target.'cfg(target_arch = "aarch64")'.dependencies]

0 commit comments

Comments
 (0)