ssstar 0.4.2

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
use vergen::{vergen, Config};

fn main() {
    // Generate the default 'cargo:' instruction output
    let mut config = Config::default();
    // Git metadata isn't available when publishing the crate, or when it's being compiled
    // from crates.io by `cargo install`, so don't fail if it's not available
    *config.git_mut().skip_if_error_mut() = true;
    *config.git_mut().sha_kind_mut() = vergen::ShaKind::Short;
    vergen(config).unwrap()
}