mybatis_core/
lib.rs

1//! Core of mybatis::core, the rust SQL toolkit. Not intended to be used directly.
2
3// #![warn(missing_docs)]
4#![allow(unused_imports)]
5#![allow(unused_assignments)]
6
7#[macro_use]
8extern crate lazy_static;
9#[macro_use]
10extern crate serde_json;
11pub use error::{Error, Result};
12
13#[cfg(feature = "mssql")]
14mod mssql;
15/// database
16#[cfg(feature = "mysql")]
17mod mysql;
18#[cfg(feature = "postgres")]
19mod postgres;
20#[cfg(feature = "sqlite")]
21mod sqlite;
22#[macro_use]
23pub mod error;
24#[macro_use]
25pub mod convert;
26pub mod db;
27pub mod decode;
28pub mod results;
29pub mod types;
30pub mod value;
31pub use types::*;