Paul Dicker

Results 63 issues of Paul Dicker

On some systems we can only get the time in UTC (SGX), or we can get only the local time (it think this is WASI). Or we may fall back...

See discussion in #74. This is useful to fuzz crates in their `no_std` configuration, which may utilize different code paths in such a crate. I started by rebasing #74 but...

This PR is an attempt to vectorize the remaining patterns as svg. See https://github.com/gravitystorm/openstreetmap-carto/issues/2045. See also part 1 in https://github.com/gravitystorm/openstreetmap-carto/pull/4458. It took six weeks, but I now believe this would...

Fastmail adds headers of the following format: ``` X-Spam-known-sender: no X-Spam-sender-reputation: 500 (none) X-Spam-score: 0.0 X-Spam-hits: DCC_REPUT_00_12 -0.8, HTML_IMAGE_ONLY_28 0.726, HTML_MESSAGE 0.001, ME_SENDERREP_NEUTRAL 0.001, MIME_HTML_ONLY 0.1, RCVD_IN_MSPIKE_H2 -0.001, SPF_HELO_NONE 0.001,...

It is tricky to slice up the work to convert our parsing module from returning `ParseError` to `Error`. After a couple of attempts the best way seems to be to...

We can't have a generic `From` or `Into` implementation that converts from one `Offset` type into another because the standard library has a blanket implementation of `From for T`. For...

These issues came up when trying to convert our parsing code to the new error types (only 750 errors to go... :laughing:). I would like to restrict the visibility of...

We have had multiple requests to provide a way to get DST information for a `DateTime`. Not all offset types carry this information. `Utc` and `FixedOffset` rightfully only encode an...

Currently the type returned for `DateTime`s with a `Local` time zone is a `FixedOffset`. This makes it impossible to add information to the `DateTime` such as the time zone name,...

Just learned that adding a type parameter is a backwards-compatible change if it has a default type, thanks to [RFC 0213](https://rust-lang.github.io/rfcs/0213-defaulted-type-params.html). That means we can fix the biggest remaining performance...