Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 372 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 372 Bytes

Overview

Learning project to attempt to build a JSON parser/stringify module in Rust. Comprised of:

  • lexer module, to generate tokens from raw string
  • parser module, to build Vec & HashMap structures from sequences of tokens
  • json module, to expose public methods (parse/stringify)

Run

cargo watch -c -w src -x run

Clean

cargo clean