#![doc = include_str!("../README.md")]
#![no_std]
#![deny(clippy::mod_module_files)]
#![allow(private_bounds, private_interfaces)]
extern crate alloc;
pub mod builders;
#[cfg(feature = "debezium")]
pub mod debezium;
#[cfg(any(test, feature = "testing"))]
pub mod differential_testing;
pub(crate) mod encoding;
pub mod errors;
#[cfg(feature = "maxwell")]
pub mod maxwell;
pub mod parser;
#[cfg(feature = "pg-walstream")]
pub mod pg_walstream;
pub mod schema;
#[cfg(any(test, feature = "testing"))]
pub mod testing;
#[cfg(feature = "wal2json")]
pub mod wal2json;
pub use builders::{
ChangeDelete, ChangeSet, ChangesetFormat, ChangesetOp, ChangesetUpdatePair, ColumnNames,
DiffOps, DiffSet, DiffSetBuilder, Indirect, Insert, PatchDelete, PatchSet, PatchsetFormat,
PatchsetOp, PatchsetUpdateEntry, Reverse, Update,
};
pub use encoding::Value;
pub use parser::{FormatMarker, ParseError, ParsedDiffSet, TableSchema};
pub(crate) use schema::IndexableValues;
pub use schema::{DynTable, NamedColumns, SchemaWithPK, SimpleTable};
pub type ChangeUpdate<T, S, B> = Update<T, ChangesetFormat, S, B>;
pub type PatchUpdate<T, S, B> = Update<T, PatchsetFormat, S, B>;
pub use errors::Error;