summary history branches tags files
Cargo.toml
[package]
name = "photo-what-what"
version = "0.2.1"
edition = "2021"
authors = ["Trevor Bentley "]
description = "Helper utility to automatically set image metadata with ML assistance."
keywords = ["photography", "image", "tagging", "EXIF", "XMP", "DAM"]
categories = ["multimedia", "command line utilities"]
homepage = "https://git.trevorbentley.com/photo-what-what/"
repository = "https://git.trevorbentley.com/photo-what-what/"
documentation = "https://git.trevorbentley.com/photo-what-what/"
readme = "README.md"
license = "AGPL-3.0-or-later"

[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'

[dependencies]
# for configuration file
confy = "0.6.1"
# for determining input image type (doesn't support RAW)
image = "0.25.5"
# for converting image to other type (supports RAW inputs)
image2 = { version = "1.9.2", default-features = false, features = ["parallel", "oiio"] }
# for tag filtering
regex = "1.11.1"
# for exif/xmp writing
rexiv2 = "0.10.0"
# for converting to temporary files
tempfile = "3.15.0"
# for configuration
serde = { version = "1.0", features = ["derive"] }
# for command-line arguments
clap = { version = "4.5", features = ["derive", "wrap_help"] }
# for command-line arguments
clap_derive = "4.5"