1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//! Core of rbatis_core, the rust SQL toolkit. Not intended to be used directly.


// When compiling with support for SQLite we must allow some unsafe code in order to

// interface with the inherently unsafe C module. This unsafe code is contained

// to the sqlite module.

#![cfg_attr(feature = "sqlite", deny(unsafe_code))]
#![cfg_attr(not(feature = "sqlite"), forbid(unsafe_code))]
#![recursion_limit = "512"]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(all(test, feature = "bench"), feature(test))]
// #![warn(missing_docs)]

#![allow(unused_imports)]
#![allow(unused_assignments)]

#[cfg(all(test, feature = "bench"))]
extern crate test;

// HACK: Allow a feature name the same name as a dependency

#[cfg(feature = "bigdecimal")]
extern crate bigdecimal_ as bigdecimal;

mod runtime;

#[macro_use]
pub mod error;

#[cfg(any(feature = "mysql", feature = "postgres"))]
#[macro_use]
mod io;

pub mod connection;
pub mod cursor;
pub mod database;
pub mod value;

#[macro_use]
pub mod executor;

pub mod transaction;
mod url;

#[macro_use]
pub mod arguments;
pub mod decode;

#[doc(hidden)]
pub mod describe;

pub mod encode;
pub mod pool;
pub mod query;

#[macro_use]
pub mod query_as;

pub mod types;

#[macro_use]
pub mod row;


#[cfg_attr(docsrs, doc(cfg(feature = "mysql")))]
pub mod mysql;


#[cfg_attr(docsrs, doc(cfg(feature = "postgres")))]
pub mod postgres;

#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
pub mod sqlite;

pub use error::{Error, Result};

pub mod db;

pub mod convert;

pub mod sync;