Enable SIMD-accelerated parsing
masterThe tl parser includes optimized utility functions that use SIMD (Single Instruction, Multiple Data) to process bytes more efficiently.
To use these, you must:
- Enable the
simdfeature flag in yourCargo.toml. - Use a nightly Rust compiler, as the feature relies on the unstable
portable_simdnightly feature.
If the simd feature is not enabled, the crate falls back to highly optimized stable alternatives using manual loop unrolling.