1 2 3 4 5 6 7 8 9 10 11 12 13
//! PostgreSQL replication protocol implementation //! //! Custom TCP client for PostgreSQL logical replication using pgoutput. pub mod client; pub mod decoder; pub mod message; pub mod scram; pub use client::*; pub use decoder::*; pub use message::*; pub use scram::{ScramError, ScramSha256};