1
2
3
4
5
6
7
8
9
10
11
//! # chemistru-elements
//!
//! This library is for parsing and representing elements from JSON data in a
//! memory efficient format, allowing construction of complex molecules that do
//! not destroy the performance of the program.

pub mod element;
pub mod ops;
pub mod raw;
pub mod data;
pub mod inner;