Skip to content

Commit 12e58d0

Browse files
authored
Support rusqlite 0.37.x (#389) (#390)
1 parent 3fa178f commit 12e58d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ enums = ["refinery/enums"]
1313

1414
[dependencies]
1515
refinery = { path = "../refinery", features = ["rusqlite"] }
16-
rusqlite = "0.35"
16+
rusqlite = "0.37"
1717
barrel = { version = "0.7", features = ["sqlite3"] }
1818
log = "0.4"
1919
env_logger = "0.11"

refinery_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ url = "2.0"
2929
walkdir = "2.3.1"
3030

3131
# allow multiple versions of the same dependency if API is similar
32-
rusqlite = { version = ">= 0.23, <= 0.35", optional = true }
32+
rusqlite = { version = ">= 0.23, <= 0.37", optional = true }
3333
postgres = { version = ">=0.17, <= 0.19", optional = true }
3434
tokio-postgres = { version = ">= 0.5, <= 0.7", optional = true }
3535
mysql = { version = ">= 21.0.0, <= 26", optional = true, default-features = false, features = ["minimal"] }

0 commit comments

Comments
 (0)