-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (46 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "ocd-cli"
version = "0.0.1"
authors = ["Iñaki Garay <[email protected]>"]
edition = "2021"
build = "build.rs"
license = "MIT"
homepage = "https://github.com/igaray/ocd-cli"
repository = "https://github.com/igaray/ocd-cli"
documentation = "https://docs.rs/ocd-cli"
readme = "README.md"
keywords = ["cli", "file", "rename"]
categories = ["command-line-utilities", "filesystem"]
description = """
A CLI file management swiss army knife.
"""
[[bin]]
name = "ocd"
path = "src/main.rs"
[build-dependencies]
lalrpop = { version = "*", features = ["lexer"] }
clap = { version = "*", features = ["derive", "cargo"] }
[dependencies]
chrono = "*"
clap = { version = "*", features = ["derive", "cargo"] }
dateparser = "*"
dialoguer = "*"
glob = "*"
lalrpop-util = { version = "*", features = ["lexer"] }
logos = "0.14.2"
regex = "*"
tracing = "*"
walkdir = "*"
rand = "*"
# image processing
kamadak-exif = "*"
# string wrangling
heck = "*"
chrono-tz = "0.10.0"
strum = "0.26.3"
strum_macros = "0.26.4"
#unicode-segmentation = "*"
# output
#indicatif = "*"
#console = "*"
#ratatui = "*"