Skip to main content

akar_parser/
lib.rs

1//! Cypher query parser — converts query text to AST.
2//!
3//! Will replace the existing ANTLR4-based C++ parser with a pest.rs PEG parser.
4
5pub mod ast;
6pub mod parser;
7
8#[cfg(test)]
9mod parser_test;
10
11pub use parser::parse;