skippydb 0.2.2

A high-performance verifiable key-value store with SHA256 Merkle trees and optional CUDA GPU acceleration, designed for blockchain state storage.
1
2
3
4
5
6
7
8
9
10
pub mod entry;
pub mod entrybuffer;
pub mod entrycache;
pub mod entryfile;
pub mod helpers;

pub use entry::{Entry, EntryBz, EntryVec};
pub use entrybuffer::{EntryBuffer, EntryBufferReader, EntryBufferWriter};
pub use entrycache::EntryCache;
pub use entryfile::{EntryFile, EntryFileWithPreReader, EntryFileWriter};