Fundamental_Analysis/services/tushare-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

34 lines
843 B
TOML

[package]
name = "tushare-provider-service"
version = "0.1.0"
edition = "2021"
[dependencies]
common-contracts = { path = "../common-contracts" }
rmcp = "0.8.5"
anyhow = "1.0"
async-nats = "0.33"
axum = "0.8"
config = "0.14"
dashmap = "5.5"
futures = "0.3"
futures-util = "0.3.31"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.5.0", features = ["cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.6", features = ["v4", "serde"] }
reqwest = { version = "0.12.24", features = ["json"] }
url = "2.5.2"
thiserror = "1.0.61"
async-trait = "0.1.80"
lazy_static = "1.5.0"
regex = "1.10.4"
chrono = "0.4.38"
rust_decimal = "1.35.0"
rust_decimal_macros = "1.35.0"
itertools = "0.13.0"