remozipsy 0.2.0

Remote Zip Sync - sync remote zip to local fs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod config;
mod error;
mod file_info;
mod progress;

pub use config::Config;
pub use error::Error;
pub use file_info::{FileInfo, RemoteFileInfo};

// consumers of this crate need to distingush between enum states:
pub use progress::Progress;
// consumers of this crate still can access the fields without creating this
// struct
pub use progress::ProgressDetails;