akar-parser 0.1.15

Cypher parser for the Akar embedded graph database
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Cypher query parser — converts query text to AST.
//!
//! Will replace the existing ANTLR4-based C++ parser with a pest.rs PEG parser.

pub mod ast;
pub mod parser;

#[cfg(test)]
mod parser_test;

pub use parser::parse;