From bcecddb74061ca6ed2e152dc5dd325e1354d0400 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 10:32:56 +0000 Subject: [PATCH] build(deps): bump the rust-dependencies group across 1 directory with 3 updates Updates the requirements on [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util), [zerocopy](https://github.com/google/zerocopy) and [bincode](https://github.com/bincode-org/bincode) to permit the latest version. Updates `vmm-sys-util` to 0.13.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](https://github.com/rust-vmm/vmm-sys-util/compare/v0.12.1...v0.13.0) Updates `zerocopy` to 0.8.24 - [Release notes](https://github.com/google/zerocopy/releases) - [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md) - [Commits](https://github.com/google/zerocopy/compare/v0.7.32...v0.8.24) Updates `bincode` to 2.0.1 - [Release notes](https://github.com/bincode-org/bincode/releases) - [Commits](https://github.com/bincode-org/bincode/compare/v1.3.3...v2.0.1) --- updated-dependencies: - dependency-name: vmm-sys-util dependency-type: direct:production dependency-group: rust-dependencies - dependency-name: zerocopy dependency-type: direct:production dependency-group: rust-dependencies - dependency-name: bincode dependency-type: direct:production dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] --- kvm-bindings/Cargo.toml | 6 +++--- kvm-ioctls/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kvm-bindings/Cargo.toml b/kvm-bindings/Cargo.toml index a258a6fc..f53b02ac 100644 --- a/kvm-bindings/Cargo.toml +++ b/kvm-bindings/Cargo.toml @@ -20,10 +20,10 @@ serde = ["dep:serde", "serde/derive", "dep:zerocopy"] [dependencies] -vmm-sys-util = { version = "0.12.1", optional = true } +vmm-sys-util = { version = "0.13.0", optional = true } serde = { version = "1.0.0", optional = true, features = ["derive"] } -zerocopy = { version = "0.7.32", optional = true, features = ["derive"] } +zerocopy = { version = "0.8.24", optional = true, features = ["derive"] } [dev-dependencies] -bincode = "1.3.3" +bincode = "2.0.1" serde_json = "1.0.125" diff --git a/kvm-ioctls/Cargo.toml b/kvm-ioctls/Cargo.toml index 0f4b47bc..ac30da94 100644 --- a/kvm-ioctls/Cargo.toml +++ b/kvm-ioctls/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] libc = "0.2.39" kvm-bindings = { path = "../kvm-bindings", version = "0.11.0", features = ["fam-wrappers"] } -vmm-sys-util = "0.12.1" +vmm-sys-util = "0.13.0" bitflags = "2.4.1" [dev-dependencies]