Skip to content
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ reqwest = { version = "0.12", features = ["stream", "rustls-tls"], default-featu
num_cpus = "1.16"

# Database dependencies for message persistence (SQLite only, replaced sqlx to avoid rsa vulnerability)
# Pin deadpool deps to avoid CI version conflict (deadpool-sync 0.1.5 pulls incompatible deadpool-runtime 0.2.0)
deadpool-sqlite = "0.12.1"
deadpool-runtime = "=0.1.4"
deadpool-sync = "=0.1.4"
Comment on lines +141 to +142
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using exact version pinning (= instead of ^) prevents receiving patch updates that may contain bug fixes or security patches. Consider using ~0.1.4 to allow patch-level updates while preventing breaking changes, unless there's a specific reason documented for the exact pin.

Copilot uses AI. Check for mistakes.
rusqlite = { version = "0.37", features = ["chrono", "serde_json", "uuid", "bundled"] }

# WebRTC implementation - using saorsa-webrtc with pluggable signaling
Expand Down
Loading
Loading