//! PostgreSQL logical replication (CDC) source for `faucet-stream`.
//!
//! Subscribes to a Postgres logical replication slot using the `pgoutput`
//! plugin and streams INSERT / UPDATE / DELETE / TRUNCATE events as JSON
//! records. See the crate README for the output record schema and the
//! Postgres setup requirements (`wal_level=logical`, replication-enabled
//! role, publication).
pub use ;
pub use ;
pub use Bookmark;
pub use PostgresCdcSource;