[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"