summaryrefslogtreecommitdiff
path: root/xmd/src/lib.rs
blob: 8c98a57df444e1d5d23885a3faecad58e82bf450 (plain)
1
2
3
4
5
6
7
8
extern crate pest;
#[macro_use]
extern crate pest_derive;

use pest::Parser;
#[derive(Parser)]
#[grammar = "csv.pest"]
pub struct CSVParser;