mushroomdb-storage 0.6.4

Low-level storage engine for mushroomdb: WAL, column store, topology, and interner
Documentation
pub mod columns;
pub mod edge_props;
pub mod fs;
pub mod fulltext;
pub mod idmap;
pub mod interner;
mod pack;
pub mod property_index;
pub mod snapshot;
pub mod topology;
pub mod types;
pub mod v8;
pub mod wal;
pub use columns::{ColumnHandle, ColumnStore};
pub use edge_props::EdgeProps;
pub use fs::{sync_wal_at, truncate_wal_at, FileId, Fs, RealFs};
pub use idmap::IdMap;
pub use interner::Interner;
pub use topology::{Direction, Topology};
pub use types::{list_tokens, GraphError, Result, Value, ValueKey};
pub use v8::seam::EdgePropsView;
pub use wal::{decode_all, encode_record, WalRecord};