sqlite-tiny 0.7.9

A minimalistic SQLite crate which ships the amalgamation variant and provides a tiny Rust API
Documentation
1
2
3
4
5
6
7
8
9
//! A tiny, Rust-native API to the embedded SQLite library
#![cfg(feature = "api")]

pub mod answer;
pub mod ffiext;
pub mod query;
pub mod row;
pub mod sqlite;
pub mod types;