[package]
edition = "2021"
rust-version = "1.89"
name = "klieo-workflow-api"
version = "3.2.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable Axum run-service router fronting klieo-workflow (submit / poll declarative workflows)."
homepage = "https://github.com/mohrimic/klieo"
documentation = "https://docs.rs/klieo"
readme = "README.md"
license = "MIT"
repository = "https://github.com/mohrimic/klieo"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "klieo_workflow_api"
path = "src/lib.rs"
[[test]]
name = "authz"
path = "tests/authz.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "get_run"
path = "tests/get_run.rs"
[[test]]
name = "provenance"
path = "tests/provenance.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[[test]]
name = "router"
path = "tests/router.rs"
[[test]]
name = "runs"
path = "tests/runs.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = ["json"]
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.klieo]
version = "3"
default-features = false
[dependencies.klieo-auth-common]
version = "3"
[dependencies.klieo-core]
version = "3"
[dependencies.klieo-flows]
version = "3"
[dependencies.klieo-provenance]
version = "3"
[dependencies.klieo-workflow]
version = "3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tower-http]
version = "0.5"
features = [
"trace",
"limit",
]
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "1"
features = ["serde"]
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
]
[dev-dependencies.tower]
version = "0.5"
features = [
"util",
"util",
]