download-extract-progress 1.0.0

A Rust library for downloading and extracting files with progress tracking.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod download;
#[cfg(feature = "7z")]
mod extract_7z;
#[cfg(feature = "zip")]
mod extract_zip;

mod error;
mod github_releases;

pub use error::*;
pub use download::*;
#[cfg(feature = "7z")]
pub use extract_7z::*;

#[cfg(feature = "zip")]
pub use extract_zip::*;