sba-scouting/rust/Cargo.toml
Cal Corum 6ddbd82f7c Add Rust project scaffold for TUI rewrite
Initialize rust/ subdirectory with ratatui + tokio + sqlx stack,
mirroring the Python module structure. Includes all DB models,
config loader, matchup scoring logic, and screen stubs that
compile cleanly with cargo check.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 08:40:42 -06:00

38 lines
705 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"] }
# 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 = "0.3"
# Date/time
chrono = { version = "0.4", features = ["serde"] }