fuga_json_seq_parser/
lib.rs

1// main source file of fuga-json-seq-parser crate
2// Copyright 2023 Kenta Ida 
3// SPDX-License-Identifier: MIT
4//
5
6//! # fuga-json-seq-parser crate
7//!
8//! `fuga-json-seq-parser` is a a JSON Parser which parses JSON data sequentially, and do not generate any large deserialized data structure while parsing.
9
10#![no_std]
11mod json;
12
13pub use json::*;