Merge pull request #975 from gwenn/authorizer

Fix AuthContext / Authorization visibility
This commit is contained in:
gwenn
2021-06-14 19:54:22 +02:00
committed by GitHub
2 changed files with 9 additions and 9 deletions

View File

@@ -73,8 +73,6 @@ pub use crate::cache::CachedStatement;
pub use crate::column::Column;
pub use crate::error::Error;
pub use crate::ffi::ErrorCode;
#[cfg(feature = "hooks")]
pub use crate::hooks::Action;
#[cfg(feature = "load_extension")]
pub use crate::load_extension_guard::LoadExtensionGuard;
pub use crate::params::{params_from_iter, Params, ParamsFromIter};
@@ -102,7 +100,7 @@ mod context;
#[cfg(feature = "functions")]
pub mod functions;
#[cfg(feature = "hooks")]
mod hooks;
pub mod hooks;
mod inner_connection;
#[cfg(feature = "limits")]
pub mod limits;