sqlite-diff-rs 0.2.0

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

mod change;
mod delete_operation;
#[cfg(feature = "diesel")]
mod diesel_query;
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};
#[cfg(feature = "diesel")]
pub use diesel_query::{Adapter, ApplyOps, Binder, BoundPatchsetOp, DefaultBinder};
pub(crate) use format::Format;
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};