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
- Host: GitHub
- URL: https://github.com/ryzeon-dev/rsjson
- Owner: ryzeon-dev
- License: agpl-3.0
- Created: 2024-02-16T09:43:07.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-23T10:15:34.000Z (2 months ago)
- Last Synced: 2025-03-23T10:16:50.125Z (2 months ago)
- Topics: json, rust
- Language: Rust
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
```