Austin Bonander
Austin Bonander
I'm evaluating this crate as a replacement for `futures-intrusive` in SQLx for our connection pool implementation as the maintenance status of the former is currently unknown: https://github.com/launchbadge/sqlx/issues/1668#issuecomment-1032026830 The pool internally...
Version: 1.1.1 At work I have a task to parse a CSV file containing two tables one after another with different field names and cardinality (I don't have any control...
Miri is currently choking on the use of `is_x86_feature_detected!()` here: https://github.com/seanmonstar/httparse/blob/master/src/simd/mod.rs#L74 Miri is probably not going to be supporting SIMD anytime soon anyway so it'd be nice if we could...
It would be a lot easier to use this tool if it was possible to just do `cargo install action-validator`.
The goal of this PR is to make it possible to build SQLx without any runtime features enabled, or with just `runtime-async-std` or `runtime-tokio` enabled (without a TLS provider). As...
Currently, RAW4J does not retain session, which means that it needs a call to `Reddit.login()` for every instance of the class before any action can be taken. This can lead...
`deflate` and `gzip` streaming compression can be provided by https://github.com/alexcrichton/flate2-rs I'd suggest this to be implemented on `hyper` but they've decided compression is out of scope of an HTTP library....
I couldn't find anywhere documenting a desire or otherwise a lack of desire for `multipart/form-data` support. I have a very basic streaming multipart client API in `multipart-async` now: https://github.com/abonander/multipart-async/tree/master/src/client It's...
You can't trivially set a closure as a middleware on a request even though closures implement `Middleware`; the obvious doesn't work by itself: ```rust surf::post(...) .middleware(|request, client, next| { //...
As it stands, `Client`, `Client` and friends are not nameable by consumers of the crate, which causes issues if the user wants to put a client in a struct. Additionally,...