mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-04 09:33:33 +00:00

similar to our DeflateEncoder, takes a Stream and implements it itself, so that we can use it as an adapter for async api calls Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
7 lines
82 B
Rust
7 lines
82 B
Rust
mod compression;
|
|
pub use compression::*;
|
|
|
|
pub mod tar;
|
|
pub mod zip;
|
|
pub mod zstd;
|