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.
5pub mod api;
6pub mod array;
7pub mod error;
8pub mod object;
9pub mod serde;