async-std icon indicating copy to clipboard operation
async-std copied to clipboard

Async version of the Rust standard library

Results 125 async-std issues
Sort by recently updated
recently updated
newest added

## Changelog ``` ## Changed - Stabilized `stream::interval` - Stabilized `stream::pending` - Stabilized `stream::Stream::merge` ```

Stabilizes several stream adapters that have been proven over the last year. Also stabilizes `IntoFuture`. Thanks! ## Changelog ```txt ## Changed - `future::Future::delay` has been stabilized - `future::Future::flatten` has been...

This may be too crude to accept as an example, but in the course of trying to debug some code I was writing with async-std, I wanted to be able...

Hi friends, This is a first draft of a quick helper section for Streams. I've actually only used Streams in combination with channels, and I wanted to see if I...

As I struggled using the function spawn properly (I didn't get that it can be executed without await :-( ), I'd like to add an other example.

This aligns the function with it's documentation and will result in easier to resolve errors for problems such as #712. closes #712

Some functions in future module to no_std

From the discussion in #553 I also updated the client/server example to use `try_clone` instead of `Arc`, as well as added a small test.

If we want to implement ToSocketAddrs for a custom type, the ToSocketAddrsFuture should be pub use. Signed-off-by: Hosun Zhu

#131 Maybe it's a break change, because WriteExt and ReadExt both have by_ref.