Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps the rust-vmm group with 9 updates in the / directory:

Package From To
kvm-bindings 0.12.1 0.14.0
kvm-ioctls 0.22.1 0.24.0
linux-loader 0.13.1 0.13.2
vhost 0.14.0 0.15.0
vhost-user-backend 0.20.0 0.21.0
virtio-queue 0.16.0 0.17.0
vm-memory 0.16.2 0.18.0
vmm-sys-util 0.14.0 0.15.0
micro_http 3248cee 5c2254d

Bumps the rust-vmm group with 8 updates in the /fuzz directory:

Package From To
kvm-bindings 0.12.1 0.14.0
kvm-ioctls 0.22.1 0.24.0
linux-loader 0.13.1 0.13.2
vhost 0.14.0 0.15.0
virtio-queue 0.16.0 0.17.0
vm-memory 0.16.2 0.18.0
vmm-sys-util 0.14.0 0.15.0
micro_http 3248cee 5c2254d

Updates kvm-bindings from 0.12.1 to 0.14.0

Release notes

Sourced from kvm-bindings's releases.

kvm-bindings-v0.14.0

Changelog

v0.14.0

Changed

  • Update to Rust edition 2024

kvm-bindings-v0.13.0

Changelog

v0.13.0

Added

Changed

  • Regenerate bindings from Linux kernel v6.15.
Commits

Updates kvm-ioctls from 0.22.1 to 0.24.0

Release notes

Sourced from kvm-ioctls's releases.

kvm-ioctls-v0.24.0

Changelog

v0.24.0

