sqlite-diff-rs 0.1.0

Build SQLite changeset and patchset binary formats programmatically, without SQLite
Documentation
//! Builder for constructing changesets and patchsets.

mod change;
mod delete_operation;
mod format;
mod insert_operation;
mod operation;
pub mod sql;
mod sql_output;
mod update_operation;
mod view;

pub use change::{ChangeSet, DiffOps, DiffSet, DiffSetBuilder, PatchSet};
pub use delete_operation::{ChangeDelete, PatchDelete};
pub use format::{ChangesetFormat, PatchsetFormat};
pub use insert_operation::Insert;
pub(crate) use operation::Operation;
pub use operation::{Indirect, Reverse};
pub use sql_output::ColumnNames;
pub use update_operation::Update;
pub use view::{ChangesetOp, ChangesetUpdatePair, PatchsetOp, PatchsetUpdateEntry};