faucet_state_postgres/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-state-postgres
4//!
5//! PostgreSQL-backed [`StateStore`](faucet_core::state::StateStore) for
6//! faucet-stream incremental replication bookmarks. Stores each entry in a
7//! single `faucet_state(key TEXT PRIMARY KEY, value JSONB, updated_at TIMESTAMPTZ)`
8//! table.
9
10pub mod store;
11
12pub use store::PostgresStateStore;