stegosaurust 0.2.2

A steganography tool, written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::{Context, Result};
use stegosaurust::{cli, run};
use structopt::StructOpt;

fn main() -> Result<()> {
    let opt = cli::Opt::from_args();
    opt.validate()?;
    run(opt).context("failed to run steganography")?;
    Ok(())
}