graft 0.2.1

The Graft storage engine.
Documentation
pub mod checksum;
pub mod commit_hash;
pub mod gid;
pub mod lsn;
pub mod page;
pub mod page_count;
pub mod pageidx;
pub mod pageset;

pub mod checkpoints;
pub mod commit;
pub mod logref;

pub mod bilrost_util;
pub mod byte_unit;
pub mod cbe;
pub mod hash_table;
pub mod merge_runs;
pub mod zerocopy_ext;

pub use commit_hash::{CommitHashBuilder, CommitHashParseErr};
pub use gid::{LogId, SegmentId, VolumeId};
pub use page_count::PageCount;
pub use pageidx::PageIdx;

#[cfg(any(test, feature = "testutil"))]
pub mod testutil;

// Export NewTypeProxyTag so we can use derive_newtype_proxy in graft
#[doc(hidden)]
pub struct NewTypeProxyTag;