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