Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Bumps the rust-vmm group with 2 updates in the / directory: vm-memory and vmm-sys-util.
Bumps the rust-vmm group with 2 updates in the /staging directory: vm-memory and vmm-sys-util.

Updates vm-memory from 0.16.2 to 0.17.1

Changelog

Sourced from vm-memory's changelog.

[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.
  • [vsock: make TX buffer size configurable #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()

Removed

  • [#307] Remove deprecated functions Bytes::read_from, Bytes::read_exact_from, Bytes::write_to, Bytes::write_all_to, GuestMemory::as_slice, GuestMemory::as_slice_mut, GuestMemory::with_regions, GuestMemory::with_regions_mut, GuestMemory::map_and_fold, VolatileSlice::as_ptr, VolatileRef::as_ptr, and VolatileArrayRef::as_ptr.
  • [#320] Drop check_file_offset check when using MmapRegionBuilder. The mmap(2) syscall itself already validates that offset and length are valid, and trying to replicate this check in userspace ended up being imperfect.

Fixed

  • [#339] Fix Bytes::read() and Bytes::write() not to ignore try_access()'s count parameter

Deprecated

  • [#349] Deprecate GuestMemory::try_access(). Use GuestMemory::get_slices() instead.

[v0.16.1]

Added

... (truncated)

Commits
  • 75f3b2c Prepare for 0.17.1 release
  • dea9e19 fix(doc): un-break docs.rs build
  • 17b714c setup trusted publishing
  • 53b711b prepare 0.17.0 release
  • b8401e6 Update CODEOWNERS
  • ebfefb0 windows: be more explicit about unsupported features
  • fc55ed0 fix(windows): enable dep:winapi crate with backend-bitmap
  • 4a8f22b windows: make tests work with only feature backend-mmap
  • 4a8c9ce windows: remove unused imports
  • f49e23e test: check windows build
  • 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 vm-memory from 0.16.2 to 0.17.1

Changelog

Sourced from vm-memory's changelog.

[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.
  • [vsock: make TX buffer size configurable #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()

Removed

  • [#307] Remove deprecated functions Bytes::read_from, Bytes::read_exact_from, Bytes::write_to, Bytes::write_all_to, GuestMemory::as_slice, GuestMemory::as_slice_mut, GuestMemory::with_regions, GuestMemory::with_regions_mut, GuestMemory::map_and_fold, VolatileSlice::as_ptr, VolatileRef::as_ptr, and VolatileArrayRef::as_ptr.
  • [#320] Drop check_file_offset check when using MmapRegionBuilder. The mmap(2) syscall itself already validates that offset and length are valid, and trying to replicate this check in userspace ended up being imperfect.

Fixed

  • [#339] Fix Bytes::read() and Bytes::write() not to ignore try_access()'s count parameter

Deprecated

  • [#349] Deprecate GuestMemory::try_access(). Use GuestMemory::get_slices() instead.

[v0.16.1]

Added

... (truncated)

Commits
  • 75f3b2c Prepare for 0.17.1 release
  • dea9e19 fix(doc): un-break docs.rs build
  • 17b714c setup trusted publishing
  • 53b711b prepare 0.17.0 release
  • b8401e6 Update CODEOWNERS
  • ebfefb0 windows: be more explicit about unsupported features
  • fc55ed0 fix(windows): enable dep:winapi crate with backend-bitmap
  • 4a8f22b windows: make tests work with only feature backend-mmap
  • 4a8c9ce windows: remove unused imports
  • f49e23e test: check windows build
  • 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 vm-memory from 0.16.2 to 0.17.1

Changelog

Sourced from vm-memory's changelog.

[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.
  • [vsock: make TX buffer size configurable #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()

Removed

  • [#307] Remove deprecated functions Bytes::read_from, Bytes::read_exact_from, Bytes::write_to, Bytes::write_all_to, GuestMemory::as_slice, GuestMemory::as_slice_mut, GuestMemory::with_regions, GuestMemory::with_regions_mut, GuestMemory::map_and_fold, VolatileSlice::as_ptr, VolatileRef::as_ptr, and VolatileArrayRef::as_ptr.
  • [#320] Drop check_file_offset check when using MmapRegionBuilder. The mmap(2) syscall itself already validates that offset and length are valid, and trying to replicate this check in userspace ended up being imperfect.

Fixed

  • [#339] Fix Bytes::read() and Bytes::write() not to ignore try_access()'s count parameter

Deprecated

  • [#349] Deprecate GuestMemory::try_access(). Use GuestMemory::get_slices() instead.

[v0.16.1]

Added

... (truncated)

Commits
  • 75f3b2c Prepare for 0.17.1 release
  • dea9e19 fix(doc): un-break docs.rs build
  • 17b714c setup trusted publishing
  • 53b711b prepare 0.17.0 release
  • b8401e6 Update CODEOWNERS
  • ebfefb0 windows: be more explicit about unsupported features
  • fc55ed0 fix(windows): enable dep:winapi crate with backend-bitmap
  • 4a8f22b windows: make tests work with only feature backend-mmap
  • 4a8c9ce windows: remove unused imports
  • f49e23e test: check windows build
  • 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 vm-memory from 0.16.2 to 0.17.1

Changelog

Sourced from vm-memory's changelog.

[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.
  • [vsock: make TX buffer size configurable #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()

Removed

  • [#307] Remove deprecated functions Bytes::read_from, Bytes::read_exact_from, Bytes::write_to, Bytes::write_all_to, GuestMemory::as_slice, GuestMemory::as_slice_mut, GuestMemory::with_regions, GuestMemory::with_regions_mut, GuestMemory::map_and_fold, VolatileSlice::as_ptr, VolatileRef::as_ptr, and VolatileArrayRef::as_ptr.
  • [#320] Drop check_file_offset check when using MmapRegionBuilder. The mmap(2) syscall itself already validates that offset and length are valid, and trying to replicate this check in userspace ended up being imperfect.

Fixed

  • [#339] Fix Bytes::read() and Bytes::write() not to ignore try_access()'s count parameter

Deprecated

  • [#349] Deprecate GuestMemory::try_access(). Use GuestMemory::get_slices() instead.

[v0.16.1]

Added

... (truncated)

Commits
  • 75f3b2c Prepare for 0.17.1 release
  • dea9e19 fix(doc): un-break docs.rs build
  • 17b714c setup trusted publishing
  • 53b711b prepare 0.17.0 release
  • b8401e6 Update CODEOWNERS
  • ebfefb0 windows: be more explicit about unsupported features
  • fc55ed0 fix(windows): enable dep:winapi crate with backend-bitmap
  • 4a8f22b windows: make tests work with only feature backend-mmap
  • 4a8c9ce windows: remove unused imports
  • f49e23e test: check windows build
  • 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

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 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 Oct 13, 2025
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 13, 2025
@dependabot dependabot bot added the rust Pull requests that update Rust code label Oct 13, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-vmm-39caedb8ff branch from dedb3fd to f35ba09 Compare October 13, 2025 09:18
stsquad
stsquad previously approved these changes Oct 13, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-vmm-39caedb8ff branch from f35ba09 to 47cfcf0 Compare October 20, 2025 04:17
@epilys
Copy link
Member

epilys commented Oct 20, 2025

Need to update vhost first

@dependabot dependabot bot force-pushed the dependabot/cargo/rust-vmm-39caedb8ff branch from 47cfcf0 to 3be9688 Compare October 27, 2025 04:13
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-vmm-39caedb8ff branch 2 times, most recently from 49ffe84 to 7288ef6 Compare October 31, 2025 11:14
Bumps the rust-vmm group with 2 updates in the / directory: [vm-memory](https://github.com/rust-vmm/vm-memory) and [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util).
Bumps the rust-vmm group with 2 updates in the /staging directory: [vm-memory](https://github.com/rust-vmm/vm-memory) and [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util).


Updates `vm-memory` from 0.16.2 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.16.2...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 `vm-memory` from 0.16.2 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.16.2...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 `vm-memory` from 0.16.2 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.16.2...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 `vm-memory` from 0.16.2 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.16.2...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)

---
updated-dependencies:
- dependency-name: vm-memory
  dependency-version: 0.17.1
  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: vm-memory
  dependency-version: 0.17.1
  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: vm-memory
  dependency-version: 0.17.1
  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: vm-memory
  dependency-version: 0.17.1
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-vmm-39caedb8ff branch from 7288ef6 to f3fa636 Compare November 2, 2025 09:47
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.

3 participants