archmeld 0.1.5

Secure, memory-safe, type-safe CLI for multi-format archive extraction, inspection and decompression
Documentation
//! # archmeld
//!
//! Secure, memory-safe, type-safe library for multi-format archive extraction,
//! inspection and decompression.
//!
//! This library exposes the core modules used by the `archmeld` CLI binary,
//! making them available for fuzzing, integration testing, and embedding.

#![allow(clippy::cast_possible_truncation)]
#![allow(clippy::struct_excessive_bools)]
#![allow(clippy::too_many_lines)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::items_after_statements)]
#![allow(clippy::unnecessary_wraps)]
#![allow(clippy::match_same_arms)]
#![allow(clippy::option_if_let_else)]
#![allow(clippy::unused_self)]

pub mod archive;
pub mod cpt;
pub mod error;
pub mod format;
pub mod gzinspect;
pub mod lz4;
pub mod sit;