Praye.rs

Lightweight and highly accurate low-level library for calculating (Islamic) prayer times.

Usage

```rust use prayers::{CalculationMethods, Coordinates, HightLatMethods, PrayerManager, TimeZone, Utc};

let prayer_manager = PrayerManager::new(CalculationMethods::MWL, Some(HightLatMethods::NightMiddle));

let adate = Utc.ymd(2021, 4, 12); let ahouse = Coordinates(38.8976763, -77.036529, 18.0); let prayers = prayermanager.gettimes(adate, ahouse); ```