actionqueue-runtime 0.1.0

Async dispatch loop, embedded API, and runtime configuration for the ActionQueue task queue engine.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "actionqueue-runtime"
version = "0.1.0"
authors = ["Keith <zed.colonel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async dispatch loop, embedded API, and runtime configuration for the ActionQueue task queue engine."
readme = "README.md"
keywords = [
    "runtime",
    "dispatch",
    "async",
    "task-queue",
    "engine",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/zed-colonel/actionqueue"

[features]
actor = ["dep:actionqueue-actor"]
budget = ["dep:actionqueue-budget"]
default = ["serde"]
platform = [
    "dep:actionqueue-platform",
    "actor",
]
serde = ["actionqueue-core/serde"]
workflow = ["actionqueue-engine/workflow"]

[lib]
name = "actionqueue_runtime"
path = "src/lib.rs"

[[test]]
name = "engine_lifecycle"
path = "tests/engine_lifecycle.rs"

[dependencies.actionqueue-actor]
version = "0.1.0"
optional = true

[dependencies.actionqueue-budget]
version = "0.1.0"
optional = true

[dependencies.actionqueue-core]
version = "0.1.0"

[dependencies.actionqueue-engine]
version = "0.1.0"

[dependencies.actionqueue-executor-local]
version = "0.1.0"

[dependencies.actionqueue-platform]
version = "0.1.0"
optional = true

[dependencies.actionqueue-storage]
version = "0.1.0"

[dependencies.actionqueue-workflow]
version = "0.1.0"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tempfile]
version = "3.0"