15 releases

0.4.1 Sep 21, 2021
0.3.0 Nov 24, 2020
0.2.8 Jun 30, 2020
0.2.6 Mar 30, 2020
0.1.0 Jul 30, 2018

#35 in Encoding

Download history 222604/week @ 2024-08-02 239209/week @ 2024-08-09 229329/week @ 2024-08-16 233401/week @ 2024-08-23 212424/week @ 2024-08-30 219631/week @ 2024-09-06 211748/week @ 2024-09-13 227305/week @ 2024-09-20 233475/week @ 2024-09-27 241093/week @ 2024-10-04 233375/week @ 2024-10-11 263284/week @ 2024-10-18 258859/week @ 2024-10-25 252211/week @ 2024-11-01 253558/week @ 2024-11-08 239527/week @ 2024-11-15

1,052,884 downloads per month
Used in 294 crates (134 directly)

ISC license

40KB
956 lines

JSON5

crates.io docs.rs

A Rust JSON5 serializer and deserializer which speaks Serde.

API

Deserialize a JSON5 string with from_str. Go the other way with to_string. The serializer is very basic at the moment, it just produces plain old JSON. See the Serde documentation for details on implementing Serialize and Deserialize. (Usually it's just a case of sprinkling in some derives.)

The Serde data model is mostly supported, with the exception of bytes and borrowed strings.

Example

Read some config into a struct.

use json5;
use serde_derive::Deserialize;

#[derive(Deserialize, Debug, PartialEq)]
struct Config {
    message: String,
    n: i32,
}

fn main() {
    let config = "
        {
          // A traditional message.
          message: 'hello world',

          // A number for some reason.
          n: 42,
        }
    ";

    assert_eq!(
        json5::from_str(config),
        Ok(Config {
            message: "hello world".to_string(),
            n: 42,
        }),
    );
}

Dependencies

~2.2–3MB
~62K SLoC