html5-picture 0.2.3

Batch optimizes your images to wepb. Generates html5 picture tags.
Documentation
1
2
3
4
5
6
7
8
9
10
use {clap::Parser, html5_picture::core::Config};

fn main() {
    pretty_env_logger::init();

    // parse and check arguments for validity
    let config: Config = Config::parse();

    html5_picture::run(config);
}