Fix incorrect fixed version for may_queue (#2106)

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)
This commit is contained in:
Arvid Norlander
2024-10-25 20:45:36 +02:00
committed by GitHub
parent b416be0762
commit c586bd65ec

View File

@@ -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.