jonhoo / stream-cancel

A Rust library for interrupting asynchronous streams.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Valve became `!Sync` between 0.6.2 and 0.7

bbqsrc opened this issue Β· comments

Was this intentional? It seems that this commit causes the change though it's non-obvious to me why.

I am asking because it broke my code. πŸ˜„

Ah, no, that was not intentional! I believe that should be fixable by adding + Sync to

fut: Option<Pin<Box<dyn Future<Output = bool> + Send>>>,

Would you mind opening a PR?

#13 πŸ˜„