[[bin]]
name = "photo_sort"
path = "src/main.rs"
required-features = ["binary"]
[dependencies.anyhow]
version = "1.0.100"
[dependencies.chrono]
version = "0.4.42"
[dependencies.clap]
features = ["derive"]
version = "4.5.48"
[dependencies.fern]
features = ["colored"]
optional = true
version = "0.7.1"
[dependencies.ffmpeg-next]
optional = true
version = "8.0.0"
[dependencies.filetime]
version = "0.2.26"
[dependencies.indicatif]
optional = true
version = "0.18.0"
[dependencies.kamadak-exif]
version = "0.6.1"
[dependencies.log]
version = "0.4.28"
[dependencies.regex]
version = "1.12.1"
[dependencies.symlink]
version = "0.1.0"
[dependencies.threadpool]
optional = true
version = "1.8.1"
[features]
binary = ["dep:fern", "dep:indicatif", "dep:threadpool"]
default = ["binary"]
video = ["dep:ffmpeg-next"]
[lib]
name = "photo_sort"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
A tool to rename and sort photos/videos by its EXIF date/metadata. It tries to extract the date
from the EXIF data or file name and renames the image file according to a given
format string.
Foreach source directory all images are processed and renamed to the target directory"""
documentation = "https://docs.rs/photo_sort"
edition = "2021"
homepage = "https://github.com/0xCCF4/PhotoSort"
keywords = ["photo", "sort", "exif", "rename", "date"]
license = "GPL-3.0-or-later"
name = "photo_sort"
readme = "README.md"
repository = "https://github.com/0xCCF4/PhotoSort"
version = "0.2.11"