29 releases (breaking)

0.23.0 Oct 27, 2023
0.22.1 Jul 27, 2023
0.21.1 Apr 28, 2023
0.21.0 Aug 5, 2022
0.12.2 Jun 7, 2020

#89 in Parser implementations

Download history 12259/week @ 2024-03-14 9574/week @ 2024-03-21 13618/week @ 2024-03-28 12784/week @ 2024-04-04 17828/week @ 2024-04-11 10378/week @ 2024-04-18 8758/week @ 2024-04-25 11121/week @ 2024-05-02 11202/week @ 2024-05-09 12338/week @ 2024-05-16 10902/week @ 2024-05-23 14184/week @ 2024-05-30 13904/week @ 2024-06-06 23193/week @ 2024-06-13 17084/week @ 2024-06-20 11131/week @ 2024-06-27

68,066 downloads per month
Used in 49 crates (25 directly)

MIT license

71KB
2K SLoC

jsonc-parser

JSONC parser implemented in Rust.

Example

To a simple JsonValue:

use jsonc_parser::parse_to_value;

let json_value = parse_to_value(r#"{ "test": 5 } // test"#, &Default::default())?;
// check the json_value here

Or an AST:

use jsonc_parser::parse_to_ast;
use jsonc_parser::CollectOptions;

let parse_result = parse_to_ast(r#"{ "test": 5 } // test"#, &CollectOptions {
    comments: true, // include comments in result
    tokens: true, // include tokens in result
}, &Default::default())?;
// ...inspect parse_result for value, tokens, and comments here...

Serde

If you enable the "serde" feature as follows:

# in Cargo.toml
jsonc-parser = { version = "...", features = ["serde"] }

Then you can use the parse_to_serde_value function to get a serde_json::Value:

use jsonc_parser::parse_to_serde_value;

let json_value = parse_to_serde_value(r#"{ "test": 5 } // test"#, &Default::default())?;

Alternatively, use parse_to_ast then call .into() (ex. let value: serde_json::Value = ast.into();).

Parse Strictly as JSON

Provide ParseOptions and set all the options to false:

use jsonc_parser::parse_to_value;
use jsonc_parser::ParseOptions;

let json_value = parse_to_value(text, &ParseOptions {
  allow_comments: false,
  allow_loose_object_property_names: false,
  allow_trailing_commas: false,
})?;

Dependencies

~0–410KB