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
Make it so read_line and other futures use a naive implementation of byte
searching unless the memchr feature is enabled. This prevents needing to
compile the memchr crate unless it is desired. (#77)
Breaking: Expose future::{ready, pending} from core instead of defining
our own. (#73)
Breaking: The TryZip and Zip combinators are modified to have a cleaner
API, where generic constraints are not necessary on the structure itself at the
cost of additional generics. (#74)
Add a way to use racey futures on no_std by providing your own seed. (#75)