- Progress bar shows scan progress with file count and ETA - Split scan_images into collect_image_paths + process_image - Added indicatif crate
18 lines
420 B
TOML
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"
|