jmap_tools/
lib.rs

1/*
2 * SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
3 *
4 * SPDX-License-Identifier: Apache-2.0 OR MIT
5 */
6#![doc = include_str!("../README.md")]
7#![deny(rust_2018_idioms)]
8#![forbid(unsafe_code)]
9
10mod json;
11mod pointer;
12
13pub use json::key::Key;
14pub use json::object_vec::{ObjectAsVec, ObjectAsVec as Map};
15pub use json::value::{Element, Null, Property, Value};
16pub use pointer::{JsonPointer, JsonPointerHandler, JsonPointerItem, JsonPointerIter};