Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
4 changes: 2 additions & 2 deletions aikit-session-capture/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ 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 }

[dev-dependencies]
tempfile = "3"
insta = { version = "1", features = ["json"] }
rusqlite = { version = "0.39", features = ["bundled"] }
rusqlite = { version = "0.40", features = ["bundled"] }
Loading