toql_sql_expr_parser 0.4.0

Library with SQL expression parser for Toql
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The SQL expression parser is used by the `sql_expr!` macro to compile a SQL expression into programm code.
//!
//! The parser is written with [Pest](https://pest.rs/).

extern crate pest;
#[macro_use]
extern crate pest_derive;

#[derive(Parser)]
#[grammar = "sql_expr.pest"]
pub struct PestSqlExprParser;