mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-12 23:37:13 +00:00
Some notes
This commit is contained in:
parent
fd4cc043ed
commit
feaa209c33
2 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue