From d4b55b3e4cdf981dc815901a8b148fae26be42e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jul 2026 22:26:56 +0000 Subject: [PATCH] deps(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.39.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.39.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- aikit-session-capture/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9d23151..0ff6df6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ which = "8.0" # Optional — pulled when `agent-adapters` feature is on. aikit-session-capture = { path = "aikit-session-capture", version = "0.1.0", optional = true } # SQLite for the production EventStore/CursorStore (capture serve surface). -rusqlite = { version = "0.39", features = ["bundled"], optional = true } +rusqlite = { version = "0.40", features = ["bundled"], optional = true } # async trait for the EventStore/CursorStore impls. async-trait = { version = "0.1", optional = true } diff --git a/aikit-session-capture/Cargo.toml b/aikit-session-capture/Cargo.toml index a67ac82..125d315 100644 --- a/aikit-session-capture/Cargo.toml +++ b/aikit-session-capture/Cargo.toml @@ -35,7 +35,7 @@ chrono = { version = "0.4", features = ["serde"] } tracing = "0.1" anyhow = "1" tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "macros", "fs", "time"] } -rusqlite = { version = "0.39", features = ["bundled"], optional = true } +rusqlite = { version = "0.40", features = ["bundled"], optional = true } cli-framework = { git = "https://github.com/aroff/cli-framework", rev = "eaef0191a64faab76a27267567a0358b0c7af0e1", optional = true } notify = { version = "6", optional = true } walkdir = { version = "2", optional = true } @@ -43,4 +43,4 @@ walkdir = { version = "2", optional = true } [dev-dependencies] tempfile = "3" insta = { version = "1", features = ["json"] } -rusqlite = { version = "0.39", features = ["bundled"] } +rusqlite = { version = "0.40", features = ["bundled"] }