From ed46be9b815df70128530974917278aedbae0bd1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 22:45:18 +0000 Subject: [PATCH] build(deps): bump the rust-vmm group across 1 directory with 4 updates Bumps the rust-vmm group with 4 updates in the / directory: [kvm-bindings](https://github.com/rust-vmm/kvm), [vm-memory](https://github.com/rust-vmm/vm-memory), [linux-loader](https://github.com/rust-vmm/linux-loader) and [virtio-queue](https://github.com/rust-vmm/vm-virtio). Updates `kvm-bindings` from 0.14.0 to 0.14.1 - [Release notes](https://github.com/rust-vmm/kvm/releases) - [Commits](https://github.com/rust-vmm/kvm/compare/kvm-bindings-v0.14.0...kvm-bindings-v0.14.1) Updates `vm-memory` from 0.17.1 to 0.18.0 - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vm-memory/compare/v0.17.1...v0.18.0) Updates `linux-loader` from 0.13.2 to 0.14.0 - [Release notes](https://github.com/rust-vmm/linux-loader/releases) - [Changelog](https://github.com/rust-vmm/linux-loader/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/linux-loader/compare/v0.13.2...v0.14.0) Updates `virtio-queue` from 0.17.0 to 0.18.0 - [Release notes](https://github.com/rust-vmm/vm-virtio/releases) - [Commits](https://github.com/rust-vmm/vm-virtio/compare/virtio-queue-v0.17.0...virtio-queue-v0.18.0) --- updated-dependencies: - dependency-name: kvm-bindings dependency-version: 0.14.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm - dependency-name: vm-memory dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: linux-loader dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: virtio-queue dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 570f16f..cd4dca2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,9 +333,9 @@ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" [[package]] name = "kvm-bindings" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b3c06ff73c7ce03e780887ec2389d62d2a2a9ddf471ab05c2ff69207cd3f3b4" +checksum = "11cf0ca75d59e9d298647c59cf6c5286fa048120caa77972a7a504a0824d234f" dependencies = [ "vmm-sys-util", ] @@ -372,9 +372,9 @@ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" [[package]] name = "linux-loader" -version = "0.13.2" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de72cb02c55ecffcf75fe78295926f872eb6eb0a58d629c58a8c324dc26380f6" +checksum = "d54207cb617cd75b10c57ad20235c914ab62b180ceeff2ef3111983670d3b321" dependencies = [ "vm-memory", ] @@ -847,9 +847,9 @@ checksum = "091f1f09cfbf2a78563b562e7a949465cce1aef63b6065645188d995162f8868" [[package]] name = "virtio-queue" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e358084f32ed165fddb41d98ff1b7ff3c08b9611d8d6114a1b422e2e85688baf" +checksum = "f631bfd09362a9b17f0cfd5ca3b0a1b179d153fa276f9ce86919d560891e61d6" dependencies = [ "libc", "log", @@ -860,9 +860,9 @@ dependencies = [ [[package]] name = "vm-memory" -version = "0.17.1" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f39348a049689cabd3377cdd9182bf526ec76a6f823b79903896452e9d7a7380" +checksum = "9b55e753c7725603745cb32b2287ef7ef3da05c03c7702cda3fa8abe25ae0465" dependencies = [ "libc", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index 59fc378..7353be5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,9 +35,9 @@ sha2 = "0.10" [target.'cfg(target_os = "linux")'.dependencies] kvm-ioctls = "0.24" kvm-bindings = { version = "0.14", features = ["fam-wrappers"] } -vm-memory = { version = "0.17", features = ["backend-mmap"] } -linux-loader = { version = "0.13", features = ["bzimage", "elf"] } -virtio-queue = "0.17" +vm-memory = { version = "0.18", features = ["backend-mmap"] } +linux-loader = { version = "0.14", features = ["bzimage", "elf"] } +virtio-queue = "0.18" nix = { version = "0.31", features = ["fs", "ioctl", "mman", "net", "signal", "socket"] } io-uring = { version = "0.7", optional = true }