[package]
name = "redis-work-queue"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "A work queue, on top of a redis database, with implementations in Python, Rust, Go and C#."
homepage = "https://github.com/MeVitae/redis-work-queue/"
repository = "https://github.com/MeVitae/redis-work-queue/"
keywords = ["redis", "queue", "work", "cross-platform", "platform"]
categories = ["api-bindings", "web-programming", "asynchronous"]
readme = "../README.md"
[dependencies]
serde_json = "1"
futures = "0.3"
[dependencies.redis]
version = "0.22.3"
features = ["aio", "async-std-comp", "connection-manager"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.uuid]
version = "1.3"
features = [
"v4",
"fast-rng",
"macro-diagnostics",
]