ascesis 0.0.5

A language for analysis and synthesis of cause-effect synchronised interacting systems
Documentation
fn main() {
    let mut conf = lalrpop::Configuration::new();
    let conf = conf.use_cargo_dir_conventions();

    conf.process_file("src/ascesis_parser.lalrpop").unwrap();
    conf.process_file("src/bnf_parser.lalrpop").unwrap();

    println!("cargo:rerun-if-changed=src/ascesis_parser.lalrpop");
    println!("cargo:rerun-if-changed=src/bnf_parser.lalrpop");
}