1#![feature(cold_path)]
2#![feature(likely_unlikely)]
3#![feature(read_buf)]
4#![feature(core_io_borrowed_buf)]
5
6mod buffer;
7mod buffer_pool;
8pub mod constant;
9pub mod error;
10pub mod handler;
11mod opts;
12mod prepared;
13pub mod protocol;
14pub mod raw;
15pub mod sync;
16pub mod value;
17
18pub use buffer::BufferSet;
19pub use buffer_pool::BufferPool;
20pub use opts::Opts;
21pub use prepared::PreparedStatement;
22
23#[cfg(feature = "tokio")]
24pub mod tokio;
25
26#[cfg(test)]
27mod buffer_test;
28#[cfg(test)]
29mod constant_test;
30#[cfg(test)]
31mod opts_test;
32#[cfg(test)]
33mod value_test;