1 2 3 4 5 6 7 8 9 10 11
#![doc = include_str!("../README.md")] #[cfg(wasm)] #[cfg_attr(wasm, path = "spin_sqlite.rs")] mod connection; #[cfg(not_wasm)] #[cfg_attr(not_wasm, path = "rusqlite.rs")] mod connection; pub use connection::SqliteConnection;