py_sql 1.0.1

Rust SQL wrapper lang
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(unused_assignments)]
#![allow(unused_variables)]

pub mod ast;
pub mod error;
pub mod node;
pub mod py_sql;
pub mod string_util;
#[macro_use]
extern crate serde_json;
pub use node::string_node::StringConvert;

pub use rexpr::runtime::RExprRuntime;