json-streaming 1.0.3

a library for reading and writing JSON from / to a stream without the need to materialize the data in memory. Provides both blocking and async APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "blocking")]
#[allow(dead_code)]
pub mod blocking;

#[allow(dead_code)]
pub mod shared;

#[cfg(feature = "non-blocking")]
#[allow(dead_code)]
pub mod nonblocking;