13 stable releases

2.5.1 Dec 31, 2022
2.5.0 Sep 18, 2022
2.3.0 Apr 26, 2021
2.2.0 Nov 8, 2020
0.0.2 Jul 18, 2016

#58 in Encoding

Download history 95096/week @ 2023-12-04 95980/week @ 2023-12-11 76954/week @ 2023-12-18 39741/week @ 2023-12-25 61431/week @ 2024-01-01 83948/week @ 2024-01-08 109098/week @ 2024-01-15 115213/week @ 2024-01-22 129252/week @ 2024-01-29 135022/week @ 2024-02-05 131212/week @ 2024-02-12 139413/week @ 2024-02-19 142933/week @ 2024-02-26 121445/week @ 2024-03-04 102135/week @ 2024-03-11 106302/week @ 2024-03-18

485,250 downloads per month
Used in 31 crates (15 directly)

MIT license

56KB
920 lines

tinyjson

version CI

tinyjson is a library to parse/generate JSON format document.

Goals of this library are

  • Simplicity: This library uses standard containers like Vec or HashMap as its internal representation and exposes it to users. Users can operate JSON values via the standard APIs. And it keeps this crate as small as possible.
  • Explicit: This library does not hide memory allocation from users. You need to allocate memory like Vec, String, HashMap by yourself. It is good for readers of your source code to show where memory allocations happen. And you can have control of how memory is allocated (e.g. allocating memory in advance with with_capacity method).
  • No dependencies: This library is built on top of only standard libraries.
  • No unsafe code: This library is built with Safe Rust.
  • Well tested: This library is tested with famous test suites:

Documentation

Requirements

Rust stable toolchain.

Installation

Add this crate to dependencies section of your Cargo.toml

[dependencies]
tinyjson = "2"

Example

use tinyjson::JsonValue;
use std::collections::HashMap;
use std::convert::TryInto;

let s = r#"
    {
        "bool": true,
        "arr": [1, null, "test"],
        "nested": {
            "blah": false,
            "blahblah": 3.14
        },
        "unicode": "\u2764"
    }
"#;

// Parse from strings
let parsed: JsonValue = s.parse().unwrap();

// Access to inner value represented with standard containers
let object: &HashMap<_, _> = parsed.get().unwrap();
println!("Parsed HashMap: {:?}", object);

// Generate JSON string
println!("{}", parsed.stringify().unwrap());
// Generate formatted JSON string with indent
println!("{}", parsed.format().unwrap());

// Convert to inner value represented with standard containers
let object: HashMap<_, _> = parsed.try_into().unwrap();
println!("Converted into HashMap: {:?}", object);

// Create JSON values from standard containers
let mut m = HashMap::new();
m.insert("foo".to_string(), true.into());
let mut v = JsonValue::from(m);

// Access with `Index` and `IndexMut` operators quickly
println!("{:?}", v["foo"]);
v["foo"] = JsonValue::from("hello".to_string());
println!("{:?}", v["foo"]);

See the document to know all APIs.

Repository

https://github.com/rhysd/tinyjson

License

the MIT License

No runtime deps