chrono
chrono copied to clipboard
Date and time library for Rust
Mention support for `Z` and `UTC`. Also mention the case-insensitive parsing of `T`, `Z`, and `UTC`. Fixes #766.
Setting this up so it can run through the CI for now, this shouldn't be merged until at least version 0.5, or possibly never. This is one option to use...
In previous versions chrono with default features built successfully on the sgx platform. Since `iana-time-zone` is not implemented for this platform, do not include it when `target_env = "sgx"`. ###...
`chrono v0.4.21` introduces a new default feature `clock` which transitively pulls in `iana-time-zone`, which [doesn't build on SGX](https://github.com/strawlab/iana-time-zone/blob/392c9dee3d844d897bbc5c276855aa5bceaf8fb6/src/platform.rs#L7). This PATCH version upgrade has caused a sever-incompatible change on the SGX...
> `%+`: Same as `%Y-%m-%dT%H:%M:%S%.f%:z`, i.e. 0, 3, 6 or 9 fractional digits for seconds and colons in the time zone offset. But it's not really the same. `%+` parses...
This could also be implemented as an extra field on `FixedOffset`, which would mean it would no longer be a breaking change, but in that case it would make the...
I _think_ the only dependency on `num-traits` in chrono is in the `format` module which uses `ToPrimitive` for fallible integer casts. This functionality is provided by `core` as e.g. `i32::try_from(x)`....
With `chrono 0.4.20`, using `let now: DateTime = Local::now();` results in a panic. ``` thread 'main' panicked at 'unable to parse localtime info: Io(Os { code: 2, kind: NotFound, message:...
Would be great to verify library changes continue working in Android and iOS. Could also investigate other OS's for example Alpine, and some docker images