[package]
name = "armature-queue"
version = "0.3.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Job queue and background processing for Armature"
keywords = ["queue", "jobs", "background", "redis"]
categories = ["web-programming", "asynchronous"]
[dependencies]
armature-log = { path = "../armature-log", version = "0.2.0" }
async-trait = "0.1"
thiserror = "2.0"
tokio = { version = "1.52", features = ["rt", "rt-multi-thread", "macros", "sync", "time"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.23", features = ["v4", "serde"] }
armature-redis = { path = "../armature-redis", version = "0.2.0" }
redis = { version = "1.3", features = ["tokio-comp", "connection-manager"] }
armature-core = { path = "../armature-core", version = "0.5.0" }
[dev-dependencies]
tokio = { version = "1.52", features = ["rt-multi-thread", "macros", "sync", "time", "net", "io-util", "fs", "test-util"] }
armature-testkit = { path = "../armature-testkit", features = ["containers"] }