flusso-sources-core 0.11.0

Change-capture and document-builder abstractions for flusso sources.
Documentation
#![doc = include_str!("../README.md")]

mod error;
mod introspection;
mod provisioning;
mod row_key;
mod snapshot_table;
mod spec;
mod validation;

pub mod cdc;
pub mod document;

pub use error::*;
pub use introspection::*;
pub use provisioning::*;
pub use row_key::*;
pub use snapshot_table::*;
pub use spec::*;
pub use validation::*;