ext4fs-core 0.1.0

Forensic-grade ext4 filesystem parser
Documentation
#![forbid(unsafe_code)]

pub mod carving;
pub mod deleted;
pub mod dir_recovery;
#[cfg(feature = "hashing")]
pub mod hash;
pub mod history;
pub mod journal;
pub mod recovery;
pub mod search;
pub mod slack;
pub mod superblock_verify;
pub mod timeline;
pub mod xattr;

pub use carving::*;
pub use deleted::*;
pub use dir_recovery::RecoveredDirEntry;
#[cfg(feature = "hashing")]
pub use hash::FileHash;
pub use history::InodeVersion as HistoryVersion;
pub use journal::*;
pub use recovery::*;
pub use search::{SearchHit, SearchScope};
pub use slack::SlackSpace;
pub use superblock_verify::SuperblockComparison;
pub use timeline::*;
pub use xattr::*;