Added

  • Plumb through KVM_CAP_X2APIC_API as X2ApicApi cap.
  • [#334](rust-vmm/kvm#334) Added support for KVM_HAS_DEVICE_ATTR and KVM_SET_DEVICE_ATTR vm ioctl on aarch64.

Changed

  • Update to Rust edition 2024
  • Update to kvm-bindings 0.14.0

kvm-ioctls-v0.23.0

Changelog

v0.23.0

Added

  • [#322](rust-vmm/kvm#322) Added VcpuFd::nested_state()and VcpuFd::set_nested_state() to work with nested KVM state. Only works on x86. The helper type KvmNestedStateBuffermakes these new functions easily usable.

Changed

  • Upgrade kvm-bindings to v0.13.0
Commits

Updates linux-loader from 0.13.1 to 0.13.2

Changelog

Sourced from linux-loader's changelog.

[v0.13.2]

Changed

  • [#214] Updated vm-memory to 0.17.1.
Commits
  • c71d161 chore: Prepare 0.13.2 release
  • 32c67f7 build(deps): update vm-memory requirement <=0.17.1
  • 5de88c9 fix(dependabot): Adopt dependabot configs from rust-vmm-ci
  • 81e9664 fix(test): make dev-deps and deps version ranges match
  • See full diff in compare view

Updates vhost from 0.14.0 to 0.15.0

Release notes

Sourced from vhost's releases.

vhost-user-backend v0.15.0

Changed

vhost v0.15.0

Added

Changed

Fixed

Commits
  • d2caea1 vhost: Prepare v0.15.0 release
  • 1d39cf5 build(deps): bump the vhost group across 1 directory with 2 updates
  • 024213c build(deps): bump rust-vmm-ci from 1b48931 to b4bb768
  • 6283571 fix documentation build on docs.rs
  • f979631 fix cargo doc CI step
  • b222aac revert to using normal rust-vmm-ci tests
  • cf91d1d configure cargo-all-features
  • 2cc12f6 vhost: fix unused function warnings on some feature combos
  • 93b2773 vhost: fix undefined behavior in get_vring_base()
  • 5d57b5d chore: update rust-vmm-ci
  • Additional commits viewable in compare view

Updates vhost-user-backend from 0.20.0 to 0.21.0

Release notes

Sourced from vhost-user-backend's releases.

vhost-user-backend v0.21.0

Changed

Commits
  • 52b8d40 vhost-user: prepare v0.21.0 release
  • d2caea1 vhost: Prepare v0.15.0 release
  • 1d39cf5 build(deps): bump the vhost group across 1 directory with 2 updates
  • 024213c build(deps): bump rust-vmm-ci from 1b48931 to b4bb768
  • 6283571 fix documentation build on docs.rs
  • f979631 fix cargo doc CI step
  • b222aac revert to using normal rust-vmm-ci tests
  • cf91d1d configure cargo-all-features
  • 2cc12f6 vhost: fix unused function warnings on some feature combos
  • 93b2773 vhost: fix undefined behavior in get_vring_base()
  • Additional commits viewable in compare view

Updates virtio-queue from 0.16.0 to 0.17.0

Release notes

Sourced from virtio-queue's releases.

virtio-queue-v0.17.0

virtio-queue v0.17.0

Changed

  • Updated vm-memory from 0.16.0 to 0.17.1
Commits
  • ec17cad virtio-queue: Prepare v0.17.0 release
  • e610eb7 virtio-queue: disable verify_add_used proof
  • ee413bc virtio-queue: stubregion now uses new vm-memory interface
  • 67f9878 build(deps): update vm-memory requirement in the vm-virtio group
  • 9edfa57 build(deps): bump rust-vmm-ci from 1b48931 to 042b206
  • 12d4038 build(deps): bump rust-vmm-ci from 3e24835 to 1b48931
  • d6412c6 build(deps): bump rust-vmm-ci from c0f5d4c to 3e24835
  • 17d4b2c virtio-queue: fix hyperlink in documentation
  • c7588be build(deps): bump rust-vmm-ci from fc4584d to c0f5d4c
  • 57ad18a virtio-bindings: Fix powerpc64 bindings
  • Additional commits viewable in compare view

Updates vm-memory from 0.16.2 to 0.18.0

Changelog

Sourced from vm-memory's changelog.

0.18.0

Changed

This release includes a major change to the vm-memory API in order to support memory access permissions. The previous GuestMemory trait is now renamed to GuestMemoryBackend, and GuestMemory has a completely new definition. However, common interfaces such as GuestAddressSpace and Bytes remain on GuestMemory; therefore, all callers that just use the Bytes interface remain completely unchanged.

  • [#362] Rename GuestMemory to GuestMemoryBackend, IoMemory to GuestMemory

Added

  • [#327] I/O virtual memory support via IoMemory, IommuMemory, and Iommu/Iotlb

Fixed

  • [#361] clippy: allow mut_from_ref

[v0.17.1]

No visible changes.

[v0.17.0]

Added

  • [#311] Allow compiling without the ReadVolatile and WriteVolatile implementations
  • [#312] GuestRegionContainer, a generic container of GuestMemoryRegions, generalizing GuestMemoryMmap (which is now a type alias for GuestRegionContainer<GuestRegionMmap>).
  • [#338] Make GuestMemoryAtomic always implement Clone.
  • [#338] Make GuestAddressSpace a subtrait of Clone.
  • [#339] Add GuestMemory::get_slices()

Changed

  • [#307] Move read_volatile_from, read_exact_volatile_from, write_volatile_to and write_all_volatile_to functions from the GuestMemory trait to the Bytes trait.
  • [#312]: Give GuestMemory::find_region and GuestMemory::num_regions a default implementation, based on linear search.
  • [#312]: Provide a marker trait, GuestMemoryRegionBytes, which enables a default implementation of Bytes<MemoryRegionAddress> for a GuestMemoryRegion if implemented.
  • [#312]: Adjust error types returned from GuestMemoryMmap::from_ranges[_with_files] and GuestRegionMmap::from_range to be separate from the error type returned by GuestRegionCollection functions. Change return type of GuestRegionMmap::new from Result to Option.
  • [VMM thread simplification #324](rust-vmm/vm-memory#324 GuestMemoryRegion::bitmap() now returns a BitmapSlice. Accessing the full bitmap is now possible only if the type of the memory region is know, for example with MmapRegion::bitmap().
  • [#339] Implement Bytes::load() and Bytes::store() with get_slices() instead of to_region_addr()

... (truncated)

Commits
  • b6404d2 Bump version to 0.18.0
  • 3e868f1 Emphasize GuestMemory more in the documentation
  • da8fc34 Reformat after the rename
  • f5c882e The small rename - iterators
  • 7e7cad2 The great rename
  • fed3a63 chore: update coverage
  • 91220ed chore: fix clippy lints/cargo warnings
  • 3cdd259 build(deps): bump rust-vmm-ci from 042b206 to b4bb768
  • 8c4c815 Have SimpleIommu depend on backend-mmap
  • 4ce4235 clippy: allow mut_from_ref
  • Additional commits viewable in compare view

Updates vmm-sys-util from 0.14.0 to 0.15.0

Release notes

Sourced from vmm-sys-util's releases.

vmm-sys-util-v0.15.0

Changelog

v0.15.0

Added

  • [#245]: Make sock_ctrl_msg support non-linux unix platforms.
  • [#244]:
    • Impl IntoRawFd for linux::eventfd::EventFd.
    • Use File::try_clone to replace the original implementation of EventFd::try_clone. Some flags can now be propagated, like CLOEXEC.
    • Add EventNotifier and EventConsumer as a generic event notification
Changelog

Sourced from vmm-sys-util's changelog.

v0.15.0

Added

  • [#245]: Make sock_ctrl_msg support non-linux unix platforms.
  • [#244]:
    • Impl IntoRawFd for linux::eventfd::EventFd.
    • Use File::try_clone to replace the original implementation of EventFd::try_clone. Some flags can now be propagated, like CLOEXEC.
    • Add EventNotifier and EventConsumer as a generic event notification
Commits
  • a64b4ef ci: add crates.io publish workflow
  • 6d9bb0c Prepare v0.15.0 release
  • 804dde6 refactor: Avoid passing RawFds, and thus some unsafe
  • abd6488 refactor(test): avoid unhelpful panics
  • 3b39436 eventfd: use stdlib instead of libc::{read,write}
  • 08fbd6d sock_ctrl_msg: fix doc example
  • ee71906 sock_ctrl_msg: treat cmsghdr as FamStruct
  • 2ced212 sock_ctrl_msg: Drop unneeded loop
  • f6267bf fix: return ENOBUFS if CMSG_TRUNC is set always
  • 2167111 test: merge test cases in sock_ctrl_msg.rs
  • Additional commits viewable in compare view

Updates micro_http from 3248cee to 5c2254d

Commits
  • 5c2254d chore: fix lifetime related warning
  • 87d0d80 chore: update vmm-sys-util to 0.15.0
  • 936b18f chore: fix doc comments
  • 9e748fd Bump rust-vmm-ci from fc4584d to 042b206
  • See full diff in compare view

Updates kvm-bindings from 0.12.1 to 0.14.0

Release notes

Sourced from kvm-bindings's releases.

kvm-bindings-v0.14.0

Changelog

v0.14.0

Changed

  • Update to Rust edition 2024

kvm-bindings-v0.13.0

Changelog

v0.13.0

Added

Changed

  • Regenerate bindings from Linux kernel v6.15.
Commits

Updates kvm-ioctls from 0.22.1 to 0.24.0

Release notes

Sourced from kvm-ioctls's releases.

kvm-ioctls-v0.24.0

Changelog

v0.24.0

Added

  • Plumb through KVM_CAP_X2APIC_API as X2ApicApi cap.
  • [#334](rust-vmm/kvm#334) Added support for KVM_HAS_DEVICE_ATTR and KVM_SET_DEVICE_ATTR vm ioctl on aarch64.

Changed

  • Update to Rust edition 2024
  • Update to kvm-bindings 0.14.0

kvm-ioctls-v0.23.0

Changelog

v0.23.0

Added

  • [#322](rust-vmm/kvm#322) Added VcpuFd::nested_state()and VcpuFd::set_nested_state() to work with nested KVM state. Only works on x86. The helper type KvmNestedStateBuffermakes these new functions easily usable.

Changed

  • Upgrade kvm-bindings to v0.13.0
Commits

Updates linux-loader from 0.13.1 to 0.13.2

Changelog

Sourced from linux-loader's changelog.

[v0.13.2]

Changed

  • [#214] Updated vm-memory to 0.17.1.
Commits
  • c71d161 chore: Prepare 0.13.2 release
  • 32c67f7 build(deps): update vm-memory requirement <=0.17.1
  • 5de88c9 fix(dependabot): Adopt dependabot configs from rust-vmm-ci
  • 81e9664 fix(test): make dev-deps and deps version ranges match
  • See full diff in compare view

Updates vhost from 0.14.0 to 0.15.0

Release notes

Sourced from vhost's releases.

vhost-user-backend v0.15.0

Changed

vhost v0.15.0

Added

Changed

Fixed

Commits
  • d2caea1 vhost: Prepare v0.15.0 release
  • 1d39cf5 build(deps): bump the vhost group across 1 directory with 2 updates
  • 024213c build(deps): bump rust-vmm-ci from 1b48931 to b4bb768
  • 6283571 fix documentation build on docs.rs
  • f979631 fix cargo doc CI step
  • b222aac revert to using normal rust-vmm-ci tests
  • cf91d1d configure cargo-all-features
  • 2cc12f6 vhost: fix unused function warnings on some feature combos
  • 93b2773 vhost: fix undefined behavior in get_vring_base()
  • 5d57b5d chore: update rust-vmm-ci
  • Additional commits viewable in compare view

Updates virtio-queue from 0.16.0 to 0.17.0

Release notes

Sourced from virtio-queue's releases.

virtio-queue-v0.17.0

virtio-queue v0.17.0

Changed

  • Updated vm-memory from 0.16.0 to 0.17.1
Commits
  • ec17cad virtio-queue: Prepare v0.17.0 release
  • e610eb7 virtio-queue: disable verify_add_used proof
  • ee413bc virtio-queue: stubregion now uses new vm-memory interface
  • 67f9878 build(deps): update vm-memory requirement in the vm-virtio group
  • 9edfa57 build(deps): bump rust-vmm-ci from 1b48931 to 042b206
  • 12d4038 build(deps): bump rust-vmm-ci from 3e24835 to 1b48931
  • d6412c6 build(deps): bump rust-vmm-ci from c0f5d4c to 3e24835
  • 17d4b2c virtio-queue: fix hyperlink in documentation
  • c7588be build(deps): bump rust-vmm-ci from fc4584d to c0f5d4c
  • 57ad18a virtio-bindings: Fix powerpc64 bindings
  • Additional commits viewable in compare view

Updates vm-memory from 0.16.2 to 0.18.0

Changelog

Sourced from vm-memory's changelog.

0.18.0

Changed

This release includes a major change to the vm-memory API in order to support memory access permissions. The previous GuestMemory trait is now renamed to GuestMemoryBackend, and GuestMemory has a completely new definition. However, common interfaces such as GuestAddressSpace and Bytes remain on GuestMemory; therefore, all callers that just use the Bytes interface remain completely unchanged.

  • [#362] Rename GuestMemory to GuestMemoryBackend, IoMemory to GuestMemory

Added

  • [#327] I/O virtual memory support via IoMemory, IommuMemory, and Iommu/Iotlb

Fixed

  • [#361] clippy: allow mut_from_ref

[v0.17.1]

No visible changes.

[v0.17.0]

Added

  • [#311] Allow compiling without the ReadVolatile and WriteVolatile implementations
  • [#312] GuestRegionContainer, a generic container of GuestMemoryRegions, generalizing GuestMemoryMmap (which is now a type alias for GuestRegionContainer<GuestRegionMmap>).
  • [#338] Make GuestMemoryAtomic always implement Clone.
  • [#338] Make GuestAddressSpace a subtrait of Clone.
  • [#339] Add GuestMemory::get_slices()

Changed

  • [#307] Move read_volatile_from, read_exact_volatile_from, write_volatile_to and write_all_volatile_to functions from the GuestMemory trait to the Bytes trait.
  • [#312]: Give GuestMemory::find_region and GuestMemory::num_regions a default implementation, based on linear search.
  • [#312]: Provide a marker trait, GuestMemoryRegionBytes, which enables a default implementation of Bytes<MemoryRegionAddress> for a GuestMemoryRegion if implemented.
  • [#312]: Adjust error types returned from GuestMemoryMmap::from_ranges[_with_files] and GuestRegionMmap::from_range to be separate from the error type returned by GuestRegionCollection functions. Change return type of GuestRegionMmap::new from Result to Option.
  • [VMM thread simplification #324](rust-vmm/vm-memory#324 GuestMemoryRegion::bitmap() now returns a BitmapSlice. Accessing the full bitmap is now possible only if the type of the memory region is know, for example with MmapRegion::bitmap().
  • [#339] Implement Bytes::load() and Bytes::store() with get_slices() instead of to_region_addr()

... (truncated)

Commits
  • b6404d2 Bump version to 0.18.0
  • 3e868f1 Emphasize GuestMemory more in the documentation
  • da8fc34 Reformat after the rename
  • f5c882e The small rename - iterators
  • 7e7cad2 The great rename
  • fed3a63 chore: update coverage
  • 91220ed chore: fix clippy lints/cargo warnings
  • 3cdd259 build(deps): bump rust-vmm-ci from 042b206 to b4bb768
  • 8c4c815 Have SimpleIommu depend on backend-mmap
  • 4ce4235 clippy: allow mut_from_ref
  • Additional commits viewable in compare view

Updates vmm-sys-util from 0.14.0 to 0.15.0

Release notes

Sourced from vmm-sys-util's releases.

vmm-sys-util-v0.15.0

Changelog

v0.15.0

Added

  • [#245]: Make sock_ctrl_msg support non-linux unix platforms.
  • [#244]:
    • Impl IntoRawFd for linux::eventfd::EventFd.
    • Use File::try_clone to replace the original implementation of EventFd::try_clone. Some flags can now be propagated, like CLOEXEC.
    • Add EventNotifier and EventConsumer as a generic event notification
Changelog

Sourced from vmm-sys-util's changelog.

v0.15.0

Added

  • [#245]: Make sock_ctrl_msg support non-linux unix platforms.
  • [#244]:
    • Impl IntoRawFd for linux::eventfd::EventFd.
    • Use File::try_clone to replace the original implementation of EventFd::try_clone. Some flags can now be propagated, like CLOEXEC.
    • Add EventNotifier and EventConsumer as a generic event notification
Commits
  • a64b4ef ci: add crates.io publish workflow
  • 6d9bb0c Prepare v0.15.0 release
  • 804dde6 refactor: Avoid passing RawFds, and thus some unsafe
  • abd6488 refactor(test): avoid unhelpful panics
  • 3b39436 eventfd: use stdlib instead of libc::{read,write}
  • 08fbd6d sock_ctrl_msg: fix doc example
  • ee71906 sock_ctrl_msg: treat cmsghdr as FamStruct
  • 2ced212 sock_ctrl_msg: Drop unneeded loop
  • f6267bf fix: return ENOBUFS if CMSG_TRUNC is set always
  • 2167111 test: merge test cases in sock_ctrl_msg.rs
  • Additional commits viewable in compare view

Updates micro_http from 3248cee to 5c2254d

Commits
  • 5c2254d chore: fix lifetime related warning
  • 87d0d80 chore: update vmm-sys-util to 0.15.0
  • 936b18f chore: fix doc comments
  • 9e748fd Bump rust-vmm-ci from fc4584d to 042b206
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

Dependabot will merge this PR once CI passes on it, as requested by @cloud-hypervisor-bot.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Dec 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 22, 2025 23:24
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Dec 22, 2025
Copy link

@cloud-hypervisor-bot cloud-hypervisor-bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Beep boop! I am also a 🤖 - let's join forces!

@dependabot merge

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 22, 2025

Beginning January 27, 2026, Dependabot will no longer support the @dependabot merge command. Please use GitHub's native pull request controls instead. Please see the changelog announcement for additional details.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 22, 2025

One of your CI runs failed on this pull request, so Dependabot won't merge it.

Dependabot will still automatically merge this pull request if you amend it and your tests pass.

Bumps the rust-vmm group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [kvm-bindings](https://github.com/rust-vmm/kvm) | `0.12.1` | `0.14.0` |
| [kvm-ioctls](https://github.com/rust-vmm/kvm-ioctls) | `0.22.1` | `0.24.0` |
| [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` |
| [vhost-user-backend](https://github.com/rust-vmm/vhost) | `0.20.0` | `0.21.0` |
| [virtio-queue](https://github.com/rust-vmm/vm-virtio) | `0.16.0` | `0.17.0` |
| [vm-memory](https://github.com/rust-vmm/vm-memory) | `0.16.2` | `0.18.0` |
| [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) | `0.14.0` | `0.15.0` |
| [micro_http](https://github.com/firecracker-microvm/micro-http) | ``3248cee`` | ``5c2254d`` |

Bumps the rust-vmm group with 8 updates in the /fuzz directory:

| Package | From | To |
| --- | --- | --- |
| [kvm-bindings](https://github.com/rust-vmm/kvm) | `0.12.1` | `0.14.0` |
| [kvm-ioctls](https://github.com/rust-vmm/kvm-ioctls) | `0.22.1` | `0.24.0` |
| [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` |
| [virtio-queue](https://github.com/rust-vmm/vm-virtio) | `0.16.0` | `0.17.0` |
| [vm-memory](https://github.com/rust-vmm/vm-memory) | `0.16.2` | `0.18.0` |
| [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) | `0.14.0` | `0.15.0` |
| [micro_http](https://github.com/firecracker-microvm/micro-http) | ``3248cee`` | ``5c2254d`` |



Updates `kvm-bindings` from 0.12.1 to 0.14.0
- [Release notes](https://github.com/rust-vmm/kvm/releases)
- [Commits](rust-vmm/kvm@kvm-ioctls-v0.12.1...kvm-bindings-v0.14.0)

Updates `kvm-ioctls` from 0.22.1 to 0.24.0
- [Release notes](https://github.com/rust-vmm/kvm-ioctls/releases)
- [Commits](https://github.com/rust-vmm/kvm-ioctls/commits/kvm-ioctls-v0.24.0)

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)

Updates `vhost-user-backend` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/rust-vmm/vhost/releases)
- [Commits](rust-vmm/vhost@vhost-user-backend-v0.20.0...vhost-user-backend-v0.21.0)

Updates `virtio-queue` from 0.16.0 to 0.17.0
- [Release notes](https://github.com/rust-vmm/vm-virtio/releases)
- [Commits](rust-vmm/vm-virtio@virtio-queue-v0.16.0...virtio-queue-v0.17.0)

Updates `vm-memory` from 0.16.2 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](rust-vmm/vm-memory@v0.16.2...v0.18.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 `micro_http` from `3248cee` to `5c2254d`
- [Commits](firecracker-microvm/micro-http@3248cee...5c2254d)

Updates `kvm-bindings` from 0.12.1 to 0.14.0
- [Release notes](https://github.com/rust-vmm/kvm/releases)
- [Commits](rust-vmm/kvm@kvm-ioctls-v0.12.1...kvm-bindings-v0.14.0)

Updates `kvm-ioctls` from 0.22.1 to 0.24.0
- [Release notes](https://github.com/rust-vmm/kvm-ioctls/releases)
- [Commits](https://github.com/rust-vmm/kvm-ioctls/commits/kvm-ioctls-v0.24.0)

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)

Updates `virtio-queue` from 0.16.0 to 0.17.0
- [Release notes](https://github.com/rust-vmm/vm-virtio/releases)
- [Commits](rust-vmm/vm-virtio@virtio-queue-v0.16.0...virtio-queue-v0.17.0)

Updates `vm-memory` from 0.16.2 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](rust-vmm/vm-memory@v0.16.2...v0.18.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 `micro_http` from `3248cee` to `5c2254d`
- [Commits](firecracker-microvm/micro-http@3248cee...5c2254d)

---
updated-dependencies:
- 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: 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
- dependency-name: vhost-user-backend
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
- dependency-name: virtio-queue
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: vmm-sys-util
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
- dependency-name: micro_http
  dependency-version: 5c2254d6cf4f32a668d0d8e57ba20bebad9d4fba
  dependency-type: direct:production
  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: 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
- dependency-name: virtio-queue
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: vmm-sys-util
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
- dependency-name: micro_http
  dependency-version: 5c2254d6cf4f32a668d0d8e57ba20bebad9d4fba
  dependency-type: direct:production
  dependency-group: rust-vmm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-vmm-d61fb671fd branch from 18c7bc1 to feee8a3 Compare December 29, 2025 23:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants