sqlite-wasm-vfs 0.1.0

some experimental VFS implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

/// IndexedDB VFS implementation with relaxed durability guarantees.
pub mod relaxed_idb;

/// Origin Private File System (OPFS) VFS implementation using `SyncAccessHandle`.
pub mod sahpool;

#[cfg(test)]
wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_dedicated_worker);