json-toolkit

Crates.iojson-toolkit
lib.rsjson-toolkit
version0.1.1
sourcesrc
created_at2022-08-24 12:49:40.256282
updated_at2022-08-24 13:04:59.901524
descriptionAn utility library providing pointer facilities and extending 3rd-parties JSON types
homepagehttps://github.com/alekece/json-toolkit-rs
repositoryhttps://github.com/alekece/json-toolkit-rs
max_upload_size
id651635
size39,695
Alexis Le Provost (alekece)

documentation

README

crates.io MIT licensed Documentation CI codecov

json-toolkit

The json-toolkit crate exposes all the common manipulation/validation operation expected from a JSON pointer and support several JSON value representation :

  • Encode RFC6901 representation in Pointer type.
  • Manipulate any JSON value by a JSON pointer.
use json_toolkit::{ValueExt, Pointer};
use serde_json::{Value, json};

let mut json = json!({ "foo": "bar", "zoo": { "id": 1 } });

json.insert_at(&Pointer::new("/zoo/new_field").unwrap(), "new_value").unwrap();
assert_eq!(json, json!({ "foo": "bar", "zoo": { "id": 1, "new_field": "new_value" } }));

let old_value = json.insert("foo".to_string(), 42).unwrap();
assert_eq!(old_value, Some("bar".into()));
assert_eq!(json, json!({ "foo": 42, "zoo": { "id": 1, "new_field": "new_value" } }));

let id = ValueExt::pointer(&json, &Pointer::new("/zoo/id").unwrap());
assert_eq!(id, Some(&1.into()));

Features

json-toolkit supports several JSON value representation, and has features that may be enabled or disabled :

License

Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)

Commit count: 12

cargo fmt