[package]
edition = "2024"
rust-version = "1.96"
name = "jpholiday"
version = "0.2.0"
authors = ["Kazuki Hayashi"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust library to determine Japanese public holidays. 日本の祝日を扱う依存ゼロのRustライブラリ。"
homepage = "https://github.com/Lalcs/jpholiday-rust"
documentation = "https://docs.rs/jpholiday"
readme = "README.md"
keywords = [
"japan",
"holiday",
"japanese",
"calendar",
"shukujitsu",
]
categories = [
"date-and-time",
"localization",
]
license = "MIT"
repository = "https://github.com/Lalcs/jpholiday-rust"
[lib]
name = "jpholiday"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "dump"
path = "examples/dump.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "class_api"
path = "tests/class_api.rs"
[[test]]
name = "custom_holiday"
path = "tests/custom_holiday.rs"
[[test]]
name = "date_validation"
path = "tests/date_validation.rs"
[[test]]
name = "datetime"
path = "tests/datetime.rs"
[[test]]
name = "enforcement_boundary"
path = "tests/enforcement_boundary.rs"
[[test]]
name = "equinox"
path = "tests/equinox.rs"
[[test]]
name = "global_register"
path = "tests/global_register.rs"
[[test]]
name = "golden_years"
path = "tests/golden_years.rs"
[[test]]
name = "issues"
path = "tests/issues.rs"
[[test]]
name = "poison_recovery"
path = "tests/poison_recovery.rs"
[[test]]
name = "reentrancy"
path = "tests/reentrancy.rs"
[dependencies]
[dev-dependencies]