commit | ef10479e3df1e521d30563191765e03234bc367e | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Sep 29 01:14:44 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Sep 29 01:14:44 2023 +0000 |
tree | 4973938630bbb627309611a2f616e4a5ca2e7063 | |
parent | bd1983966700322dfdeb452f8d14d1cea9d309b3 [diff] | |
parent | 7094db7db9a37ed6d7475c296a405d6dc97dce1b [diff] |
Snap for 10878163 from 7094db7db9a37ed6d7475c296a405d6dc97dce1b to 24D1-release Change-Id: Id01d1f2392e727740d722eb03fa4fa556aac793e
tinyjson is a library to parse/generate JSON format document.
Goals of this library are
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.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).Rust stable toolchain.
Add this crate to dependencies
section of your Cargo.toml
[dependencies] tinyjson = "2"
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.
https://github.com/rhysd/tinyjson