proxmox/proxmox-compression/src/lib.rs
Maximiliano Sandoval ba304a4f83 compression: make Deflate{De, En}coderBuilder public
These structs are returned by the public method
`Deflate{En,De}coder::builder`.

Reported-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
2024-07-26 11:43:01 +02:00

11 lines
219 B
Rust

#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
pub use deflate::{
DeflateDecoder, DeflateDecoderBuilder, DeflateEncoder, DeflateEncoderBuilder, Level,
};
mod deflate;
pub mod tar;
pub mod zip;
pub mod zstd;