From 56ebdb708bb2fc9e1aa94384ba985d0ee16726d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:08:30 +0000 Subject: [PATCH] Bump bytemuck from 1.19.0 to 1.21.0 in /rust Bumps [bytemuck](https://github.com/Lokathor/bytemuck) from 1.19.0 to 1.21.0. - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.19.0...v1.21.0) --- updated-dependencies: - dependency-name: bytemuck dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- rust/Cargo.lock | 4 ++-- rust/virtual-display-driver/Cargo.toml | 2 +- rust/wdf-umdf-sys/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 0b32742..ad33163 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -171,9 +171,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.19.0" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" +checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" dependencies = [ "bytemuck_derive", ] diff --git a/rust/virtual-display-driver/Cargo.toml b/rust/virtual-display-driver/Cargo.toml index 4457abf..c2c2868 100644 --- a/rust/virtual-display-driver/Cargo.toml +++ b/rust/virtual-display-driver/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "1.0.93" wdf-umdf-sys = { path = "../wdf-umdf-sys" } wdf-umdf = { path = "../wdf-umdf" } log = "0.4.22" -bytemuck = { version = "1.19.0", features = ["derive"] } +bytemuck = { version = "1.21.0", features = ["derive"] } serde_json = "1.0.133" driver-ipc = { path = "../driver-ipc" } driver-logger = { path = "../driver-logger" } diff --git a/rust/wdf-umdf-sys/Cargo.toml b/rust/wdf-umdf-sys/Cargo.toml index d4649fa..c5fa3cf 100644 --- a/rust/wdf-umdf-sys/Cargo.toml +++ b/rust/wdf-umdf-sys/Cargo.toml @@ -8,7 +8,7 @@ workspace = true [dependencies] paste = "1.0.15" -bytemuck = "1.19.0" +bytemuck = "1.21.0" thiserror = "2.0.3" [build-dependencies]