-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(driver-adapters): enable Wasm on quaint
and related crates
#4442
Merged
Merged
Changes from 13 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
61ef25b
feat(quaint): allow wasm32-unknown-unknown compilation; currently fai…
jkomyno 055e696
feat(quaint): split postgres connector into native and wasm submodules
jkomyno 12c6ebb
feat(quaint): split mysql connector into native and wasm submodules
jkomyno 060486d
feat(quaint): recover wasm error for mysql
jkomyno 5de1dc0
feat(quaint): split mssql connector into native and wasm submodules
jkomyno 8ecbc5c
feat(quaint): split sqlite connector into native and wasm submodules
jkomyno 45df24f
chore(quaint): fix clippy when compiling natively
jkomyno 6a1f733
chore(quaint): fix clippy when compiling to wasm32-unknown-unknown
jkomyno e61bf75
chore(quaint): update README
jkomyno 257c4c8
chore(quaint): rename "*-connector" feature flag to "*-native"
jkomyno 5ab6d96
feat(quaint): enable pure Wasm SqliteError
jkomyno ab65c95
feat(query-connect): allow wasm32-unknown-unknown compilation
jkomyno 485f6dc
Merge branch 'main' into feat/quaint-on-wasm32-unknown-unknown
jkomyno c987dce
WIP: refactor mysql module to flatten its structure
miguelff 626bc1e
feat(quaint): flatten mssql connector module
jkomyno a9f8ba8
feat(quaint): flatten postgres connector module
jkomyno 3c1a100
feat(quaint): flatten sqlite connector module
jkomyno 7f4c8f9
chore(quaint): export all public definitions in connector "url" modules
jkomyno 95a4e28
chore(quaint): refactor tests for connectors, addressing feedback
jkomyno bacb635
chore: add comment on MysqlAsyncError
jkomyno 263bab0
chore: add comment on ffi.rs for sqlite
jkomyno 6a754b3
Merge branch 'main' into feat/quaint-on-wasm32-unknown-unknown
a1c2b40
Merge branch 'main' into feat/quaint-on-wasm32-unknown-unknown
jkomyno File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,6 +68,7 @@ features = [ | |
"pooled", | ||
"postgresql", | ||
"sqlite", | ||
"native", | ||
] | ||
|
||
[profile.dev.package.backtrace] | ||
|
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
bundled
feature forrusqlite
is enabled when thesqlite-native
feature ofquaint
(implied bynative
andall
) is turned on.