postmodern 0.3.1

Postgres-backed job queue with transaction-based locking.
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 = "2021"
name = "postmodern"
version = "0.3.1"
authors = ["Marc Brinkmann <git@marcbrinkmann.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Postgres-backed job queue with transaction-based locking."
documentation = "https://docs.rs/postmodern"
readme = "README.md"
keywords = [
    "postgres",
    "job-queue",
    "async",
    "background-jobs",
    "sqlx",
]
categories = [
    "asynchronous",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mbr/postmodern"

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

[dependencies.anyhow]
version = "1"

[dependencies.async-stream]
version = "0.3"

[dependencies.backon]
version = "1"

[dependencies.chrono]
version = "0.4"

[dependencies.dirs]
version = "6"

[dependencies.display_full_error]
version = "1"
features = ["alloc"]

[dependencies.futures]
version = "0.3"

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

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

[dependencies.sqlx]
version = "0.8"
features = [
    "postgres",
    "runtime-tokio",
    "uuid",
    "chrono",
    "migrate",
]

[dependencies.thiserror]
version = "2"

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

[dependencies.toml]
version = "1"

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = ["v7"]

[dependencies.uuid-suffix]
version = "0.1.2"

[dev-dependencies.pgdb]
version = "0.6"

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