actionqueue-engine 0.1.0

Scheduling, derivation, and concurrency primitives 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-engine"
version = "0.1.0"
authors = ["Keith <zed.colonel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scheduling, derivation, and concurrency primitives for the ActionQueue task queue engine."
readme = "README.md"
keywords = [
    "scheduling",
    "concurrency",
    "lease",
    "task-queue",
    "derivation",
]
categories = ["concurrency"]
license = "MIT"
repository = "https://github.com/zed-colonel/actionqueue"

[features]
default = []
workflow = [
    "actionqueue-core/workflow",
    "dep:cron",
    "dep:chrono",
]

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
optional = true
default-features = false

[dependencies.cron]
version = "0.12"
optional = true

[dependencies.tracing]
version = "0.1"

[dev-dependencies.proptest]
version = "1.4"