Daniel Sommermann
Daniel Sommermann
Right now, the location of the static library produced by `cc` is unknown to users, unless they specifically set the `OUT_DIR` environment variable or call the `Build::out_dir()` API. Rather than...
The [current API](https://docs.rs/cmake/0.1.45/src/cmake/lib.rs.html#337-340) only allows specifying a single build target. However, the `cmake` CLI allows specifying multiple targets. ``` --target ..., -t ... Build instead of the default target. Multiple...
From the main README.md, it is not clear if IPv6 is supported (or to what degree it is supported). Clarification of this would help users of the library know what...
The implementation of [aioitertools.itertools.tee](https://github.com/omnilib/aioitertools/blob/main/aioitertools/itertools.py#L472) currently has the caveat "all iterators are dependent on the first iterator." This caveat can cause periodic stalls in my pipeline where the consumers all consume...
While the `PrimInt` trait itself doesn't have compile time width functions, there are other ways to find the width of the underlying type. It is useful to present the alternative.
I've been reading through the API of `untrusted` and it seems great for parsing network messages in general, but there are a few edge cases I'm wondering how to handle...
A straightforward feature that would be quite useful for implementing network protocols would be additional methods on `Reader` for reading big and little endian integers. The API could be something...