-
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.
update cargo.toml for development other wise async is pain. prepare t…
…o setup for separate crates to reduce confusion
- Loading branch information
1 parent
754e7e7
commit 783aa5f
Showing
4 changed files
with
107 additions
and
3 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 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; |
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