merc_syntax 2.0.0

Provides an AST and Pest grammar for the mCRL2 specification language.
Documentation
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]

mod builder;
mod consume;
mod counterexample_formula;
mod parse;
mod precedence;
mod syntax_tree;
mod syntax_tree_display;
mod visitor;

pub use builder::*;
pub use consume::*;
pub use counterexample_formula::*;
pub use parse::*;
pub use precedence::*;
pub use syntax_tree::*;
pub use syntax_tree_display::*;
pub use visitor::*;