image-optimizer 1.5.0

CLI tool for optimizing images (JPEG, PNG, WebP, SVG)
Documentation
1
2
3
4
5
6
7
8
9
//! Command-line interface components.
//!
//! This module provides the command-line argument parsing and configuration
//! structures for the image optimizer tool.

#[allow(clippy::module_name_repetitions)]
pub mod cli_args;

pub use cli_args::Cli;