Skip to content

Commit 69bb8ed

Browse files
committed
add
1 parent c7e77e9 commit 69bb8ed

File tree

3 files changed

+476
-1
lines changed

3 files changed

+476
-1
lines changed

Linux/rename/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "rrename"
3+
version = "0.1.0"
4+
edition = "2021"
5+
license = "MIT"
6+
readme = "README.md"
7+
8+
description = "Rename Files using Regex"
9+
10+
[dependencies]
11+
clap = { version = "4.0", features = ["derive"] }
12+
regex = "1.0"
13+
glob = "0.3"
14+
atty = "0.2"
15+
16+
[profile.release]
17+
codegen-units = 1
18+
debug = false
19+
lto = true
20+
opt-level = 3
21+
panic = "abort"
22+
strip = true

0 commit comments

Comments
 (0)