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
The crate mio dependency is version 0.6.* but the current version is 0.8.*. Upgrading mio will assist in being ready for verion 1.0.*.
Version 0.8.* has some breaking changes, but also includes a UnixStream type that has a try_io method. The upgrade to 0.8.* allows us to use this version of UnixStream instead of implementing Evented (which has been renamed Source) on top of fd-queue::net::UnixStream. We can use BiQueue and the mioUnixStream to implement fd-queue::mio::UnixStream and then separate out the mio-fd and net-fd features.
The text was updated successfully, but these errors were encountered:
The crate
mio
dependency is version 0.6.* but the current version is 0.8.*. Upgradingmio
will assist in being ready for verion 1.0.*.Version 0.8.* has some breaking changes, but also includes a
UnixStream
type that has atry_io
method. The upgrade to 0.8.* allows us to use this version ofUnixStream
instead of implementingEvented
(which has been renamedSource
) on top offd-queue::net::UnixStream
. We can useBiQueue
and themio
UnixStream
to implementfd-queue::mio::UnixStream
and then separate out themio-fd
andnet-fd
features.The text was updated successfully, but these errors were encountered: