armature-queue 0.3.0

Job queue and background processing for Armature
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 = "2024"
rust-version = "1.94.1"
name = "armature-queue"
version = "0.3.0"
authors = ["Joseph Quinn <quinn.josephr@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Job queue and background processing for Armature"
homepage = "https://quinnjr.github.io/armature"
readme = "README.md"
keywords = [
    "queue",
    "jobs",
    "background",
    "redis",
]
categories = [
    "web-programming",
    "asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/quinnjr/armature"

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

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

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

[dependencies.armature-core]
version = "0.5.0"

[dependencies.armature-log]
version = "0.2.0"

[dependencies.armature-redis]
version = "0.2.0"

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.redis]
version = "1.3"
features = [
    "tokio-comp",
    "connection-manager",
]

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

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

[dependencies.uuid]
version = "1.23"
features = [
    "v4",
    "serde",
]

[dev-dependencies.tokio]
version = "1.52"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
    "time",
    "net",
    "io-util",
    "fs",
    "test-util",
]