anyreader-walker 0.2.1

A library for reading streams of compressed and uncompressed data without knowing the format in advance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::needless_doctest_main)]
#![doc = include_str!("../README.md")]
mod entry;
mod stack;
#[cfg(test)]
mod tests;
mod utils;
mod walkers;

pub use anyreader::AnyFormat;
pub use anyreader::FormatKind;
pub use entry::{EntryDetails, FileEntry};
pub use stack::AnyWalker;
pub use utils::ArchiveStack;