first comit

This commit is contained in:
zastian-dev
2026-02-09 19:20:47 +00:00
commit 79625743bd
24 changed files with 8726 additions and 0 deletions

52
Cargo.toml Normal file
View File

@@ -0,0 +1,52 @@
[package]
name = "vibe-invest"
version = "0.1.0"
edition = "2021"
description = "Vibe Invest - Algorithmic Trading System using Alpaca API"
authors = ["Vibe Invest Team"]
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client for Alpaca API
reqwest = { version = "0.12", features = ["json"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# CLI argument parsing
clap = { version = "4", features = ["derive"] }
# Environment variables
dotenvy = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# Error handling
anyhow = "1"
thiserror = "2"
# CSV output for backtest results
csv = "1"
# Rate limiting
governor = "0.8"
# Number formatting
num-format = "0.4"
# Web server for dashboard
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"] }
# XDG directories
dirs = "5"
lazy_static = "1.5"