lucene-query-syntax 0.1.0

Parses a subset of the Apache Lucene query syntax
Documentation
1
2
3
4
5
6
7
8
mod ast;
mod parser;

pub use ast::*;

pub fn parse(input: &[u8]) -> Result<Node, pom::Error> {
    parser::query().parse(input)
}