qql-core 0.3.0

Parser, typed AST, validation, and transformations for the Qdrant Query Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate alloc;

pub mod ast;
pub mod error;
pub mod explain;
pub mod fmt;
pub mod lexer;
pub mod params;
pub mod parser;
pub mod token;

#[cfg(test)]
mod tests;