[package]
edition = "2021"
name = "smol-workflow-engine"
version = "0.2.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the smol-workflows engine."
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/b4fun/smol-workflows"
[features]
default = []
integration-test = []
[lib]
name = "smol_workflow_engine"
path = "src/lib.rs"
[[test]]
name = "agent_providers_cli"
path = "tests/agent_providers_cli.rs"
[[test]]
name = "debug_provider"
path = "tests/debug_provider.rs"
[[test]]
name = "js_runtime"
path = "tests/js_runtime.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[test]]
name = "workflow_integration"
path = "tests/workflow_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.blake3]
version = "1"
[dependencies.jsonschema]
version = "0.46"
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rquickjs]
version = "0.11"
features = ["loader"]
[dependencies.rquickjs-serde]
version = "0.5"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"process",
"rt",
"sync",
"time",
]
[dependencies.ulid]
version = "1"
[dependencies.ureq]
version = "2"
features = ["json"]