iztro 0.3.1

Strongly typed Zi Wei Dou Shu chart generation aligned with iztro.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Internal calendar-conversion adapters.
//!
//! This module isolates the third-party calendar dependency (`lunar-lite`) and
//! lunar-date normalization behind internal adapters. Calendar-backend types
//! never leak past this boundary: facades consume only the crate's own typed
//! domain values and expose request/chart facts.

mod lunar_normalize;
mod solar_to_lunar;

pub(crate) use lunar_normalize::resolve_lunar_date;
pub(crate) use solar_to_lunar::solar_to_lunar;