Files
deduper/Cargo.toml
admin 2bc9a9c99c feat: CLI progress bar with indicatif
- Progress bar shows scan progress with file count and ETA
- Split scan_images into collect_image_paths + process_image
- Added indicatif crate
2026-04-28 01:10:53 +00:00

18 lines
420 B
TOML

[package]
name = "deduper"
version = "0.1.0"
edition = "2024"
[dependencies]
image = { version = "0.25", default-features = true, features = ["jpeg", "png", "gif", "webp", "bmp", "tiff"] }
sha2 = "0.10"
walkdir = "2.5"
anyhow = "1"
tiny_http = "0.12"
open = "5"
base64 = "0.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.31", features = ["bundled"] }
indicatif = "0.17"