chinese_holiday

English | 中文

A Rust library for determining Chinese holidays. Holiday data from the Chinese Government Information Disclosure Platform

Licensed under Apache 2.0.

Install

cargo add chinese_holiday

Usage

let date = NaiveDate::from_ymd_opt(2004, 1, 1).unwrap(); assert_eq!(chinese_holiday(&date), DayKind::NewYearsDayHoliday);

For more details, see: - docs.rs - examples