You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Breaking:Async::new() now takes types that implement AsFd/AsSocket instead of AsRawFd/AsRawSocket, in order to implement I/O safety. (#142)
Breaking:Async::get_mut(), Async::read_with_mut() and Async::write_with_mut() are now unsafe. The underlying source is technically "borrowed" by the polling instance, so moving it out would be unsound. (#142)
Expose miscellaneous kqueue filters in the os::kqueue module. (#112)
Expose a way to get the underlying Poller's file descriptor on Unix. (#125)
Add a new Async::new_nonblocking method to allow users to avoid duplicating an already nonblocking socket. (#159)
Remove the unused fastrand and memchr dependencies. (#131)