Skip to content

Commit

Permalink
move around re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode committed Mar 17, 2020
1 parent 0e3eb7c commit c44084d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ compile_error!("only one of 'runtime-async-std' or 'runtime-tokio' features must
pub use sqlx_core::arguments;
pub use sqlx_core::connection::{Connect, Connection};
pub use sqlx_core::cursor::Cursor;
pub use sqlx_core::database::{Database, HasCursor, HasRawValue, HasRow};
pub use sqlx_core::database::{self, Database};
pub use sqlx_core::describe;
pub use sqlx_core::executor::{Execute, Executor};
pub use sqlx_core::executor::{Execute, Executor, RefExecutor};
pub use sqlx_core::pool::{self, Pool};
pub use sqlx_core::query::{self, query, Query};
pub use sqlx_core::query_as::{query_as, QueryAs};
pub use sqlx_core::row::{FromRow, Row};
pub use sqlx_core::row::{self, FromRow, Row};
pub use sqlx_core::transaction::Transaction;

#[doc(inline)]
Expand Down

0 comments on commit c44084d

Please sign in to comment.