SIMD Json for Rust

Rust port of extremely fast simdjson JSON parser with serde compatibility.
readme (for real!)
CPU target
For taking advantage of simdjson your system needs to be SIMD compatible. This means to compile with native cpu support and the given features. Look at The cargo config in this repository to get an example.
jemalloc
If you are writing perormance centric code, make sure to use jemalloc and not the system allocator (that has now become default in rust), it gives an very noticable boost imperformance.
Other interesting things
There are also bindings for simdjson available here
License
simdjson-rs itself is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.
However it ports a lot of code from simdjson so their work and copyright on that should be respected along side.
The serde integration is based on their example and serde-json so again, their copyright should as well be respected.