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
//! Binary encoding utilities for `SQLite` changeset format.
//!
//! `SQLite` uses specific binary encodings for varints and value serialization.

pub(crate) mod constants;
pub(crate) mod serial;
pub(crate) mod varint;

pub(crate) use constants::{markers, op_codes};
pub use serial::Value;
pub(crate) use serial::{MaybeValue, decode_value, encode_defined_value, encode_value};