sofars 0.6.0

Pure Rust implementation of the IAU SOFA library
Documentation
//! Calendars

#![allow(ambiguous_glob_reexports)]
mod cal2jd;
pub use cal2jd::*;

mod jd2cal;
pub use jd2cal::*;

mod epb;
pub use epb::*;

mod epb2jd;
pub use epb2jd::*;

mod epj;
pub use epj::*;

mod epj2jd;
pub use epj2jd::*;

mod jdcalf;
pub use jdcalf::*;