von 0.0.0

Virtual Object Notation
Documentation
1
2
3
4
5
6
7
8
use peginator::buildscript::Compile;
use std::{env::current_dir, path::PathBuf};

fn main() {
    let path = PathBuf::from(current_dir().unwrap());
    let output = path.join("src/parser/von.rs");
    Compile::file("src/parser/von.peg").destination(output).format().run().unwrap();
}