oversync-core 0.6.2

Core types, traits, and config for the oversync data sync engine.
Documentation
//! Core types, traits, config, and errors for the oversync data sync engine.
//!
//! This crate is dependency-light and imported by every other `oversync-*`
//! crate. It avoids heavy runtime dependencies so it compiles fast.

pub mod config;
pub mod error;
pub mod model;
pub mod surreal_url;
pub mod table_names;
pub mod traits;

pub use config::OversyncConfig;
pub use error::OversyncError;
pub use model::{
	AuthConfig, CycleStatus, DeltaEvent, DeltaResult, EventEnvelope, EventMeta, KafkaAuth, OpType,
	RawRow, compute_diff, hash_rows,
};
pub use surreal_url::runtime_surreal_url;
pub use table_names::TableNames;
pub use traits::{
	OriginConnector, OriginFactory, Sink, TargetFactory, TransformHook, TransformPipeline,
};