json-pawarser: init

This commit is contained in:
Schrottkatze 2024-10-18 14:05:27 +02:00
commit becc4b4041
No known key found for this signature in database
9 changed files with 224 additions and 11 deletions

View file

@ -1,2 +1,8 @@
#![feature(iter_collect_into)]
pub mod parser;
pub use parser::{
error::SyntaxError,
marker::{CompletedMarker, Marker},
Parser, SyntaxElement,
};