From 942f35d00a23efbc2401b78128eaf58d3466e549 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:46:40 +0000 Subject: [PATCH] Bump bytemuck from 1.19.0 to 1.20.0 in /rust Bumps [bytemuck](https://github.com/Lokathor/bytemuck) from 1.19.0 to 1.20.0. - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.19.0...v1.20.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..295b799 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -171,9 +171,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.19.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" +checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" dependencies = [ "bytemuck_derive", ] diff --git a/rust/virtual-display-driver/Cargo.toml b/rust/virtual-display-driver/Cargo.toml index 4457abf..9233e6b 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.20.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..11f9b34 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.20.0" thiserror = "2.0.3" [build-dependencies]