1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Unicode validation and transcoding at billions of characters per second.
//!
//! This crate is the Rust binding of [simdutf].
//!
//! ## Compilation
//!
//! This crate works out of the box as long as
//! you have a C++11-compatible toolchain installed correctly.
//!
//! [simdutf] links C++ standard library, which adds a dynamic linking dependency.
//!
//! For more details, see [simdutf] documentation and [cc] documentation.
//!
//! Here is an example for local benchmark:
//!
//! ```bash
//! export RUSTFLAGS='-C target-cpu=native'
//! export CXXFLAGS='-march=native'
//! cargo build --release
//! ```
//!
//! [simdutf]: https://github.com/simdutf/simdutf
//! [cc]: https://github.com/rust-lang/cc-rs
//!
pub use *;
pub use *;