chrono icon indicating copy to clipboard operation
chrono copied to clipboard

Date and time library for Rust

Results 262 chrono issues
Sort by recently updated
recently updated
newest added

The docs/readme mention more advanced time zone handling planned for version 0.4. What will that look like. In particular, I'd like to be able to print time zone names so...

timezone

It would be nice if `chrono` (or another crate, really) offered more ways of parsing date and time strings that come from user input. These strings often don't fully specify...

out-of-scope

Hi, I'm new at Rust so I might have missed something here. I have two NaiveDate and I'd like to write: ``` for d in start..end { // ... }...

Hello there, I'm currently working on a ASN.1 DER serializer. This standard has support for sub-second representation, but they (foolishly) drop significant zeros in their representation. I currently use ```Rust...

formatting

It would look something like the following: ```rust impl Div for Duration { type Output = i128; fn div(self, rhs: Duration) -> i128 { self.num_nanoseconds() / rhs.num_nanoseconds() } } ```...

The goal is to add a type that can describe durations with the flexibility of an ISO 8601 duration. Because we already have enough confusion with types named `Duration`, I...

I'm writing this issue to try and summarize all the possibilities for leap seconds handling in chrono, hopefully this will help making a decision :) (I can't find a checkbox...

Chrono currently uses UTC as canonical representation, with an optional positive leap second marking. This seems inevitable with the current OS support, but given sufficient data, we may want to...

The README states Chrono strictly adheres to ISO 8601. I think this statement is slightly ambiguous, there are multiple revisions of the standard with minor differences. Would be nice to...

The `TZDIR` variable can be set to override the path to the time zone database, at least in glibc. See https://github.com/ogham/exa/issues/856. We should also merge the two places where we...