stew 0.2.0

Stew is a set of image transformation tools. It allows images to be transformed using individual executables and allows pipes to be used to combine multiple tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use stew_lib::get_app_skeleton;
use stew_lib::run;

const COMMAND_NAME: &str = "convert";

fn main() -> Result<(), String> {
    let app = get_app_skeleton(COMMAND_NAME);
    let matches = app.get_matches();

    run(&matches, None)
}