Skip to content

Commit a987eae

Browse files
Merge pull request #29 from ryanfowler/dependabot/cargo/rusqlite-0.36.0
Update rusqlite requirement from 0.35.0 to 0.36.0
2 parents 6f61835 + 31cca2d commit a987eae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ window = ["rusqlite/window"]
4545
crossbeam-channel = { version = "0.5" }
4646
futures-channel = { version = "0.3" }
4747
futures-util = { version = "0.3" }
48-
rusqlite = { version = "0.35.0" }
48+
rusqlite = { version = "0.36.0" }
4949

5050
[dev-dependencies]
5151
async-std = { version = "1.12.0" }

src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ impl Client {
172172
fn create_conn(mut builder: ClientBuilder) -> Result<Connection, Error> {
173173
let path = builder.path.take().unwrap_or_else(|| ":memory:".into());
174174
let conn = if let Some(vfs) = builder.vfs.take() {
175-
Connection::open_with_flags_and_vfs(path, builder.flags, &vfs)?
175+
Connection::open_with_flags_and_vfs(path, builder.flags, vfs.as_str())?
176176
} else {
177177
Connection::open_with_flags(path, builder.flags)?
178178
};

0 commit comments

Comments
 (0)