- Implemented `DagScheduler` in `workflow-orchestrator` to manage task dependencies and commit history. - Added `vgcs.merge_commits` in `workflow-context` for smart 3-way merge of parallel task branches. - Introduced generic `WorkflowTaskCommand` and `WorkflowTaskEvent` in `common-contracts`. - Adapted `tushare-provider-service` with `generic_worker` to support Git-based context read/write. - Updated NATS subjects to support wildcard routing for generic workflow commands.
34 lines
959 B
TOML
34 lines
959 B
TOML
[package]
|
|
name = "tushare-provider-service"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.89"
|
|
secrecy = { version = "0.8", features = ["serde"] }
|
|
common-contracts = { path = "../common-contracts", default-features = false }
|
|
workflow-context = { path = "../../crates/workflow-context" }
|
|
|
|
anyhow = "1.0"
|
|
async-nats = "0.45.0"
|
|
axum = "0.8"
|
|
config = "0.15.19"
|
|
dashmap = "6.1.0"
|
|
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.6.6", 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 = "2.0.17"
|
|
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.14.0"
|