guarding_parser 0.2.6

Guarding is a guardians for code, architecture, layered. Guarding crate a architecture aguard DSL which based on ArchUnit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate pest;
#[macro_use]
extern crate pest_derive;
extern crate serde;

pub use parser::parse;

pub mod ast;
pub mod validator;
pub mod parser;
pub mod errors;
pub mod support;