ephem 0.1.0-alpha1

Library for determining the ephemeris of heavenly bodies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(dead_code)]

pub mod base;

#[cfg(test)]
#[macro_use]
extern crate approx;

#[macro_use]
extern crate ephem_derive;
extern crate num_traits;

#[cfg(test)]
extern crate rand;

#[cfg(test)]
mod tests {
}