rivven-cdc 0.0.2

Change Data Capture for Rivven - PostgreSQL, MySQL, MariaDB
Documentation
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};