kitedb 0.2.2

High-performance embedded graph database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Utility modules for KiteDB
//!
//! Contains binary encoding, hashing, compression, and other helpers.

pub mod binary;
pub mod compression;
pub mod crc;
pub mod hash;
pub mod heap;
pub mod lock;
pub mod mmap;

// Re-export commonly used items
pub use binary::{align_up, padding_for, BufferBuilder};
pub use compression::{compress, decompress, CompressionType};
pub use crc::crc32c;
pub use hash::{xxhash64, xxhash64_string};