doubleo7/deep_research/Cargo.toml
Austin Schaefer 55f4f7eeb3 feat: stream the report to the terminal as the writer generates it
Wires up starter.rs -> core.rs (CLI parsing and observability init moved
into core, main.rs left as a thin entry point) and switches the report
phase from Agent::prompt to rig's stream_prompt, printing each text
delta to stdout as it arrives instead of waiting for the full response.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-17 12:17:26 +02:00

19 lines
475 B
TOML

[package]
name = "deep_research"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
chrono = "0.4.45"
clap = { version = "4", features = ["derive"] }
futures = { workspace = true }
indicatif = "0.18.6"
reqwest = { workspace = true, features = ["query"] }
rig = { workspace = true }
schemars = "1"
scraper = "0.27"
serde = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }