From 21ddab2f49720cde3691d2dcf43461849296cc7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 14:12:00 +0000 Subject: [PATCH 1/2] Update rusqlite requirement from 0.35.0 to 0.36.0 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.35.0...v0.36.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.36.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f1513a2..6ca3db6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ window = ["rusqlite/window"] crossbeam-channel = { version = "0.5" } futures-channel = { version = "0.3" } futures-util = { version = "0.3" } -rusqlite = { version = "0.35.0" } +rusqlite = { version = "0.36.0" } [dev-dependencies] async-std = { version = "1.12.0" } From 31cca2dc917186a987efa80403f2eac35b5163d2 Mon Sep 17 00:00:00 2001 From: Ryan Fowler Date: Mon, 26 May 2025 13:27:21 -0700 Subject: [PATCH 2/2] Fix rusqlite Name build error --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 251a057..0886ca5 100644 --- a/src/client.rs +++ b/src/client.rs @@ -172,7 +172,7 @@ impl Client { fn create_conn(mut builder: ClientBuilder) -> Result { let path = builder.path.take().unwrap_or_else(|| ":memory:".into()); let conn = if let Some(vfs) = builder.vfs.take() { - Connection::open_with_flags_and_vfs(path, builder.flags, &vfs)? + Connection::open_with_flags_and_vfs(path, builder.flags, vfs.as_str())? } else { Connection::open_with_flags(path, builder.flags)? };