rsjson 0.3.2

Json parser library
Documentation
# rsjson
- Json file parser library

---
[crates.io repository](https://crates.io/crates/rsjson)

[docs.rs documentation](https://docs.rs/rsjson/latest/rsjson/)

---
# Installation
- add to your Cargo.toml:
```toml
...
[dependencies]
rsjson = "0.3.2"
```
- or run the following command in terminal:
```bash
cargo add rsjson
```

# Importation
- include the following line to your code
```rust
use rsjson;
```