queuey 0.2.1

Type-safe, macro-configured job queues on RabbitMQ with exponential backoff
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.88"
name = "queuey"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe, macro-configured job queues on RabbitMQ with exponential backoff"
readme = "README.md"
keywords = [
    "queue",
    "queues",
    "job",
    "jobs",
    "rabbitmq",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jaapieaapie1/queuey"

[features]
default = ["rabbitmq"]
rabbitmq = ["dep:queuey-rabbitmq"]

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

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

[[example]]
name = "rabbitmq_end_to_end"
path = "examples/rabbitmq_end_to_end.rs"
required-features = ["rabbitmq"]

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

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

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

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

[dependencies.queuey-core]
version = "0.2.1"

[dependencies.queuey-macros]
version = "0.2.1"

[dependencies.queuey-rabbitmq]
version = "0.2.1"
optional = true

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

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
    "time",
    "test-util",
    "signal",
]

[dev-dependencies.tracing]
version = "0.1"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies.trybuild]
version = "1"