mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2026-05-18 05:05:35 +02:00
28 lines
723 B
TOML
28 lines
723 B
TOML
[package]
|
|
name = "wrkflw-runtime"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Runtime execution environment for wrkflw workflow engine"
|
|
license.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[dependencies]
|
|
# Internal crates
|
|
wrkflw-models = { path = "../models", version = "0.5.0" }
|
|
wrkflw-logging = { path = "../logging", version = "0.5.0" }
|
|
|
|
# External dependencies
|
|
async-trait.workspace = true
|
|
once_cell = "1.19"
|
|
serde.workspace = true
|
|
serde_yaml.workspace = true
|
|
tempfile = "3.9"
|
|
tokio.workspace = true
|
|
futures = "0.3"
|
|
wrkflw-utils = { path = "../utils", version = "0.5.0" }
|
|
which = "4.4"
|