forked from marcusbuffett/pipe-rename
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 856 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
[package]
name = "pipe-rename"
version = "1.5.0"
authors = ["Marcus Buffett <marcusbuffett@me.com>"]
description = "Rename your files using your favorite text editor"
homepage = "https://github.com/marcusbuffett/pipe-rename"
repository = "https://github.com/marcusbuffett/pipe-rename"
edition = "2018"
keywords = ["cli", "tool", "rename"]
license = "MIT"
[[bin]]
name = "renamer"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.32"
thiserror = "1.0.20"
subprocess = "0.2.4"
clap = {version = "3.0.1", features = ["derive"]}
# clap = { git = "https://github.com/clap-rs/clap", tag = "v3.0.1" }
tempfile = "3.1.0"
dialoguer = "0.6.2"
ansi_term = "0.12.1"
shell-escape = "0.1.5"
diff = "0.1.12"
[dev-dependencies]
assert_cmd = "1.0.1"
predicates = "1.0.5"