flusso-sources-core 0.10.1

Change-capture and document-builder abstractions for flusso sources.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

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

pub mod cdc;
pub mod document;

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