SE
Serde
Serialization and deserialization framework for Rust — derive macros generate blazing-fast JSON, TOML, YAML, and more.
Serde’s #[derive(Serialize, Deserialize)] macros make struct-to-JSON round-trips trivial with zero runtime overhead. The trait system allows any format (JSON via serde_json, TOML via toml, YAML via serde_yaml, MessagePack, bincode) to plug in without changing application code.
// commonly used with
// related libraries
// tags
serializationjsontomlyamlrustmacros