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
95 changes: 47 additions & 48 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ reqwest = { version = "0.12", features = ["json", "stream", "rustls-tls"], defau

# CLI
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4.5"
clap_complete = "4.6"

# Error Handling
anyhow = "1.0"
Expand Down Expand Up @@ -183,7 +183,7 @@ secrecy = { version = "0.10", features = ["serde"] }
# - #[expect] attribute (Rust 1.81+)
# - c".." C string literals (Rust 1.77+)
# Pinned to 0.30 for MSRV 1.75 compatibility
rusqlite = { version = "0.38", features = ["bundled"] }
rusqlite = { version = "0.39", features = ["bundled"] }

# Configuration
config = "0.15"
Expand All @@ -205,7 +205,7 @@ notify = "8"
rayon = "=1.11.0"

# Lazy initialization
once_cell = "1.19"
once_cell = "1.21"

# Progress bars & Console
indicatif = "0.18"
Expand All @@ -219,7 +219,7 @@ walkdir = "2.4"
# ONNX Runtime for local embeddings (BGE-M3)
# Note: ort 2.0+ uses edition2024, requires Rust 1.82+
# local-embeddings feature is excluded from MSRV check
ort = { version = "2.0.0-rc.10", optional = true }
ort = { version = "2.0.0-rc.12", optional = true }

# HuggingFace tokenizers
tokenizers = { version = "0.22", optional = true }
Expand Down Expand Up @@ -253,7 +253,7 @@ hyper = "1"

[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.26"
tempfile = "3.27"
pretty_assertions = "1.4"
criterion = { version = "0.8", features = ["html_reports", "async_tokio"] }
futures = "0.3"
Expand Down
Loading