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

Async version of the Rust standard library

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

The function 'task::spawn_local' is only behind the 'unstable' feature. However in the docs this function isn't marked as unstable. Is it actually unstable or not?

Long story short, I've audited at least three different async RwLock implementations 😁 and they all have the same problem; read-heavy workloads will starve writers. In the case of `async-std`,...

Couldn't find a task open about this, but https://doc.rust-lang.org/std/os/windows/fs/trait.OpenOptionsExt.html doesn't have any equivalent in async_std, making finer-grained control of opening files on Windows impossible.

It looks like originally the `Context` was intended to have an executor attached to it so that you can spawn tasks in an executor independent way. With `async-io` we no...

The [description](https://docs.rs/async-std/1.6.0/async_std/prelude/trait.StreamExt.html#method.timeout) for `StreamExt::timeout()` states it will "await a stream or times out after a duration of time," but it's not clear whether it times out after the specified duration...

documentation

Hey, I have been using hyper.rs with async-std as a compat layer. However, ever since 1.7.0 released, I've not been able to get hyper.rs to run with async-std at all....

Hello Everyone, First of all thanks very much for the great work on async-std. We are making heavy use of this framework in [zenoh](http://zenoh.io) and have remarked a major performance...

[zenoh](https://crates.io/crates/zenoh) is an innovative communication framework entirely written in async Rust. We focus on performance, safety and usability. We think that [zenoh](https://crates.io/crates/zenoh) fills an important gap in the async Rust...

Hi there, including `async-std#1.6.5` pulls in `async-io#1.10.0` which can't be cross compiled due to https://github.com/stjepang/async-io/issues/16 ```bash session_db v0.1.0 (/Users/coliny/Dev/com.qfi.health/src/rust-tools/session_db) ├── async-std v1.6.5 │ ├── async-global-executor v1.4.2 │ │ ├── async-io...

Tokio makes this really easy, but all the timeout methods in async-std take `Duration` instead of `Instant`.