Skip to main content

sciforge_lib/
lib.rs

1#[cfg(feature = "astronomy")]
2pub mod astronomy;
3#[cfg(feature = "biology")]
4pub mod biology;
5#[cfg(feature = "chemistry")]
6pub mod chemistry;
7#[cfg(feature = "geology")]
8pub mod geology;
9#[cfg(feature = "maths")]
10pub mod maths;
11#[cfg(feature = "meteorology")]
12pub mod meteorology;
13#[cfg(feature = "physics")]
14pub mod physics;
15
16pub mod constants;