graphitesql 0.1.7

A pure, safe, no_std Rust re-implementation of SQLite, compatible with the SQLite 3 file format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Low-level, fully-specified building blocks shared across the engine.

pub mod base64;
pub mod base85;
pub mod decimal;
pub mod float;
pub mod fpdecode;
pub mod ieee754;
pub mod percentile;
pub mod regex;
pub mod sha;
pub mod varint;