sqlite_diff_rs/
builders.rs1mod change;
4mod delete_operation;
5#[cfg(feature = "diesel")]
6mod diesel_query;
7mod format;
8mod insert_operation;
9mod operation;
10pub mod sql;
11mod sql_output;
12mod update_operation;
13mod view;
14
15pub use change::{ChangeSet, DiffOps, DiffSet, DiffSetBuilder, PatchSet};
16pub use delete_operation::{ChangeDelete, PatchDelete};
17#[cfg(feature = "diesel")]
18pub use diesel_query::{Adapter, ApplyOps, Binder, BoundPatchsetOp, DefaultBinder};
19pub(crate) use format::Format;
20pub use format::{ChangesetFormat, PatchsetFormat};
21pub use insert_operation::Insert;
22pub(crate) use operation::Operation;
23pub use operation::{Indirect, Reverse};
24pub use sql_output::ColumnNames;
25pub use update_operation::Update;
26pub use view::{ChangesetOp, ChangesetUpdatePair, PatchsetOp, PatchsetUpdateEntry};