From 3d519958e176f5fe7036d1cc1934be476a0ca923 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Fri, 5 Apr 2024 11:40:09 +0200 Subject: [PATCH] Cargo: update uuid to 1.8 to fix clippy failures Clippy of Rust 1.77 or newer started checking out of bounds strictly, so clippy started failing with uuid 1.6 or older. Update clippy to the latest version to fix that. See also https://github.com/uuid-rs/uuid/pull/721. Debugged-by @pothos. --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a615326..98a0f25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1481,9 +1481,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.4.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "vcpkg"