Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 711 Bytes

README_ZH.md

File metadata and controls

27 lines (18 loc) · 711 Bytes

chinese_holiday

English | 中文

chinese_holiday 是一个用于判断中国节假日的 Rust 库。节假日数据来源于中国政府信息公开平台chinese_holiday 收录了自 2004 年到 2024 年的中国节假日特例数据,此后每年将持续更新。

Licensed under Apache 2.0.

安装

cargo add chinese_holiday

用例

use chinese_holiday::*;
use chrono::*;

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

更多信息请参考: