[package]
edition = "2021"
name = "pgpubsub"
version = "2.0.0"
build = false
exclude = [".vscode/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async PostgreSQL LISTEN/NOTIFY pub/sub client built on tokio-postgres"
readme = "README.md"
keywords = [
"postgres",
"pubsub",
"listen",
"notify",
"tokio",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/mrcz/pgpubsub"
[lib]
name = "pgpubsub"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.backon]
version = "1.5.0"
features = ["tokio-sleep"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.either]
version = "1.15.0"
[dependencies.futures-util]
version = "0.3.32"
[dependencies.log]
version = "0.4.29"
[dependencies.postgres-protocol]
version = "0.6.11"
[dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt",
"sync",
"time",
]
[dependencies.tokio-postgres]
version = "0.7.17"
[dev-dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]