Johannes Löthberg
Johannes Löthberg
In the `dateconv` manpage it says that `-b` is used for underspecified inputs, and that it defaults to the current date and time, which makes it sounds like the following...
`dmarc-cat` currently always uses `-t`/`fType` to decide what kind of compression is in use whenever it isn't in the non-standard `.zip` format, even when you specify a filename.
The [`align_first`](https://docs.rs/maligned/latest/maligned/fn.align_first.html) function of the `maligned` crate manually allocates with an alignment larger than `T`, and then uses `Vec::from_raw_parts` on that allocation to get a `Vec`. As per the [stdlib...
MIME type
It would be nice if there was a registered MIME type for msgpack, for use in eg. APIs.
Go modules are easier to deal with and update, and helps to reduce the future growth of the repository size.
Responses where `Cache-Control` is set to `private` may be cached but must not be cached in a shared cache. I have a use of cachecontrol for an API client I'm...
I haven’t had time to go through the library yet, but how hard would you estimate that it would be to add HTTP basic auth support?
These need to be available so that we can tell bindgen which sysroot to use, as bindgen will otherwise use the system include files[^0] to generate bindings. [^0]: https://github.com/rust-lang/rust-bindgen/issues/1229
Getting the following error when trying to build the python bindings using python 3.6: ``` /usr/bin/ld:bindings/python/.libs/macaroons.ver:2: syntax error in VERSION script ``` Said file contains the following: ``` { global:...
The way the `async-h1` encoder streams the HTTP response head and body to the given `io: Write` causes the head and body to be written to the underlying socket as...