immutable_json/lib.rs
1//! With this crate, JSON objects and arrays can be transformed in an immutable way, which means
2//! that every "change" leads to a new value. Persistent collections are used internally to make
3//! changes and cloning cheap. Conversions from and to values in the
4//! [`serde_json`](https://docs.rs/serde_json/latest/serde_json/) crate are provided.
5//!
6//! The crate feature `jaq` enables the transformation of JSON with the
7//! [jq language](https://jqlang.org). It is powered by the
8//! [jaq engine](https://github.com/01mf02/jaq).
9pub mod api;
10pub mod array;
11pub mod error;
12#[cfg(feature = "jaq")]
13pub mod jaq;
14pub mod object;
15#[cfg(feature = "patch")]
16pub mod patch;
17pub mod pointer;
18pub mod serde;
19mod util;