From 93a4d5b2bdd09f8b03e8e5c39b945446006492c3 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 13 Aug 2025 11:01:09 -0300 Subject: [PATCH] fix: resolve rusqlite version conflict with rusqlite_migration Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 306ca29..a1270d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ nix = "0.30.1" once_cell = "1.19.0" prettytable-rs = "0.10.0" regex = "1.9.5" -rusqlite = { version = "0.37.0", features = ["bundled", "array", "chrono"] } +rusqlite = { version = "0.32.1", features = ["bundled", "array", "chrono"] } rusqlite_migration = "1.3.1" serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.142"