ssstar 0.7.3

Library crate that creates and restores archives to and from S3 or S3-compatible storage. ssstar is specifically designed to stream both input and output data so memory usage is minimal, while aggressive concurrency is used to maximize network throughput. If you're looking for the command line (CLI), see `ssstar-cli`
Documentation
#![doc = include_str!("../README.md")]

mod async_bridge;
mod config;
mod create;
mod credentials_provider;
mod error;
mod extract;
mod objstore;
#[cfg(feature = "storage")]
mod storage;
mod tar;
mod util;
mod writers;

pub use config::Config;
pub use create::*;
pub use credentials_provider::{
    CredentialsProvider, CredentialsUpdateCallback, CredentialsUpdateOutput,
};
pub use error::{Result, S3TarError};
pub use extract::*;
#[cfg(feature = "storage")]
pub use storage::*;