- Add info!-level tracing to workflow executor: logs each execution round, each step run (with type and name), step completion, and workflow completion - WorkflowHost.start() now auto-registers all built-in primitive step types so users don't need to register them manually - Add #[derive(Default)] to all primitive steps and PollEndpointConfig - Add tracing-subscriber to wfe crate for the pizza example - Pizza example now shows full step-by-step execution logs
29 lines
783 B
TOML
29 lines
783 B
TOML
[package]
|
|
name = "wfe"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "WFE workflow engine - umbrella crate"
|
|
|
|
[dependencies]
|
|
wfe-core = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio-util = "0.7"
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
wfe-core = { workspace = true, features = ["test-support"] }
|
|
wfe-sqlite = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
rstest = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util"] }
|