taquba 0.5.0

A durable, single-process task queue for Rust backed by object storage, built on SlateDB.
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.85"
name = "taquba"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A durable, single-process task queue for Rust backed by object storage, built on SlateDB."
homepage = "https://github.com/micllam/taquba"
readme = "README.md"
keywords = [
    "queue",
    "task",
    "worker",
    "slatedb",
]
license = "Apache-2.0"
repository = "https://github.com/micllam/taquba"
resolver = "2"

[package.metadata.docs.rs]
all-features = true

[features]
aws = ["slatedb/aws"]
azure = ["slatedb/azure"]
default = []
gcp = ["slatedb/gcp"]

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

[[example]]
name = "email_queue"
path = "examples/email_queue.rs"

[[example]]
name = "image_resize"
path = "examples/image_resize.rs"

[[example]]
name = "in_memory"
path = "examples/in_memory.rs"

[[example]]
name = "local_disk"
path = "examples/local_disk.rs"

[[example]]
name = "worker"
path = "examples/worker.rs"

[dependencies.bytes]
version = "1"

[dependencies.rmp-serde]
version = "1"

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

[dependencies.slatedb]
version = "0.12"
features = ["foyer"]
default-features = false

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
    "sync",
    "time",
]

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

[dependencies.tracing]
version = "0.1"

[dependencies.ulid]
version = "1"
features = ["serde"]