sqlite_wasm_vfs/lib.rs
1#![doc = include_str!("../README.md")]
2#![allow(non_upper_case_globals)]
3#![allow(non_camel_case_types)]
4#![allow(non_snake_case)]
5
6/// IndexedDB VFS implementation with relaxed durability guarantees.
7pub mod relaxed_idb;
8
9/// Origin Private File System (OPFS) VFS implementation using `SyncAccessHandle`.
10pub mod sahpool;
11
12#[cfg(test)]
13wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_dedicated_worker);