From 67a02bdf68af83e0119660055187c196e1a8bfd7 Mon Sep 17 00:00:00 2001 From: Arvid Norlander Date: Fri, 25 Oct 2024 20:43:03 +0200 Subject: [PATCH] Fix incorrect fixed version for may_queue According to https://github.com/Xudong-Huang/may/issues/88, this was fixed in 0.3.19, but that refers to the main "may" crate. The correct version for the "may_queue" sub crate is 0.1.8 (based on manual checking the bounds for the affected type on docs.rs) --- crates/may_queue/RUSTSEC-2020-0111.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/may_queue/RUSTSEC-2020-0111.md b/crates/may_queue/RUSTSEC-2020-0111.md index a98e3f5eb..b1175c8d7 100644 --- a/crates/may_queue/RUSTSEC-2020-0111.md +++ b/crates/may_queue/RUSTSEC-2020-0111.md @@ -10,7 +10,7 @@ categories = ["memory-corruption", "thread-safety"] keywords = ["concurrency"] [versions] -patched = [">= 0.3.19"] +patched = [">= 0.1.8"] ``` # may_queue's Queue lacks Send/Sync bound for its Send/Sync trait.