diff --git a/examples/Cargo.toml b/examples/Cargo.toml index f999299..91638ca 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -13,7 +13,7 @@ enums = ["refinery/enums"] [dependencies] refinery = { path = "../refinery", features = ["rusqlite"] } -rusqlite = "0.35" +rusqlite = "0.36" barrel = { version = "0.7", features = ["sqlite3"] } log = "0.4" env_logger = "0.11" diff --git a/refinery_core/Cargo.toml b/refinery_core/Cargo.toml index 6763bb2..587864a 100644 --- a/refinery_core/Cargo.toml +++ b/refinery_core/Cargo.toml @@ -29,7 +29,7 @@ url = "2.0" walkdir = "2.3.1" # allow multiple versions of the same dependency if API is similar -rusqlite = { version = ">= 0.23, <= 0.35", optional = true } +rusqlite = { version = ">= 0.23, <= 0.36", optional = true } postgres = { version = ">=0.17, <= 0.19", optional = true } tokio-postgres = { version = ">= 0.5, <= 0.7", optional = true } mysql = { version = ">= 21.0.0, <= 26", optional = true, default-features = false, features = ["minimal"] }