Skip to content

Commit

Permalink
feat(sea-query-rusqlite): Allow rusqlite 0.30
Browse files Browse the repository at this point in the history
Signed-off-by: Natsuki Ikeguchi <[email protected]>
  • Loading branch information
siketyan committed Dec 29, 2023
1 parent 99c0747 commit 033ec9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ time = { version = "0.3", features = ["parsing", "macros"] }
serde_json = { version = "1" }
# rusqlite only supports uuid 0
uuid = { version = "1", features = ["serde", "v4"] }
rusqlite = "0.29"
rusqlite = "0.30"
sea-query = { path = "../.."}
sea-query-rusqlite = { path = "../../sea-query-rusqlite", features = [
"with-chrono",
Expand Down
2 changes: 1 addition & 1 deletion sea-query-rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.60"

[dependencies]
sea-query = { version = "0.30", path = "..", default-features = false }
rusqlite = { version = "0.29", default-features = false, features = ["bundled"] }
rusqlite = { version = ">=0.29, <0.31", default-features = false, features = ["bundled"] }

[features]
with-chrono = ["rusqlite/chrono", "sea-query/with-chrono"]
Expand Down

0 comments on commit 033ec9e

Please sign in to comment.