1 2 3 4 5 6 7
//! Parsers will provide abstractions for parsing structural data like toml and json. mod parser; pub use parser::Parser; mod toml; pub use self::toml::Toml;