oxidite-queue 2.0.1

Background job queue with cron scheduling, DLQ, and retry logic for Oxidite
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 = "oxidite-queue"
version = "2.0.1"
authors = ["Meshack Bahati Ouma <bahatikylemeshack@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Background job queue with cron scheduling, DLQ, and retry logic for Oxidite"
readme = "README.md"
keywords = [
    "queue",
    "jobs",
    "background",
    "async",
    "cron",
]
categories = [
    "asynchronous",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/meshackbahati/rust-oxidite"

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

[dependencies.async-trait]
version = "0.1.89"

[dependencies.chrono]
version = "0.4.42"

[dependencies.cron]
version = "0.12"

[dependencies.redis]
version = "0.27.6"
features = ["tokio-comp"]

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.145"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio-rustls",
    "postgres",
    "chrono",
    "uuid",
]

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
version = "1.48.0"
features = ["full"]

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