Fredrik Meringdal
Fredrik Meringdal
Proposed fix in #100 if you want to try it out before next release. It isn't a complete fix, but should hopefully cover most cases.
Not in the near future. Is it something you need or want to work on? :)
I see. Unfortunately, I wont have time to add a benchmarking suite to the repo in the near future. Feel free to implement #67 if you want to, probably won't...
Hey! I don`t see any downsides of adding a wasm build target so if there is a need for it we could definitely add support for it. If you want...
The iterator is the only way to generate occurrences and every method just builds on top of the iterator. So I am not sure what you mean by "a lot...
I think it is an interesting use-case, one which I haven't thought about before. I don't have too much time these days to implement it, but if you want to...
Interesting idea. I guess you can store the last date generated and when you want to resume, just use `skip_while` until that date is surpassed. It is of course not...
Another option which I am thinking about is making RRuleSet generic over the timezone used. Then the server code will look something like this: ```rust use chrono::Utc; let rrule_set: RRuleSet...
Hey! Can you share the exact commands you ran to get that information? 🙏 I am a bit surprised the binary size would reduce as `regex` would still be a...
> regex is only an (indirect) build-time dependency of chrono-tz so it's never included in built binary. I missed that, makes sense. I have to admit that I am a...