mismall 2.0.0

Streaming Huffman compression library with AES-256-GCM encryption and archive support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Async streaming utilities placeholder
//!
//! This module is a placeholder for future async streaming support.
//! When implemented, it will provide async versions of the streaming
//! utilities with tokio compatibility.

#[doc(hidden)]
pub mod placeholder {
    /// Placeholder for async streaming compressor
    pub struct AsyncCompressor {
        _private: (),
    }

    /// Placeholder for async streaming decompressor
    pub struct AsyncDecompressor {
        _private: (),
    }
}