pulses 0.1.0

A robust and flexible background job processing library for Rust.
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"
name = "pulses"
version = "0.1.0"
authors = ["atopx"]
build = false
include = [
    "src/**/*",
    "LICENSE",
    "README.md",
    "Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A robust and flexible background job processing library for Rust."
homepage = "https://github.com/atopx/pulses"
documentation = "https://docs.rs/pulses"
readme = "README.md"
keywords = [
    "background-jobs",
    "redis",
    "queue",
    "async",
    "task-queue",
]
categories = [
    "asynchronous",
    "concurrency",
    "rust-patterns",
]
license = "MIT"
repository = "https://github.com/atopx/pulses"

[features]
default = ["redis"]

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

[dependencies.bytes]
version = "1"

[dependencies.kafka]
version = "0.10"
optional = true

[dependencies.redis]
version = "1"
features = ["tokio-rustls-comp"]
optional = true

[dependencies.smallvec]
version = "1"

[dependencies.tokio]
version = "1.49"
features = [
    "rt",
    "sync",
    "time",
    "macros",
]
default-features = false

[dependencies.tokio-util]
version = "0.7"

[dev-dependencies.tokio]
version = "1.49"
features = ["full"]