formatforge 1.0.4

Convert between data formats: JSON, TOML, YAML, XML, ENV, KDL, CBOR, INI, JSON5, JSONC, MessagePack
Documentation

formatforge

Convert between data formats: JSON, TOML, YAML, XML, ENV, KDL, CBOR, INI, JSON5, JSONC, MessagePack.

Quick start

use formatforge::convert_bytes;

let json = br#"{"name": "test"}"#;
let toml = convert_bytes(json, "json", "toml").unwrap();