Josh Triplett
Josh Triplett
https://github.com/rusoto/rusoto/pull/1965 modified the initialization code for HttpClient in a way that prevents it from building with the `rustls-webpki` feature enabled. Fix that, so that building with rustls-webpki works again. Also,...
Instance metadata includes information about the region and availability zone for the current instance. I'd love to have a way to construct a `Region` that uses this information (e.g. `Region::from_metadata()`),...
Please consider adding the async-channel crate to the benchmarks. It's part of the async-std and smol stacks, and I would like to see how it compares.
The cargo-wasi experience will depend heavily on the versions of the tools invoked (in addition to the version of cargo-wasi itself), and as mentioned in the documentation, wasm-opt in particular...
Add `lock_blocking` and `lock_arc_blocking` methods to allow sharing the same lock between blocking and non-blocking code. Introduce a helper macro to avoid duplicating the code of the `acquire_slow` method.
This avoids having two versions of `pending` in programs that use both futures_lite and the version from std.
This has the same effect as f1.or(f2.or(f3.or(...))) but without the nesting. Note that an equivalent `race!` macro would not be fair, since it would be a coin-flip at each level....
futures-lite implements the `join` function to join two futures. I'd love to have the `join!` macro to join more than two futures, if that'd be a reasonable addition to futures-lite.
I think `ansi_term` seems ready to use 1.0 versioning, and that would also help people consolidate on the same version. Currently, I see multiple versions in the same dependency trees,...
Some terminals support hyperlinks to URLs as a text style, defined at https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda . Add support for these escape sequences to ansi_term, storing the hyperlink target as an Option. This...