sciforge 0.0.3

A comprehensive scientific computing library in pure Rust with zero dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Geology domain re-exports.
//!
//! Flat namespace over the top-level `geology` crate modules:
//! radiometric dating, erosion, glaciology, hydrology, petrology,
//! seismology, tectonics, and volcanism.

pub use crate::geology::dating;
pub use crate::geology::erosion;
pub use crate::geology::geomorphology;
pub use crate::geology::glaciology;
pub use crate::geology::hydrology;
pub use crate::geology::mantle;
pub use crate::geology::petrology;
pub use crate::geology::seismology;
pub use crate::geology::tectonics;
pub use crate::geology::volcanism;