json_parser_hibskyi 0.1.1

A simplified JSON parser written in Rust using the Pest parsing library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
run:
	cargo run -- parse --file request.json

test:
	cargo test

fmt:
	cargo fmt

clippy:
	cargo clippy

build:
	cargo build