serde_any 0.5.0

Dynamic serialization and deserialization with the format chosen at runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "json")]
pub(crate) use serde_json;

#[cfg(feature = "yaml")]
pub(crate) use serde_yaml;

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

#[cfg(feature = "ron")]
pub(crate) use ron;

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

#[cfg(feature = "url")]
pub(crate) use serde_urlencoded as url;