fix(router): feature gate openssl deps for basilisk feature (#536)

This commit is contained in:
Sampras Lopes
2023-02-11 14:10:58 +05:30
committed by GitHub
parent 1ba6b8c9f8
commit e4956820fd
4 changed files with 18 additions and 10 deletions

View File

@ -1,11 +1,14 @@
pub mod api;
pub mod authentication;
#[cfg(feature = "basilisk")]
pub mod encryption;
pub mod logger;
use std::sync::Arc;
pub use self::{api::*, encryption::*};
pub use self::api::*;
#[cfg(feature = "basilisk")]
pub use self::encryption::*;
use crate::connection::{diesel_make_pg_pool, PgPool};
#[derive(Clone)]