pagedb 0.1.0-beta.6

Encrypted, portable, embedded page store with B+ tree and segment-file surfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Pager tests that exercise page envelopes, the A/B header protocol and the
//! durable free-list. They live here rather than in `tests/` because the
//! envelope, header and free-list codecs are crate-internal.
#![allow(clippy::pedantic)]

mod format_version_mismatch;
mod freelist_chain;
mod generated_freelist_chain;
mod generated_page_envelopes;
mod header;