1 2 3 4 5 6 7 8 9 10 11
mod entity_crud; #[cfg(feature = "mysql")] mod mysql; #[cfg(feature = "postgresql")] mod postgresql; #[cfg(feature = "postgresql_async")] pub mod postgresql_async; #[cfg(feature = "sqlite")] mod sqlite; #[cfg(feature = "sqlite_async")] pub mod sqlite_async;