-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 953 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "exifmv"
version = "0.4.1"
authors = ["Moritz Moeller <[email protected]>"]
edition = "2021"
license = "Apache-2.0 OR BSD-3-Clause OR MIT OR Zlib"
description = "Moves images into a folder hierarchy based on EXIF tags"
keywords = ["graphics", "images", "organzing", "sorting", "exif"]
categories = ["command-line-utilities", "graphics", "multimedia::images", "filesystem"]
exclude = [".github/**/*", "test/**/*"]
readme = "README.md"
documentation = "https://docs.rs/exifmv/"
repository = "https://github.com/virtualritz/exifmv/"
[badges]
maintenance = { status = "passively-maintained" }
[[bin]]
name = "exifmv"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
chrono = "0.4"
clap = { version = "4.4", features = ["cargo"] }
kamadak-exif = "0.5"
log = "0.4"
simplelog = "0.12"
tokio = { version = "1.32", features = ["full"] }
trash = "3.0"
walkdir = "2.4"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1