From b2d7c246daea188a791825054506b88a74eede99 Mon Sep 17 00:00:00 2001 From: Fraser Hutchison <190532+Fraser999@users.noreply.github.com> Date: Wed, 7 Aug 2024 16:15:00 +0100 Subject: [PATCH] fix: cargo audit warning (#1350) ## Summary Updated the version of `bytemuck`. ## Background Running `cargo audit` yields a non-critical warning that bytemuck v1.15.0 has been yanked. ## Changes Ran `cargo update -p bytemuck` to increase the version. ## Testing Ran normal test suite, no additional tests added. --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0270043a9..cc7062b82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1441,9 +1441,9 @@ checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" [[package]] name = "bytemuck" -version = "1.15.0" +version = "1.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" +checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" [[package]] name = "byteorder"