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
11
pub mod check;
pub mod helpers;
pub mod proof;
pub mod recover;
pub mod tree;
pub mod twig;
pub mod twigfile;

pub use tree::{Tree, UpperTree};
pub use twig::{ActiveBits, Twig};
pub use twigfile::TwigFile;