from-pest 0.3.1

Convert from a pest grammar to a typed AST
Documentation
1
2
3
field = { (ASCII_DIGIT | "." | "-")+ }
record = { field ~ ("," ~ field)* }
file = { SOI ~ (record ~ ("\r\n" | "\n"))* ~ EOI }