//! # tar_minimal
//!
//! A minimalist, Unix-focused TAR library designed for high-performance streaming.
//! This crate provides a lean alternative to the standard `tar` crate, specifically
//! optimized for integration with compression tools like `zstd` on Unix-like systems.
/// A builder for creating TAR archives, compatible with any `Write` implementation.
pub use Builder;
/// A decoder for extracting TAR archives, compatible with any `Read` implementation.
pub use Decoder;