json-escape-simd 3.1.2

Optimized SIMD routines for escaping JSON strings.
Documentation
1
2
3
4
5
6
7
8
//! Optimized SIMD routines for escaping JSON strings.
//!
//! Thin facade over [`escape_simd::json`]. The implementation is from
//! [sonic-rs](https://github.com/cloudwego/sonic-rs); we only take the string
//! escaping part to avoid the abstraction overhead.

#[doc(inline)]
pub use escape_simd::json::{escape, escape_into};