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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Integration tests exercising the various implementations of [`ssstar::ObjectStorage`] and
//! [`ssstar::Bucket`].
//!
//! Some of these require live object storage accounts with a bucket pre-made.  Most of those will
//! only work when run from the Elastio Github Actions build or on an Elastio developer's system
//! with necessary credentials.  Those that are restricted that way are marked as `ignore` so that
//! they must be explicitly invoked.
//!
//! The tests that can run on any dev system either use the local filesystem, or
//! [minio](https://min.io), the later of which obviously assuming that minio is installed on the
//! local system

mod minio;
mod s3;