https://github.com/stenbror/rust_json_macro
A short example implementation of json macro for parsing
https://github.com/stenbror/rust_json_macro
json macro rust unittest
Last synced: 2 months ago
JSON representation
A short example implementation of json macro for parsing
- Host: GitHub
- URL: https://github.com/stenbror/rust_json_macro
- Owner: stenbror
- Created: 2024-06-01T16:55:14.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-01T17:08:14.000Z (about 2 years ago)
- Last Synced: 2025-03-11T20:19:11.066Z (over 1 year ago)
- Topics: json, macro, rust, unittest
- Language: Rust
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A short Rust program with full implementation of json parser macro
Just a simple implmentation of json macro for parsing from text to Rust objects.
## To build, test and execute do as follows:
1. Build project
```
cargo build
```
2. Execute all unittests
```
cargo test
```
3. Execute program and see an example json in parsed result.
```
cargo run
```