pklib 0.2.0

Pure Rust implementation of PKWare Data Compression Library (DCL) with full PKLib compatibility
Documentation
1
2
3
4
5
6
7
8
//! Error handling for PKLib operations
//!
//! This module defines the error types used throughout the PKLib implementation.
//! It uses thiserror for ergonomic error handling and provides context-specific
//! error variants.

pub use crate::common::PkLibError;
pub use crate::common::Result;