⚙️ c12-parser
Toolbox for parsing and stringifying various formats, including JSON, JSON5, JSONC, INI, TOML, and YAML.
Quick start
Usage
//! c12-parser API usage examples
//!
//! This binary demonstrates the main APIs. For full examples, see `examples/`:
//! - `cargo run --example hello_world` — JSON parse & stringify
//! - `cargo run --example parse_json` — JSON with FormatOptions
//! - `cargo run --example parse_json5` — JSON5 (unquoted keys, trailing commas)
//! - `cargo run --example parse_jsonc` — JSONC (comments, JsoncExtraOptions)
//! - `cargo run --example parse_toml` — TOML
//! - `cargo run --example parse_yaml` — YAML
//! - `cargo run --example parse_ini` — INI
use ;
use Value;
License
Published under the Apache-2.0 license. Made by @UnRUST 💛
🛠️ auto updated with automd-rs