s3ueeze 0.1.0

Download and merge JSON files from S3
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use vergen_git2::{Emitter, Git2Builder};

fn main() -> Result<()> {
    let git2 = Git2Builder::all_git()?;

    Emitter::default().add_instructions(&git2)?.emit()?;

    Ok(())
}