1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![allow(unused_imports)]
#![allow(unreachable_patterns)]
#![allow(unused_variables)]
#![allow(unused_assignments)]
#![allow(unused_must_use)]
#![forbid(unsafe_code)]

#[macro_use]
extern crate lazy_static;
extern crate once_cell;
#[macro_use]
extern crate serde_json;
extern crate serde_yaml;

pub mod ast;
pub mod utils;
pub mod engine;
pub mod decode;
pub mod plugin;
pub mod rbatis;
pub mod sql;
pub mod crud;
pub mod wrapper;