Faidon Liambotis
                                            Faidon Liambotis
                                        
                                    (1) would probably be something like that. Let me know what you think :) ```diff diff --git a/src/structlog/stdlib.py b/src/structlog/stdlib.py index edaeccd..03e5fe6 100644 --- a/src/structlog/stdlib.py +++ b/src/structlog/stdlib.py @@ -343,6 +343,18 @@...
[Daiquiri's JournalHandler code](https://github.com/jd/daiquiri/blob/080a7b9076ede4d4c5e300be13f4c9a34c271bb5/daiquiri/handlers.py#L60) is a good example of how that could be done. It's 38 lines of code, so it's not that complicated. Essentially it boils down to just `journal.send(message,...
Also, the systemd module provides a [logging.handler JournalHandler](https://github.com/systemd/python-systemd/blob/a402d08da41413507a4ebebf18de897f7ddf1dd2/systemd/journal.py#L504) that is reasonable. So one can rely on the logging module for this. This example is gross, but works: ```python logging.basicConfig(format="%(message)s", handlers=(systemd.journal.JournalHandler(),))...
> WasmEdge uses `git describe` to compose a version such as `0.10.1-alpha.2-20-g7580f982` as the version of any unreleased binaries and libraries. However, I am not sure if the CMake project...
Thank you for working on this! I still see some unrelated symbols being exported, this time from the std:: namespace, as well as from the llvm:: namespace :( Instead of...
Oh and something else: the `std::` symbols will remain in `nm`'s output as undefined, i.e. to be dynamically resolved. I think there is a question to be asked on whether...
Thank you for considering this, appreciated! I think that all makes sense. Bumping the SONAME on breaking changes would address the use cases I'm talking about before. I'm only a...
> Ah, it must be a typo. > > We will have the following structure: > > ``` > libwasmedge.so -> libwasmedge.so.0 > libwasmedge.so.0 -> libwasmedge.so.0.0.0 > libwasmedge.so.0.0.0 > ```...
> minigzip doesn't try to be replacement for gzip... There was talks few days ago about making full replacement that has all the features of gzip but internally uses zlib-ng,...
> I think one challenge with existing gzip source code is that it is not zlib licensed. In this repository we only allow zlib licensed source code. GNU gzip is...