vecdb 0.10.2

High-performance mutable persistent vectors built on rawdb
Documentation
//! Shared storage substrate used by every concrete vec variant.

mod change;
mod format;
mod header;
mod options;
mod read_only;
mod read_write;
mod rollback;
mod shared_len;
mod with_prev;

pub(crate) use change::*;
pub use format::*;
pub use header::*;
pub use options::*;
pub(crate) use read_only::*;
pub use read_write::*;
pub use shared_len::*;
pub use with_prev::*;