Skip to content

Commit 48fdf81

Browse files
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.16.2` | `0.17.0` | | [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) | `0.14.0` | `0.15.0` | | [kvm-bindings](https://github.com/rust-vmm/kvm) | `0.13.0` | `0.14.0` | | [kvm-ioctls](https://github.com/rust-vmm/kvm) | `0.23.0` | `0.24.0` | | [vm-superio](https://github.com/rust-vmm/vm-superio) | `0.8.0` | `0.8.1` | Updates `vm-memory` from 0.16.2 to 0.17.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.16.2...v0.17.0) 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 `kvm-bindings` from 0.13.0 to 0.14.0 - [Release notes](https://github.com/rust-vmm/kvm/releases) - [Commits](rust-vmm/kvm@kvm-bindings-v0.13.0...kvm-bindings-v0.14.0) Updates `kvm-ioctls` from 0.23.0 to 0.24.0 - [Release notes](https://github.com/rust-vmm/kvm/releases) - [Commits](rust-vmm/kvm@kvm-ioctls-v0.23.0...kvm-ioctls-v0.24.0) Updates `vm-superio` from 0.8.0 to 0.8.1 - [Release notes](https://github.com/rust-vmm/vm-superio/releases) - [Commits](rust-vmm/vm-superio@vm-superio-v0.8.0...vm-superio-v0.8.1) --- updated-dependencies: - dependency-name: vm-memory dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor 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: kvm-bindings dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: kvm-ioctls dependency-version: 0.24.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: vm-superio dependency-version: 0.8.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f335a0a commit 48fdf81

File tree

9 files changed

+59
-38
lines changed

9 files changed

+59
-38
lines changed

Cargo.lock

Lines changed: 47 additions & 26 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.16.2", features = ["backend-mmap", "backend-bitmap"] }
18+
vm-memory = { version = "0.17.0", 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.176"
1919
log-instrument = { path = "../log-instrument", optional = true }
2020
regex = { version = "1.11.3", 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.176"
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
@@ -33,8 +33,8 @@ displaydoc = "0.2.5"
3333
event-manager = "0.4.1"
3434
gdbstub = { version = "0.7.7", optional = true }
3535
gdbstub_arch = { version = "0.3.2", optional = true }
36-
kvm-bindings = { version = "0.13.0", features = ["fam-wrappers", "serde"] }
37-
kvm-ioctls = "0.23.0"
36+
kvm-bindings = { version = "0.14.0", features = ["fam-wrappers", "serde"] }
37+
kvm-ioctls = "0.24.0"
3838
libc = "0.2.176"
3939
linux-loader = "0.13.0"
4040
log = { version = "0.4.28", features = ["std", "serde"] }
@@ -53,12 +53,12 @@ utils = { path = "../utils" }
5353
uuid = "1.18.1"
5454
vhost = { version = "0.14.0", features = ["vhost-user-frontend"] }
5555
vm-allocator = { version = "0.1.3", features = ["serde"] }
56-
vm-memory = { version = "0.16.2", features = [
56+
vm-memory = { version = "0.17.0", features = [
5757
"backend-mmap",
5858
"backend-bitmap",
5959
] }
60-
vm-superio = "0.8.0"
61-
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }
60+
vm-superio = "0.8.1"
61+
vmm-sys-util = { version = "0.15.0", features = ["with-serde"] }
6262
zerocopy = { version = "0.8.27" }
6363

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

0 commit comments

Comments
 (0)