sqlite-diff-rs 0.2.0

Build SQLite changeset and patchset binary formats programmatically, without SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Simplified SQL parser for changeset/patchset operations.
//!
//! A lightweight parser that handles only `INSERT`, `UPDATE`, and `DELETE`
//! statements, which is all the round-trip path needs. A full SQL parser like
//! `sqlparser` would be overkill.

mod lexer;
mod parser;

pub use parser::ParseError;
pub(crate) use parser::Parser;