simple-archive 0.4.0

Slim library to simplify handling compressed archives in Rust based on libarchive
Documentation
1
2
3
4
5
6
7
8
9
10
//! Crate prelude

// Re-export the crate Error.
pub use crate::error::Error;

// Re-export Metadata so callers can build in-memory entries.
pub use crate::Metadata;

// Alias Result to be the crate Result.
pub type Result<T> = core::result::Result<T, Error>;