From af0c0c27e1ec2bfcebd3184931ce62d7f3b0b911 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 23:56:52 +0000 Subject: [PATCH] chore(deps): update rusqlite requirement from 0.39 to 0.40 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.39.0...v0.40.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.40.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/teamtalk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/teamtalk/Cargo.toml b/crates/teamtalk/Cargo.toml index a173d99..db3d564 100644 --- a/crates/teamtalk/Cargo.toml +++ b/crates/teamtalk/Cargo.toml @@ -43,7 +43,7 @@ tracing = { version = "0.1.44", optional = true } mlua = { version = "0.11.6", features = ["lua54", "vendored"], optional = true } libloading = { version = "0.9.0", optional = true } redis = { version = "1.2.0", optional = true } -rusqlite = { version = "0.39", optional = true, features = ["bundled"] } +rusqlite = { version = "0.40", optional = true, features = ["bundled"] } teamtalk-macros = { workspace = true, optional = true } serde = { version = "1.0.228", features = ["derive"], optional = true } serde_json = { version = "1.0.149", optional = true }