wolfram_wxf 0.6.4

Convert a value to the Wolfram Language WXF format.
Documentation
#[cfg(feature = "json")]
mod json;
#[cfg(feature = "numpy")]
mod numpy;
#[cfg(feature = "pickle")]
mod pickle;
mod systems;
#[cfg(feature = "toml")]
mod toml;
#[cfg(feature = "yaml")]
mod yaml;

#[cfg(feature = "toml")]
pub use self::toml::parse_toml;
#[cfg(feature = "json")]
pub use json::{parse_json, parse_json5};
pub use systems::SYSTEM_SYMBOLS;
#[cfg(feature = "yaml")]
pub use yaml::parse_yaml;