soil_rt/json/mod.rs
1//! The canonical JSON bridge (tr-grammar §7).
2//!
3//! One value format serves `show`/`parse`, tests, the REPL, FFI
4//! marshalling, and host stubs. Encoding is canonical — equal values
5//! produce byte-equal output — and decoding is always type-directed.
6
7mod decode;
8pub(crate) mod encode;
9
10pub use decode::decode;
11pub use encode::encode;