guartcl 0.5.0

Enhanced Jim Tcl.
Documentation
//! Typed data structure (e.g. JSON) manipulation commands.

mod create;
mod def;
mod inspect;
mod json;
mod toml;
mod traverse;
mod yaml;

#[cfg(test)]
mod tests;

pub use create::*;
pub use def::TypedData;
pub use inspect::*;
pub use json::*;
pub use toml::*;
pub use traverse::*;
pub use yaml::*;