jmap-tools 0.1.4

JMAP object parser with JSON Pointer querying and patching support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
 *
 * SPDX-License-Identifier: Apache-2.0 OR MIT
 */
#![doc = include_str!("../README.md")]
#![deny(rust_2018_idioms)]
#![forbid(unsafe_code)]

mod json;
mod pointer;

pub use json::key::Key;
pub use json::object_vec::{ObjectAsVec, ObjectAsVec as Map};
pub use json::value::{Element, Null, Property, Value};
pub use pointer::{JsonPointer, JsonPointerHandler, JsonPointerItem, JsonPointerIter};