actionqueue-core 0.1.0

Pure domain types and state machine for the ActionQueue durable 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-core"
version = "0.1.0"
authors = ["Keith <zed.colonel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure domain types and state machine for the ActionQueue durable task queue engine."
readme = "README.md"
keywords = [
    "task-queue",
    "scheduling",
    "state-machine",
    "durable",
    "workflow",
]
categories = [
    "concurrency",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/zed-colonel/actionqueue"

[features]
default = []
serde = [
    "dep:serde",
    "uuid/serde",
]
testing = []
workflow = [
    "dep:cron",
    "dep:chrono",
]

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

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

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

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

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

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

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

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1.0"
features = ["v4"]

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

[dev-dependencies.serde_json]
version = "1.0"