Skip to content

Commit 3fa178f

Browse files
authored
Support rusqlite 0.35.x (#380) (#381)
1 parent c5cd69e commit 3fa178f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.31"
16+
rusqlite = "0.35"
1717
barrel = { version = "0.7", features = ["sqlite3"] }
1818
log = "0.4"
19-
env_logger = "0.11"
19+
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.34", optional = true }
32+
rusqlite = { version = ">= 0.23, <= 0.35", 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)