Some notes

This commit is contained in:
Ryan Leckey 2019-08-08 18:18:29 -07:00
parent fd4cc043ed
commit feaa209c33
2 changed files with 2 additions and 1 deletions

View file

@ -32,7 +32,7 @@ pub mod types;
pub mod mariadb;
#[cfg(feature = "postgres")]
pub mod postgres;
mod postgres;
// TODO: This module is not intended to be directly public
pub mod connection;

View file

@ -12,6 +12,7 @@ use std::{
time::Instant,
};
// TODO: Add a sqlx::Connection type so we don't leak the RawConnection
// TODO: Reap old connections
// TODO: Clean up (a lot) and document what's going on
// TODO: sqlx::ConnectOptions needs to be removed and replaced with URIs everywhere