2 stable releases

1.1.0 Jun 23, 2023
1.0.0 Nov 18, 2020

#183 in Programming languages

Download history 8558/week @ 2023-12-11 6897/week @ 2023-12-18 1338/week @ 2023-12-25 7670/week @ 2024-01-01 11201/week @ 2024-01-08 8995/week @ 2024-01-15 8291/week @ 2024-01-22 7385/week @ 2024-01-29 8838/week @ 2024-02-05 8182/week @ 2024-02-12 5761/week @ 2024-02-19 12631/week @ 2024-02-26 13198/week @ 2024-03-04 13684/week @ 2024-03-11 10375/week @ 2024-03-18 11070/week @ 2024-03-25

48,384 downloads per month
Used in 18 crates (4 directly)

MIT license

5KB
68 lines

Force Send Sync

Tells the compiler things are Send and/or Sync.

Reasons not to use this crate

If you should not know what Send and Sync means this crate is likely not what you are looking for. Usecases for this are extremly rare. This crate is unlikely to solve your problem and much more likely to turn the problem you have into a much messier one.

Reasons to use this crate

  • You have a type which Send and/or Sync but the compiler does not know it. Further you can not implement these yourself, because the code lives Upstream (maybe you could contribute there?).
  • You have a really weird situation there safety of these depends on configuration read at runtime and you need a way to promote safety of types.

lib.rs:

Please do not use this crate. The Rust compiler tries to protect you for a reason. Do under no circumstances use this to silence some compiler error you do not understand. Only use this if you do understand why your type is Send and or Sync, and also understand why the compiler disagrees with you.

No runtime deps