rust-zmanim 0.3.0

Jewish Zmanim calculations, and solar position calculations, for any date and location
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The [`ComplexZmanimCalendar`] struct is stateful and has many premade
//! *zmanim* calculations, both conveniences built on the
//! [`zmanim_calculator`](crate::zmanim_calculator) API.

#[macro_use]
mod czc_macros;

#[macro_use]
mod doc_macros;

mod cache;
mod czc_struct;
mod registry;

pub use czc_struct::*;
pub use registry::*;