-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 731 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 731 Bytes
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]
authors = ["Navid <[email protected]>"]
categories = ["command-line-utilities"]
description = "Batch rename utility for developers"
edition = "2024"
homepage = "https://github.com/yaa110/nomino"
license = "MIT OR Apache-2.0"
name = "nomino"
readme = "README.md"
repository = "https://github.com/yaa110/nomino"
rust-version = "1.88"
version = "1.6.4"
[dependencies]
anyhow = "1.0"
clap = {version = "4.5", features = ["derive"]}
colored = "3.0"
is-terminal = "0.4"
natord = "1.0"
prettytable-rs = "0.10"
regex = "1.11"
serde_json = "1.0"
walkdir = "2.5"
[dev-dependencies]
assert_cmd = "2"
tempfile = "3"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
panic = "abort"
strip = true