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

As title says, i'm trying to get the FilterMap type into scope to store one in a struct. It does not seem to exist on any imports although the source...

I am trying to reduce the dependencies of our project and I tried to use the minimal set of features for it. I get this error: ``` error[E0425]: cannot find...

The code snippet here: https://docs.rs/async-std/1.1.0/async_std/net/struct.UdpSocket.html#method.join_multicast_v4 is a start, but as someone who has never used multicast before, I think a full example that does something like multicasting a given value...

This is not directly related with this crate's source code, rather some dependencies. Though when compiling to WASI for instance there are lots of errors from `net2` which should be...

wasm

When locking an `Arc` I can call [`lock_arc`](https://docs.rs/async-std/1.10.0/async_std/sync/struct.Mutex.html#method.lock_arc), which returns an extremely handy owned `MutexGuardArc`. I would expect an `Arc` to provide `read_arc` and `write_arc` to return owned guards as...

enhancement

I have a question regarding [`async_std::fs::create_dir_all()`](https://docs.rs/async-std/1.10.0/async_std/fs/fn.create_dir_all.html), I hope that you can answer it here. I know that if I try to use [`create_dir_all()`](https://docs.rs/async-std/1.10.0/async_std/fs/fn.create_dir_all.html) to create the exact same path from...

Consider providing additional methods to configure socket - SO_REUSEADDR - SO_LINGER I refrain from using async-std due to their absence. You can check these options in [socket2 ](https://docs.rs/socket2/0.3.11/socket2/)crate.

api design

I'm writing a udp server using async-std. One thing I'm trying to ensure is that I avoid queuing any outbound udp packets within my application. The basic pattern of the...

I've recently had a issue when running a application on a single core machine (an old Raspberry Pi) where a Future would never finish. I have managed to reproduce the...

bug

``` error[E0433]: failed to resolve: could not find `windows` in `os` --> src/os/windows/fs.rs:29:37 | 29 | spawn_blocking(move || std::os::windows::fs::symlink_dir(&src, &dst)).await | ^^^^^^^ could not find `windows` in `os` error[E0433]: failed...