diff --git a/crates/mcp/src/main.rs b/crates/mcp/src/main.rs index 6a1cc70..54151cb 100644 --- a/crates/mcp/src/main.rs +++ b/crates/mcp/src/main.rs @@ -129,7 +129,6 @@ fn wire_repositories(pool: &DbPool) -> anyhow::Result { library_query: w.library_query, }) } - #[cfg(not(any(feature = "sqlite", feature = "postgres")))] _ => anyhow::bail!("database backend not compiled into this binary"), } } diff --git a/crates/presentation/src/factory.rs b/crates/presentation/src/factory.rs index a6503d2..159478e 100644 --- a/crates/presentation/src/factory.rs +++ b/crates/presentation/src/factory.rs @@ -210,7 +210,6 @@ fn wire_repositories(pool: &DbPool) -> anyhow::Result { provider_config_query: w.provider_config_query, }) } - #[cfg(not(any(feature = "sqlite", feature = "postgres")))] _ => anyhow::bail!("database backend not compiled into this binary"), } }