From 2258fc08a691eacb990fae716ad86bfc9ae19259 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 00:23:00 +0000 Subject: [PATCH] chore(deps): update rusqlite requirement from 0.31 to 0.38 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.31.0...v0.38.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.38.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 09e5f22..5074f74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -93,7 +93,7 @@ smallvec = "1.13" # スタック最適化ベクター strsim = "0.11" # Levenshtein distance, Jaro-Winkler等 # 履歴管理(SQLite) -rusqlite = { version = "0.31", features = ["bundled"] } # SQLite データベース +rusqlite = { version = "0.38", features = ["bundled"] } # SQLite データベース # プラグインシステム libloading = { version = "0.9", optional = true } # 動的ライブラリロード