tidb_pool 0.1.1

A Rust crate that creates a MySQL connection pool for TiDB using a TOML configuration file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[macro_use]
extern crate anyhow;
#[macro_use]
extern crate serde;
#[macro_use]
extern crate tracing;

pub use config::TiDBConfig;
pub use count::Count;
pub use id::ID;
pub use pool::build_pool_from_config;
pub use tables_family::*;

mod config;
mod count;
mod id;
mod pool;
mod tables_family;