-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.05 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
[package]
name = "naming_clt"
version = "1.1.0"
authors = ["Boholder <[email protected]>"]
description = """
Extract and convert the naming format(case|notation) of identifiers from files or stdin.
Use this tool to prepare identifier name strings for further operations
(matching,replacing...) on relative files.
"""
documentation = "https://github.com/boholder/naming"
homepage = "https://github.com/boholder/naming"
repository = "https://github.com/boholder/naming"
keywords = ["code", "search", "pattern"]
categories = ["command-line-utilities", "text-processing"]
license = "MIT"
edition = "2018"
[[bin]]
name = "naming"
path = "crates/core/main.rs"
bench = false
[workspace]
members = [
"crates/naming_lib",
"crates/naming_clt_lib"
]
[dependencies]
naming_clt_lib = { version = "0.2.0", path = "crates/naming_clt_lib" }
atty = "~0.2.14"
[dependencies.clap]
version = "~2.33"
default-features = false
features = ["suggestions", "color", "vec_map", "wrap_help"]
[dev-dependencies]
assert_cmd = "~2.0.2"
predicates = "~2.0.3"
[profile.release]
debug = 1