1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! GeeZipX core engine — compression and decompression primitives.
//!
//! This crate provides the platform-independent core for archive and
//! compression operations. It is designed to be consumed by both the
//! CLI (`geezipx`) and future Tauri GUI.
//!
//! ## Roadmap
//!
//! - `archive/` — zip, tar, tar.gz container handling
//! - `compress/` — gzip, zstd, xz compression algorithm wrappers
//! - `detect/` — format detection from magic bytes / file extension
//! - `pipeline/` — streaming read/write pipelines
//! - `progress/` — progress event traits for caller consumption
//! - `task/` — compression/decompression task models
//! - `fs/` — cross-platform filesystem helpers
//! - `error/` — unified error types
pub use ;
pub use ;
/// Return the crate version at compile time.