chemrust_core/lib.rs
1//! The core module of `chemrust` is responsible for the abstraction of the data input/output for
2//! the chemical models, regardless of the detailed file formats. The designs and implementations
3//! of the structs, traits and patterns serve the internal running logics of the library. Only
4//! essential data structures and data manipulations are presented here.
5#![allow(dead_code)]
6
7/// This module provides the basic supports for builder patterns.
8// pub mod builder_state;
9/// This module settles the abstraction of essential data in the chemical molecule and lattice models
10pub mod data;
11pub mod systems;