Files
pixstrip/pixstrip-core/Cargo.toml
lashman be7d345aa9 Add storage module for presets, config, session, and history persistence
Preset save/load/list/delete/import/export, config JSON persistence,
session state save/restore, and processing history log with append/clear.
All stored as JSON under ~/.config/pixstrip/.
2026-03-06 02:14:57 +02:00

26 lines
449 B
TOML

[package]
name = "pixstrip-core"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
magick_rust = "1"
fast_image_resize = "5"
image = "0.25"
rayon = "1"
walkdir = "2"
mozjpeg = "0.10"
oxipng = "10"
webp = "0.3"
little_exif = "0.4"
imageproc = "0.25"
ab_glyph = "0.2"
dirs = "6"
[dev-dependencies]
tempfile = "3"