outbox-postgres 0.1.4

PostgreSQL storage implementation for oxide-outbox using sqlx
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 = "outbox-postgres"
version = "0.1.4"
authors = ["Suzdaltsev Denis <suzdaltsevdenis@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL storage implementation for oxide-outbox using sqlx"
documentation = "https://docs.rs/outbox-postgres"
readme = "README.md"
keywords = [
    "outbox",
    "postgres",
    "sqlx",
    "transactional",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/Vancoola/oxide-outbox"
resolver = "2"

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

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

[dependencies.outbox-core]
version = "0.2.0"
features = ["sqlx"]

[dependencies.sqlx]
version = "0.8.6"
features = [
    "postgres",
    "runtime-tokio",
    "macros",
    "uuid",
    "time",
]

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

[dependencies.tracing]
version = "0.1.44"

[dependencies.uuid]
version = "1.20.0"
features = [
    "v4",
    "v7",
]

[lints.clippy]
enum_glob_use = "deny"
explicit_iter_loop = "warn"
must_use_candidate = "allow"
panic = "deny"
pedantic = "warn"
perf = "warn"
redundant_closure_for_method_calls = "warn"
todo = "warn"
unreachable = "warn"
unwrap_used = "deny"