| Crates.io | fjson-core |
| lib.rs | fjson-core |
| version | 0.1.1 |
| created_at | 2025-09-29 11:06:15.089561+00 |
| updated_at | 2025-09-29 11:21:38.941457+00 |
| description | fjson is a zero-dependency JSON Parser and Fixer. It takes any input and produces valid JSON. No AI involved. |
| homepage | |
| repository | https://github.com/matx64/fjson |
| max_upload_size | |
| id | 1859398 |
| size | 22,173 |
fjson is a zero-dependency JSON Parser and Fixer. It takes any input and produces valid JSON. No AI involved.
fn main() {
let broken = r#"{ "user" "foo", "age": 0020, }"#;
let fixed = fjson_core::fix(broken);
println!("{}", fixed);
}
Output:
{
"user": "foo",
"age": 20
}
Copyright © 2025-present, fjson Contributors.
This project is MIT licensed.