sourisdb 0.2.1

Database format focused on compression size without using external libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A collection of utilities for use with `sourisdb`.
//!
//! ## `cursor`
//! [`cursor::Cursor`] immutable view into a slice with a cursor head.
//!
//! ## `bits`
//! [`bits::Bits`] provides a way of storing individual bits, backed by a [`alloc::vec::Vec`] or [`u8`]s.
//!
//! ## `huffman`
//! [`huffman::Huffman`] is a huffman coder.

pub mod bits;
pub mod cursor;
pub mod huffman;