[package]
edition = "2024"
rust-version = "1.94"
name = "faucet-state-postgres"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL-backed StateStore for faucet-stream incremental replication"
readme = "README.md"
keywords = [
"postgres",
"state",
"bookmark",
"etl",
"faucet",
]
categories = [
"database",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PawanSikawat/faucet-stream"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "faucet_state_postgres"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.faucet-core]
version = "1.0.0"
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"mysql",
"sqlite",
"json",
]
[dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"time",
"macros",
"rt",
]