Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shxntanu/json-parser-rust

πŸ¦€ JSON Parser implemented in Rust
https://github.com/shxntanu/json-parser-rust

portfolio rust

Last synced: 15 days ago
JSON representation

πŸ¦€ JSON Parser implemented in Rust

Awesome Lists containing this project

README

        

# JSON Parser - Rust πŸ¦€

> [Challenge](https://codingchallenges.fyi/challenges/challenge-json-parser)

> Help from [Piyush Agarwal](https://github.com/piyushhagarwal)

JSON (which stands for JavaScript Object Notation) is a lightweight data-interchange format, which is widely used for transmitting data over the Internet. It is formally defined by the IETF here: https://tools.ietf.org/html/std90 or there’s a simpler graphical representation here: https://www.json.org/json-en.html

Parsing is often broken up into two stages: lexical analysis and syntactic analysis.

Lexical analysis is the process of dividing a sequence of characters into meaningful chunks, called tokens. Syntactic analysis (which is also sometimes referred to as parsing) is the process of analysing the list of tokens to match it to a formal grammar.