thumbnailify 0.1.4

A Rust library for generating and caching thumbnails using the GNOME thumbnailer approach.
Documentation
[package]
name = "thumbnailify"
version = "0.1.4"
authors = ["Luis Garcia <git@luigi311.com>"]
description = "A Rust library for generating and caching thumbnails using the GNOME thumbnailer approach."
license = "GPL-3.0"
repository = "https://github.com/luigi311/thumbnailify"

rust-version = "1.85"
edition = "2024"
resolver = "3"

include = [
    "**/*.rs",
    "Cargo.toml",
    "LICENSE",
    "README.md",
]

[lib]
name = "thumbnailify"

[dependencies]
dirs = "6.0.0"
md-5 = "0.10.6"
thiserror = "2.0.11"
url = "2.5.4"
image = { version = "0.25.5" }
mime_guess = "2.0.5"
which = "7.0.2"
rust-ini = "0.21.1"
png = "0.17.16"
tempfile = "3.17.1"
shell-words = "1.1.0"
log = "0.4.26"

[dev-dependencies]
serial_test = "3"
temp-env = "0.3.6"


[profile.release]
lto = "thin"
opt-level = 3