Fundamental_Analysis/services/finnhub-provider-service/Cargo.toml
Lv, Qi e9e4d0c1b3 chore: massive update covering recent refactoring and bug fixes
- fix: infinite message loop in workflow orchestrator
- feat: restore realtime LLM streaming from report generator to frontend
- refactor: major update to provider services (generic workers, workflow adapters)
- refactor: common contracts and message definitions updated
- feat: enhanced logging and observability in orchestrator
- docs: update project management tasks and status
- chore: dependency updates and config adjustments
2025-11-30 19:17:02 +08:00

47 lines
1.0 KiB
TOML

[package]
name = "finnhub-provider-service"
version = "0.1.0"
edition = "2024"
[dependencies]
# Web Service
axum = "0.8.7"
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.6.6", features = ["cors"] }
# Shared Contracts
common-contracts = { path = "../common-contracts", default-features = false }
# Generic MCP Client
reqwest = { version = "0.12.24", features = ["json"] }
url = "2.5.2"
chrono = { version = "0.4.38", features = ["serde"] }
rust_decimal = "1.35.0"
rust_decimal_macros = "1.35.0"
# Message Queue (NATS)
async-nats = "0.45.0"
futures-util = "0.3.31"
# Data Persistence Client
# Concurrency & Async
dashmap = "6.1.0"
uuid = { version = "1.6", features = ["v4", "serde"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Logging & Telemetry
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Configuration
config = "0.15.19"
# Error Handling
thiserror = "2.0.17"
anyhow = "1.0"
async-trait = "0.1.89"