bimap-rs
bimap-rs copied to clipboard
Iter not Send + Sync
I just stumbled over this issue:
The Iter type created by into_iter() etc. is not Send/Sync which makes it hard to use with async code.
I think it should be sound to mark the type as Send and Sync with the same reasoning would be as in #1.