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
64 changes: 42 additions & 22 deletions platforms/cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion platforms/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ clap = { version = "4", features = ["derive"] }
# the same versions means Cargo unifies them (no new crates in the lock graph).
# rusqlite for the read/write SQL the CLI runs against the engine's DB; the
# engine's wider feature set (blob/chrono/limits/modern_sqlite) is unified in.
rusqlite = { version = "0.31", features = ["bundled"] }
rusqlite = { version = "0.40", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
Expand Down
2 changes: 1 addition & 1 deletion platforms/windows/src/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4.20", features = ["serde"] }

# SQLite. Bundled libsqlite3 + FTS5 for byte-faithful schema parity.
rusqlite = { version = "0.31", features = ["bundled", "blob", "chrono", "limits", "modern_sqlite"] }
rusqlite = { version = "0.40", features = ["bundled", "blob", "chrono", "limits", "modern_sqlite"] }
# FTS5 ships in `bundled` since rusqlite 0.31; explicit feature flag isn't needed but documented here.

# Logs — structured local-only tracing. Replaces JSONLog.swift. NEVER goes off-device.
Expand Down
Loading