You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rusqlite 0.30 is not supported by sea-query-rusqlite 0.4
Steps to Reproduce
Cargo.toml
sea-query = "0.30"sea-query-rusqlite = "0.4"rusqlite = { version = "0.30", features = ["bundled"] }
Will fail to compile because sea-query-rusqlite bundles rusqlite 0.29.
rusqlite = "0.30" without the bundled feature will fail as well.
Expected Behavior
Should compile with the latest rusqlite
Actual Behavior
Fails to compile when rusqlite = "0.30" but works when rusqlite = "0.29".
Reproduces How Often
Always reproducible.
Versions
sea-query = "0.30"
sea-query-rusqlite = "0.4"
The text was updated successfully, but these errors were encountered:
jeremychone
changed the title
rusqlite 0.30 is not supported by sea-query-rusqlite version 0.4
sea-query-rusqlite - rusqlite 0.30 is not supported by sea-query-rusqlite version 0.4
Dec 23, 2023
Here are the typos fixed:
Description
rusqlite 0.30
is not supported bysea-query-rusqlite 0.4
Steps to Reproduce
Will fail to compile because
sea-query-rusqlite
bundlesrusqlite 0.29
.rusqlite = "0.30"
without the bundled feature will fail as well.Expected Behavior
Should compile with the latest
rusqlite
Actual Behavior
Fails to compile when
rusqlite = "0.30"
but works whenrusqlite = "0.29"
.Reproduces How Often
Always reproducible.
Versions
The text was updated successfully, but these errors were encountered: