sonic-rs 0.1.3

Sonic-rs is a fast Rust JSON library based on SIMD
Documentation
1
2
3
4
5
6
7
8
9
10
mod get;
mod iterator;
mod value;

pub use get::{get_from, get_from_bytes, get_from_faststr, get_from_slice, get_from_str, get_many};
pub use iterator::{
    to_array_iter, to_object_iter, ArrayIntoIter, ArrayIter, ArrayTryIter, ObjectIntoIter,
    ObjectIter, ObjectTryIter,
};
pub use value::LazyValue;