-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(quaint): flatten sqlite connector module
- Loading branch information
Showing
8 changed files
with
10 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
pub use wasm::error::SqliteError; | ||
//! Wasm-compatible definitions for the SQLite connector. | ||
//! This module is only available with the `sqlite` feature. | ||
pub(crate) mod error; | ||
mod ffi; | ||
pub(crate) mod params; | ||
|
||
#[cfg(feature = "sqlite")] | ||
pub(crate) mod wasm; | ||
pub use error::SqliteError; | ||
pub use params::*; | ||
|
||
#[cfg(feature = "sqlite-native")] | ||
pub(crate) mod native; |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.