An open API service indexing awesome lists of open source software.

https://github.com/ryzeon-dev/rsjson

Json file parser library
https://github.com/ryzeon-dev/rsjson

json rust

Last synced: about 2 months ago
JSON representation

Json file parser library

Awesome Lists containing this project

README

        

# 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.6.1"
```
- or run the following command in terminal:
```bash
cargo add rsjson
```

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