1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! # Ruroonga Expr
//!
//! `ruroonga_expr` provides query syntax for Groonga expression.
//!
//! This crate is used for specify searching condition and concatinate conditions.
extern crate regex_syntax;

mod exprable;
#[macro_use]
pub mod macros;
pub mod expr;
pub mod fulltext_expr;
pub mod phrase_expr;
pub mod prefix_expr;
pub mod suffix_expr;
pub mod equal_expr;
pub mod notequal_expr;
pub mod less_expr;
pub mod greater_expr;
pub mod less_equal_expr;
pub mod greater_equal_expr;
pub mod match_expr;
pub mod groupable;
pub mod dsl;