pistonite-cu 0.9.1

Battery-included common utils to speed up development of rust tools
Documentation
#[cfg(feature = "parse")] // cfg needed to show up in doc
mod base;
#[cfg(feature = "parse")] // cfg needed to show up in doc
pub use base::*;
mod base_impl;

#[cfg(feature = "json")]
mod json_impl;
#[cfg(feature = "json")]
pub use json_impl::*;

#[cfg(feature = "toml")]
mod toml_impl;
#[cfg(feature = "toml")]
pub use toml_impl::*;

#[cfg(feature = "yaml")]
mod yaml_impl;
#[cfg(feature = "yaml")]
pub use yaml_impl::*;