Skip to main content

json_escape_simd/
lib.rs

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