Skip to content

Commit

Permalink
Fix ambiguous imports
Browse files Browse the repository at this point in the history
Since #4442
  • Loading branch information
miguelff committed Nov 20, 2023
1 parent ebb702b commit 7fa8cb9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quaint/src/connector/mssql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//! This module is only available with the `mssql` feature.
pub(crate) mod url;

pub use url::*;
pub use self::url::*;

#[cfg(feature = "mssql-native")]
pub(crate) mod native;
2 changes: 1 addition & 1 deletion quaint/src/connector/mysql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
pub(crate) mod error;
pub(crate) mod url;

pub use self::url::*;
pub use error::MysqlError;
pub use url::*;

#[cfg(feature = "mysql-native")]
pub(crate) mod native;
2 changes: 1 addition & 1 deletion quaint/src/connector/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
pub(crate) mod error;
pub(crate) mod url;

pub use self::url::*;
pub use error::PostgresError;
pub use url::*;

#[cfg(feature = "postgresql-native")]
pub(crate) mod native;

0 comments on commit 7fa8cb9

Please sign in to comment.