ic-sqlite-vfs 0.2.2

SQLite VFS backed directly by Internet Computer stable memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Stable memory primitives for the SQLite database image.
//!
//! `meta` owns logical metadata. `memory` is the only module that touches the
//! caller-provided virtual memory backend.

pub mod memory;
mod memory_layout;
pub mod memory_manager;
mod memory_manager_validation;
pub mod meta;
pub mod raw_memory;