#date-time #date #time #anniversary #annual

holiday

A rust library for defining and iterating over annually repeating dates and holidays

3 releases

0.1.2 Nov 26, 2022
0.1.1 Jan 22, 2021
0.1.0 Jan 22, 2021

#465 in Date and time

Download history 34/week @ 2024-06-15 16/week @ 2024-06-22 1/week @ 2024-06-29 86/week @ 2024-07-06 2/week @ 2024-07-13 33/week @ 2024-07-20 70/week @ 2024-07-27 23/week @ 2024-08-03 6/week @ 2024-08-10 32/week @ 2024-08-24 1/week @ 2024-08-31 22/week @ 2024-09-07 2/week @ 2024-09-14 49/week @ 2024-09-21 30/week @ 2024-09-28

103 downloads per month
Used in rustc-holidays

MIT license

36KB
868 lines

holiday

A rust library for defining and iterating over annually repeating dates and holidays.

Create a new Holiday

A Holiday can be either a fixed date like 'April 2nd' or an nth weekday of a month, like '1st Friday in April'.

use holiday::*;
use chrono::{Weekday, NaiveDate};

// Regular `fixed` holiday
let holiday = Holiday::new_fixed("April 2nd", April, 2);
assert_eq!(holiday.in_year(2021), NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(holiday, NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(holiday, NaiveDate::from_ymd(2022, 4, 2));

// Pastover: First Friday in April, an `nth` holiday
let pastover = Holiday::new_nth("Pastover", First, Weekday::Fri, April);
assert_eq!(pastover.in_year(2021), NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(pastover, NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(pastover, NaiveDate::from_ymd(2022, 4, 1));

Iterate over the occurrences of a Holiday.

The HolidayIter type is an iterator over the occurrences of a Holiday.


lib.rs:

holiday

A library for defining annually repeating dates and holidays

Create a new Holiday

A Holiday can be either a fixed date like 'April 2nd' or an nth weekday of a month, like '1st Friday in April'.

use holiday::*;
use chrono::{Weekday, NaiveDate};

// Regular `fixed` holiday
let holiday = Holiday::new_fixed("April 2nd", April, 2);
assert_eq!(holiday.in_year(2021), NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(holiday, NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(holiday, NaiveDate::from_ymd(2022, 4, 2));

// Pastover: First Friday in April, an `nth` holiday
let pastover = Holiday::new_nth("Pastover", First, Weekday::Fri, April);
assert_eq!(pastover.in_year(2021), NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(pastover, NaiveDate::from_ymd(2021, 4, 2));
assert_eq!(pastover, NaiveDate::from_ymd(2022, 4, 1));

Dependencies

~1MB
~18K SLoC