Unofficial extensions for Rust chrono crate.

Overview

The purpose of this crate is to provide various helpers/extensions for the chrono crate.

Why?

The first requirement that decide me to write this crate was to have "custom" week definitions. For example, in France, movies are released on Wednesday.

Features

Calculate week number with custom week definitions.

French theater calendar have a week definition where the first week has at least 4 days in current year, and starts on Wednesday. For example:

The API for custom week definition is inspired by Java API WeekFields. Week is defined by:

Example:

```rust use chrono::NaiveDate; use chrono_ext::{WeekSpecification, CustomWeek};

fn usefrenchtheaterweek() { let frenchtheaterweek: WeekSpecification = WeekSpecification::frenchtheaterweek(); let date = NaiveDate::fromymd(2017, 1, 3);

let week = french_theater_week.week(date);
println!("{}", week.format("%Y - W%W")); // 2016 - W53

} ```

Installation

Add the following to Cargo.toml under [dependencies]:

toml chrono_ext = "0.1.1"