oiseau 0.3.0

Super simple SQL helper
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(any(feature = "postgres", feature = "both"))]
pub mod postgres;
#[cfg(feature = "postgres")]
pub use tokio_postgres::Row as PostgresRow;

#[cfg(any(feature = "sqlite", feature = "both"))]
pub mod sqlite;
#[cfg(feature = "sqlite")]
pub use rusqlite::Row as SqliteRow;