[package]
edition = "2024"
name = "outbox-postgres"
version = "0.1.6"
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"
redundant_closure_for_method_calls = "warn"
todo = "warn"
unreachable = "warn"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1