Lightweight and highly accurate low-level library for calculating (Islamic) prayer times.
```rust use prayers::{CalculationMethods, Coordinates, PrayerManager, TimeZone, Utc};
let prayer_manager = PrayerManager::new(CalculationMethods::MWL, None);
let adate = Utc.ymd(2021, 4, 12); let ahouse = Coordinates(38.8976763, -77.036529, 18.0); let prayers = prayermanager.gettimes(adate, ahouse); ```