styx-parse 3.0.2

Event-based parser for the Styx configuration language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

pub use styx_tokenizer::{Span, Token, TokenKind, Tokenizer};

mod events;
pub use events::{Event, EventKind, ParseErrorKind, ScalarKind};

mod lexer;
pub use lexer::{Lexeme, Lexer};

mod parser;
pub use parser::Parser;