René Kijewski
René Kijewski
Just for clarity: Would you like to use tz-rs in a free-standing WASM project, e.g. in [wasmtime](https://crates.io/crates/wasmtime), or a worker in a web and/or Node project? For the latter it's...
Thank you very much for working on that! I'll try to have a look in the next few days. (I wonder why the CI did not run for you PR,...
Thank you for reporting the error! Yes, this is only a typing problem: This should be: ```python class _SupportsRead(Protocol): def read(self, size: int | None = ...) -> str |...
Thank you again for the bug report! :) Fixed in [v2.0.0](https://github.com/Kijewski/pyjson5/releases/tag/v2.0.0).
> I don't like this. It would be super cool if there was a way to simply `{{ result }}` and render either branch automatically. Have a look how to...
Maybe the `NSSystemTimeZoneDidChangeNotification` listener could be implemented in its own crate that could be pulled in with a feature flag? It looks like reading an uncached timezone value could be...
This is great! In your variant the `ensure_read()` optimization barrier can also be removed, probably because the compiler understands your intentions better than it does with the current code: ```rust...
It would fail for [`CompactString::with_capacity()`](https://docs.rs/compact_str/latest/compact_str/struct.CompactString.html#method.with_capacity), too.
Yeah, I guess this particular method is as good as it gets for the current data representation. But nevertheless, thank you for looking into possible optimizations! It is very easy...
Without measuring it's hard to tell which version is the best. If I remember correctly, instructions like `sete` (set register to 0/1 depending on the zero flag), `adc` (add with...