-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from giuseppe-g-gelardi/async
start add async features
- Loading branch information
Showing
7 changed files
with
230 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
pub mod columns; | ||
pub mod database; | ||
pub mod errors; | ||
pub mod query; | ||
pub mod row; | ||
pub mod table; | ||
pub mod util; | ||
pub mod errors; | ||
pub mod view; | ||
|
||
pub use columns::{Column, Columns}; | ||
pub use database::Database; | ||
pub use errors::errors::DatabaseError; | ||
pub use query::Query; | ||
pub use row::Row; | ||
pub use table::Table; | ||
pub use util::setup_temp_db; | ||
pub use errors::errors::DatabaseError; | ||
pub use view::View; | ||
|
||
#[cfg(feature = "async")] | ||
pub use util::setup_temp_db_async; |
Oops, something went wrong.