doubleo7/Cargo.toml
Austin Schaefer 19c92ccd52
All checks were successful
CI / test (pull_request) Successful in 6m56s
refactor: cleanup pass on document embedding/retrieval
- retrieval::retrieve_relevant now shows a spinner around the query-
  embedding call and gets its own tracing span, matching every other
  model-calling phase in the pipeline (it previously ran invisibly and
  untraced)
- add progress::report() to dedupe the show_progress-gated eprintln!
  pattern shared by research.rs and retrieval.rs
- documents::push_document builds its TextSplitter once per collect_documents
  call instead of once per file, skips the char-truncation walk entirely
  when a file is already under the limit, and pulls the source-string
  branch out of the map closure
- researcher::gather_findings drops a doc_context emptiness check that
  build_doc_context already guarantees
- documents.rs tests use tempfile::tempdir() instead of a hand-rolled
  TempDir type

Verified with cargo build/test/clippy -D warnings/fmt --check.
2026-08-19 15:13:07 +02:00

30 lines
881 B
TOML

[package]
name = "doubleo7"
version = "0.2.0"
edition = "2024"
# Not part of a Cargo workspace — this crate is the whole repo. Declared
# explicitly (rather than just omitting it) so that checking this repo out
# as a nested git worktree (as this project's own workflow does) can't
# accidentally pick up an ancestor directory's workspace manifest.
[workspace]
[dependencies]
anyhow = "1.0.104"
chrono = "0.4.45"
clap = { version = "4", features = ["derive"] }
futures = "0.3"
indicatif = "0.18.6"
reqwest = { version = "0.13.4", features = ["query", "json"] }
rig = "0.42.0"
schemars = "1"
scraper = "0.27"
serde = { version = "1.0.229", features = ["derive"] }
text-splitter = "0.32"
tokio = { version = "1.53.1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
[dev-dependencies]
serde_json = "1"
tempfile = "3"