use-data 0.1.0

Feature-gated facade crate for RustUse data format helpers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

#[cfg(feature = "csv")]
pub use use_csv as csv;

#[cfg(feature = "json")]
pub use use_json as json;

#[cfg(feature = "toml")]
pub use use_toml as toml;

#[cfg(feature = "xml")]
pub use use_xml as xml;

#[cfg(feature = "yaml")]
pub use use_yaml as yaml;