liteboxfs 0.2.0

A modern POSIX filesystem in a SQLite database
Documentation
// TODO: Remove. This is only here while we're still developing the FUSE adapter.
#![allow(dead_code)]
// We do not have unit tests for the FUSE adapter; we run separate integration tests that actually
// mount a litebox over FUSE and interact with it through the OS interface. We don't want that
// impacting our coverage metrics.
#![cfg_attr(coverage_nightly, coverage(off))]

mod errors;
mod fs;
mod handle;
mod inode;
mod metadata;
mod options;
mod pool;
mod state;
mod tx;

pub use fs::FuseAdapter;
pub use options::MountOption;