From a7938e848a1feb57fdd0ee2a1a6c9b74fe397db8 Mon Sep 17 00:00:00 2001 From: Ayrat Badykov Date: Sun, 21 Apr 2024 19:35:34 +0300 Subject: [PATCH] fix: fix blocking features --- fang/src/blocking.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/fang/src/blocking.rs b/fang/src/blocking.rs index 16e36385..d32a9af0 100644 --- a/fang/src/blocking.rs +++ b/fang/src/blocking.rs @@ -1,9 +1,16 @@ mod error; + +#[cfg(feature = "blocking-mysql")] pub mod mysql_schema; + +#[cfg(feature = "blocking-sqlite")] +pub mod sqlite_schema; + +#[cfg(feature = "blocking-postgres")] pub mod postgres_schema; + pub mod queue; pub mod runnable; -pub mod sqlite_schema; pub mod worker; pub mod worker_pool;