lox_space/lib.rs
1// SPDX-FileCopyrightText: 2023 Helge Eichhorn <git@helgeeichhorn.de>
2//
3// SPDX-License-Identifier: MPL-2.0
4
5#[cfg(feature = "bodies")]
6pub mod bodies;
7
8#[cfg(feature = "earth")]
9pub mod earth;
10
11#[cfg(feature = "ephem")]
12pub mod ephem;
13
14#[cfg(feature = "frames")]
15pub mod frames;
16
17#[cfg(feature = "io")]
18pub mod io;
19
20#[cfg(feature = "math")]
21pub mod math;
22
23#[cfg(feature = "orbits")]
24pub mod orbits;
25
26#[cfg(feature = "time")]
27pub mod time;
28
29#[cfg(feature = "units")]
30pub mod units;
31
32#[cfg(feature = "python")]
33pub(crate) mod python;