provider_archive/
lib.rs

1mod archive;
2
3pub type Result<T> = ::std::result::Result<T, Box<dyn std::error::Error + Sync + Send>>;
4pub use archive::ProviderArchive;