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