[package]
edition = "2024"
name = "strev-postgres"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL backend for strev"
readme = "README.md"
keywords = [
"messaging",
"pubsub",
"postgres",
"sql",
]
license = "MIT"
repository = "https://github.com/guiaramos/strev"
resolver = "2"
[lib]
name = "strev_postgres"
path = "src/lib.rs"
[[example]]
name = "postgres_pubsub"
path = "examples/postgres_pubsub.rs"
[[test]]
name = "conformance_test"
path = "tests/conformance_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"postgres",
"runtime-tokio",
"json",
]
default-features = false
[dependencies.strev]
version = "0.6.0"
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.tokio-stream]
version = "0.1"
[dev-dependencies.tokio-util]
version = "0.7"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.uuid]
version = "1"
features = ["v4"]