stack-db 0.3.5

A (basically) infinitely stacking & extendable CoW database that has both readonly safety and incredible write speeds at the same time.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Commonly used imports for `stack-db`

pub use crate::{
    base::{
        database::{allocator::Allocator, StackDB},
        layer::Layer,
    },
    default::alloc::{SkdbMemAlloc, SkdbDirAlloc},
    errors::Error,
};