omniparse 0.4.0

A Rust toolkit for detecting and extracting metadata, text, and content from various file formats
Documentation
1
2
3
4
5
6
7
//! Archive format parsers

mod zip;
mod tar;

pub use self::zip::ZipParser;
pub use self::tar::TarParser;