purr 0.9.0

Primitives for reading and writing the SMILES language in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod atom;
mod bond;
mod builder;
mod reconcile;
mod error;
mod join_pool;

pub use atom::Atom;
pub use bond::Bond;
pub use builder::Builder;
pub use error::Error;
pub(crate) use reconcile::reconcile;
pub(crate) use join_pool::JoinPool;