Fundamental_Analysis/services/yfinance-provider-service/Cargo.toml
Lv, Qi 5327e76aaa chore: 提交本轮 Rust 架构迁移相关改动
- docker-compose: 下线 Python backend/config-service,切换至 config-service-rs
- archive: 归档 legacy Python 目录至 archive/python/*
- services: 新增/更新 common-contracts、api-gateway、各 provider、report-generator-service、config-service-rs
- data-persistence-service: API/system 模块与模型/DTO 调整
- frontend: 更新 useApi 与 API 路由
- docs: 更新路线图并勾选光荣退役
- cleanup: 移除 data-distance-service 占位测试
2025-11-16 20:55:46 +08:00

46 lines
992 B
TOML

[package]
name = "yfinance-provider-service"
version = "0.1.0"
edition = "2021"
[dependencies]
# Web Service
axum = "0.7"
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.5.0", features = ["cors"] }
# Shared Contracts
common-contracts = { path = "../common-contracts" }
# Message Queue (NATS)
async-nats = "0.33"
futures = "0.3"
futures-util = "0.3.31"
# Data Persistence Client
reqwest = { version = "0.12.24", features = ["json"] }
# Concurrency & Async
async-trait = "0.1.80"
dashmap = "5.5"
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.14"
secrecy = { version = "0.8", features = ["serde"] }
# Error Handling
thiserror = "1.0.61"
anyhow = "1.0"
chrono = { version = "0.4.38", features = ["serde"] }
itertools = "0.13.0"