From 78a9672ad9a7bed6864af11e454b80c66662829a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 19 Jan 2026 15:26:18 -0600 Subject: [PATCH] chore: remove unused rusqlite dependency The agent uses WebSocket streaming instead of SQLite buffering, so rusqlite is not needed. Removing it reduces compile time and simplifies the dependency tree. --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3ddaec2..e627336 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,6 @@ tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] } futures = "0.3" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -rusqlite = { version = "0.32", features = ["bundled"] } log = { version = "0.4", features = ["std"] } clap = { version = "4.0", features = ["derive", "env"] } prost = "0.13"