1//! A tiny, Rust-native API to the embedded SQLite library 2#![cfg(feature = "api")] 3 4pub mod answer; 5pub mod ffiext; 6pub mod query; 7pub mod row; 8pub mod sqlite; 9pub mod types;