1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[cfg(feature = "postgres")] pub mod postgres; #[cfg(feature = "mysql")] pub mod mysql; #[cfg(feature = "mssql")] pub mod mssql; #[cfg(feature = "sqlite")] pub mod sqlite; #[cfg(feature = "oracle")] pub mod oracle;