#json #fix-json #bad-json

dirty-json

Fix up dirty JSON string

1 unstable release

0.1.0 Aug 9, 2020

#1130 in #json

MIT license

4KB

dirty-json-rs

GitHub Actions Crates.io docs.rs

Fix up dirty JSON string

Features

dirty-json allows numberic object keys.

fn main() {
    let json = r#"{1: "foo", 2 : "bar"}"#;
    let fixed = dirty_json::fix(json);
    assert_eq!(fixed, r#"{"1":"foo","2":"bar"}"#);
}

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.

Dependencies

~28KB