libswe-sys 0.1.43

Astrology lib connected to the C lib Swiss ephemeris (just the c lib)
Documentation
/*
 * Traditional astrology for rust
 * ==============================
 *
 * Rust library by Stéphane (s.bressani@bluewin.ch)
 *
 * Using swissephem c library by Astrodienst AG
 * by Dieter Koch and Alois Treindl (https://www.astro.com/ftp/swisseph/)
 *
 * The source code is released under an CC License, which allows it to be used
 * also on commercial projects. This software uses the swiss ephemeris which is
 * licensed GPL.
 *
 * Therefore, if you want to use astro_compute_swisseph in your commercial
 * projects, you must adhere to the GPL license or buy a Swiss Ephemeris
 * commercial license.
 */
mod swe02;
mod swe03;
mod swe07;
mod swe08;
mod swe14;
mod swe17;

pub use self::swe02::handler as handler_swe02;
pub use self::swe03::handler as handler_swe03;
pub use self::swe07::handler as handler_swe07;
pub use self::swe08::handler as handler_swe08;
pub use self::swe14::handler as handler_swe14;
pub use self::swe17::handler as handler_swe17;