[package] name = "workflow-orchestrator-service" version = "0.1.0" edition = "2021" [dependencies] async-trait = "0.1" tokio = { version = "1", features = ["full"] } serde = { version = "1", features = ["derive"] } serde_json = "1.0" anyhow = "1.0" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } async-nats = "0.45.0" uuid = { version = "1", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } futures = "0.3" reqwest = { version = "0.12", features = ["json"] } dashmap = "6.1.0" axum = "0.8.7" globset = "0.4" # Internal dependencies common-contracts = { path = "../common-contracts", default-features = false } workflow-context = { path = "../../crates/workflow-context" } [dev-dependencies] tempfile = "3"