Alex Rudy
Alex Rudy
When using pytest's `--junitxml` flag to produce a test report, the timing information includes the migrations for the first test run which requires migrations. In our environment, we often randomize...
This is similar to #41 but suggests something perhaps a bit more nefarious. The code below spawns lots of threads (on my machine, ~100 was enough to do it, but...
The [JwkEcKey](https://docs.rs/elliptic-curve/latest/elliptic_curve/struct.JwkEcKey.html) struct supports serialization to JSON, but does so in a manner where the fields are always specified to match the human-readable output (i.e. with `kty` first). Unfortunately, this...
In my conintuing silliness of mixing pyzmq and libzmq via Cython, I've noticed that when the manylinux wheel is installed, it effectively bundles the libzmq library, in ``zmq/.libs/``, which makes...
**Current Status**: This is ready for CI & review! This is a continuation of PR #1595 by @ikrivosheev. TODO: - [X] update imports to use -util crates (done in #1595)...
The [hickory-server::ServeFuture](https://docs.rs/hickory-server/latest/hickory_server/server/struct.ServerFuture.html) implements what is effectively a tower::Service over the different transport protocols, creating a MakeService for each transport, and building a service which accepts a request and (in some...
I went to build a DNS server out of hickory components, and found myself implementing my own [Authority](https://docs.rs/hickory-server/latest/hickory_server/authority/trait.Authority.html) to provide DNS Authorities backed by a different storage engine (in my...