simdjson-rust

This crate currently uses simdjson 2.2.2
. You can have a try and give feedback.
Usage
Add this to your Cargo.toml
```toml
In the [dependencies]
section
simdjson-rust = {git = "https://github.com/SunDoge/simdjson-rust"}
```
Then, get started.
```rust
use simdjson_rust::dom;
fn main() -> Result<(), Box> {
let mut parser = dom::Parser::default();
let tweets = parser.load("json-examples/twitter.json")?;
println!(
"{} results.",
tweets
.atkey("searchmetadata")?
.atkey("count")?
.getu64()?
);
Ok(())
}
```
Roadmap
- [x] ParsedJson
- [x] ParsedJsonIterator
- [x] printjson (impl Display)
- [x] ci
- [ ] tests
- [ ] benchmark