-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (46 loc) · 1.16 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 = "rew"
version = "0.4.0"
description = "A text processing CLI tool that rewrites FS paths according to a pattern."
categories = ["command-line-utilities", "text-processing", "filesystem"]
keywords = ["tool", "pattern", "regex", "rename", "path"]
authors = ["Jan Pikl <[email protected]>"]
repository = "https://github.com/jpikl/rew"
documentation = "https://jpikl.github.io/rew"
license = "MIT"
edition = "2021"
[dependencies]
atty = "0.2.14"
clap = { version = "3.0.0-beta.5", features = ["wrap_help"] }
fs_extra = "1.2.0"
indoc = "1.0"
lazy_static = "1.4.0"
normpath = "0.3"
num-traits = "0.2.14"
pathdiff = "0.2.0"
regex = "1" # When upgrading, change also version in docs URL in help.rs
same-file = "1"
rand = "0.8.0"
termcolor = "1.1.0"
unidecode = "0.3.0"
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
assert_cmd = "2.0.2"
assert_fs = "1.0.0"
claim = "0.5.0"
naughty-strings = "0.2.3"
ntest = "0.7.2"
predicates = "2.1.0"
test-case = "1.1.0"
[[bin]]
name = "rew"
path = "src/bin/rew/main.rs"
[[bin]]
name = "mvb"
path = "src/bin/mvb/main.rs"
[[bin]]
name = "cpb"
path = "src/bin/cpb/main.rs"
[lib]
name = "common"
path = "src/common/lib.rs"