[package] name = "image-resizer" version = "0.2.18" authors = ["Magic Len "] edition = "2021" rust-version = "1.74" repository = "https://github.com/magiclen/image-resizer" homepage = "https://magiclen.org/image-resizer" keywords = ["image", "resize", "shrink", "sharpen"] categories = ["command-line-utilities"] description = "Resize or just shrink images and sharpen them appropriately." license = "MIT" include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"] [profile.release] lto = true codegen-units = 1 panic = "abort" strip = true [dependencies] clap = { version = "4", features = ["derive"] } concat-with = "0.2" terminal_size = "0.3" anyhow = "1" image-convert = "0.17" num_cpus = "1" scanner-rust = "2" str-utils = "0.1" pathdiff = "0.2" threadpool = "1" walkdir = "2"