-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
35 lines (33 loc) · 827 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
[package]
name = "rnr"
version = "0.5.0"
edition = "2021"
authors = ["Ismael González Valverde <[email protected]>"]
description = """
RnR is a command-line tool to rename multiple files and directories that
supports regular expressions
"""
categories = ["command-line-utilities"]
license = "MIT"
homepage = "https://github.com/ismaelgv/rnr"
repository = "https://github.com/ismaelgv/rnr"
readme = "README.md"
[dependencies]
ansi_term = "0.11"
clap = { version = "^4.0", features = ["derive"] }
chrono = "0.4"
path_abs = "^0.4"
regex = "^1"
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
tempfile = "^3"
walkdir= "^2"
difference = "^2.0.0"
any_ascii = "^0.3.0"
anyhow = "1.0.95"
rayon = "1.10.0"
[build-dependencies]
clap = { version = "^4.0", features = ["derive"] }
clap_complete = "^4.0"
clap_mangen = "^0.2"