-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (25 loc) · 874 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
[package]
name = "plexisort"
version = "0.1.0"
edition = "2021"
authors = ["Richard Chukwu <[email protected]>"]
description = "Plexisort is a command-line tool designed to organize your files based on metadata. It allows for flexible source and destination directory settings, supports dry-run operations for safe previews of potential changes, and even offers an undo functionality for reversing the last set of file movements."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rayon = "1.5.1"
clap = "4.5.0"
walkdir = "2.3"
kamadak-exif = "0.5.5"
chrono = "0.4"
log = "0.4"
simplelog = "0.12.0"
toml = "0.8.10"
mime_guess = "2.0.4"
mime = "0.3"
serde_json="1.0.59"
serde= {version = "1.0.117", features = ["derive"]}
filetime = "0.2"
[dev-dependencies]
tempfile = "3.2.0"
[features]
test_env = []