- 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.
24 lines
414 B
TOML
24 lines
414 B
TOML
[package]
|
|
name = "workflow-context"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "workflow_context"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
git2 = { version = "0.18", features = ["vendored-openssl"] }
|
|
sha2 = "0.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
hex = "0.4"
|
|
walkdir = "2.3"
|
|
regex = "1.10"
|
|
globset = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|