Skip to content

Commit

Permalink
bump rusqlite to 0.31
Browse files Browse the repository at this point in the history
  • Loading branch information
jerebtw committed Feb 17, 2024
1 parent f4ab22b commit 04c28dd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "r2d2_sqlite"
version = "0.23.0"
authors = ["Jovansonlee Cesar <[email protected]>", "Hugo Woesthuis <[email protected]>", "Jerebtw <[email protected]>"]
authors = [
"Jovansonlee Cesar <[email protected]>",
"Hugo Woesthuis <[email protected]>",
"Jerebtw <[email protected]>",
]
license = "MIT"
description = "SQLite and SQLCipher support for the r2d2 connection pool"
repository = "https://github.com/ivanceras/r2d2-sqlite"
Expand All @@ -15,7 +19,6 @@ path = "src/lib.rs"
test = false



[[test]]
name = "test"
path = "tests/test.rs"
Expand All @@ -25,16 +28,16 @@ r2d2 = "0.8"
uuid = { version = "1.0", features = ["v4", "fast-rng"] }

[dependencies.rusqlite]
version = "0.30"
version = "0.31"

[dev-dependencies]
tempfile = "3"

[dev-dependencies.rusqlite]
version = "0.30"
version = "0.31"
features = ["trace"]


[features]
bundled = [ "rusqlite/bundled" ]
bundled = ["rusqlite/bundled"]
bundled-sqlcipher = ["rusqlite/bundled-sqlcipher"]

0 comments on commit 04c28dd

Please sign in to comment.