aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.rs
blob: 026024afd72100ce18780d2bb438318a55d93f40 (plain)
1
2
3
4
5
6
7
8
9
10
pub mod token;
pub mod serialize;
#[cfg(test)]
pub mod tests;

use pest_derive::Parser;

#[derive(Parser)]
#[grammar = "rst.pest"]
pub struct RstParser;