serde_rw 0.2.7

Extend serde serializers and deserializers with the ability to read / write different file formats from / to files
Documentation
mod error;
mod formats;
mod from_file;
mod functions;
mod to_file;

pub use error::Error;
pub use from_file::FromFile;
pub use to_file::ToFile;

#[cfg(feature = "json")]
pub use formats::json::featured::{FromJson, ToJson};

#[cfg(feature = "toml")]
pub use formats::toml::featured::{FromToml, ToToml};

#[cfg(feature = "xml")]
pub use formats::xml::featured::{FromXml, ToXml};

#[cfg(feature = "yaml")]
pub use formats::yaml::featured::{FromYaml, ToYaml};