Austin Bonander
Austin Bonander
Tokio's API has a number of types that are `!UnwindSafe` and/or `!RefUnwindSafe` even though a lot of them are meant to be used concurrently from multiple threads/tasks which inherently will...
**Version** ``` hyper = "0.14.18" h2 = "0.3.13" ``` **Platform** ``` > uname -a Linux 5.17.5-76051705-generic #202204271406~1651504840~22.04~63e51bd SMP PREEMPT Mon May 2 15: x86_64 x86_64 x86_64 GNU/Linux ``` **Description** I've...
Playground doesn't detect that the following code has a `main()` function: ```rust #![no_main] use std::os::raw::*; #[no_mangle] pub extern "C" fn main(argc: c_int, argv: *const *mut c_char) -> c_int { println!("Hello...
Let's say I have a large render that's mostly clean, like the following one:  Where most of the noise is concentrated in...
**Is your feature request related to a problem? Please describe.** I have a couple routes that swap a short-lived cookie for a long-lived one, which means two `Set-Cookie` headers: ```typescript...
You need to install the `llvm-dev` package, or otherwise `llvm-symbolizer` needs to be added to `$PATH` as shown here: https://chromium.googlesource.com/chromium/src/testing/libfuzzer/+/HEAD/getting_started.md#build-and-run-fuzz-target-locally
These two functions are conspicuously missing from `bcrypt-pbkdf2` compared to `pbkdf2` and `scrypt`. It would be nice to have them to not have to worry about password string encoding or...
With Hyper on its way to 1.0, perhaps it's time to start discussing where this crate is at in relation to its own eventual 1.0 release, as well as create...
I see APIs have been proposed like this before but all I want is a method to _try_ to unsplit a `Bytes` as I think that should be possible in...
In SQLx we originally tried using `async-std'`s MPMC channels to implement our connection pool but found that particular implementation preferred high throughput over fairness, which is undesirable for a connection...