Errors were only visible in the truncated status bar notification. Add tracing-appender to write to data/sba-scout.log with env-filter support (RUST_LOG), and add tracing::error! calls alongside all notification-only error paths for full diagnostic visibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
885 B
TOML
51 lines
885 B
TOML
[package]
|
|
name = "sba-scout"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# TUI
|
|
ratatui = "0.30"
|
|
crossterm = { version = "0.28", features = ["event-stream"] }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
# Database
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "chrono"] }
|
|
|
|
# HTTP client
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
# Config
|
|
figment = { version = "0.10", features = ["toml", "env"] }
|
|
|
|
# Serialization
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
|
|
# Error handling
|
|
anyhow = "1"
|
|
thiserror = "2"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-appender = "0.2"
|
|
|
|
# Date/time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# CSV parsing
|
|
csv = "1"
|
|
|
|
# Hashing
|
|
sha2 = "0.10"
|
|
|
|
# Async streams
|
|
futures = "0.3"
|
|
|
|
# Regex
|
|
regex = "1"
|