Austin Bonander
Austin Bonander
This would make testing anything using a REST API simpler as one could just mock out the responses. [`yup_hyper_mock`](https://github.com/Byron/yup-hyper-mock) lets you create a mock `Connector` implementation that responds to various...
@liufuyang did an excellent job implementing the current multipart support and I'm flattered he chose my crate, but I'm worried about the scalability of collecting the entire request body to...
### Background I'm currently stress-testing our application at-scale using a Kubernetes cluster running in Azure, and profiling memory usage using `bytehound`. Getting the profiling data _out_ of the cluster. or...
This is meant to be much easier to discover than the current approach of directly invoking `Executor` methods. In addition, I'm improving documentation for the `query*()` functions across the board....
Motivated by #2917 cc @g-bartoszek you can build your changes onto this. Just use `Postgres::fmt_value_debug()`
I was just bitten by this assert while trying to debug a silent failure of my application during testing: https://github.com/quinn-rs/quinn/blob/main/quinn-proto/src/connection/streams/recv.rs#L289-L292 This was in a spawned Tokio task ~which apparently suppresses...
While reading the code for how `rumqttd` handles password authentication, the following code snippet jumped out at me: https://github.com/bytebeamio/rumqtt/blob/c719181bb1e3c41a691a7827bfafd393b004e88c/rumqttd/src/link/remote.rs#L247-L249 This comparison is linear in respect to both the number of...
While investigating #2244 I didn't really have any choice but to go through Recent Failures page-by-page and check for `sqlx-sqlite` with Ctrl-F to make sure it just didn't fail to...
It should be easier to invoke this tool programmatically than just spawning it as a sub-process and consuming the output.