-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 708 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 708 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
[package]
name = "ccase"
version = "0.5.0"
authors = ["rutrum <dave@rutrum.net>"]
edition = "2021"
description = "Command line interface to convert strings into any case"
license = "MIT"
keywords = [ "casing", "case", "string" ]
categories = [ "text-processing", "command-line-utilities" ]
readme = "README.md"
repository = "https://github.com/stringcase/ccase"
documentation = "https://github.com/stringcase/ccase"
[[bin]]
name = "ccase"
path = "src/main.rs"
[dependencies]
convert_case = "0.11"
convert_case_extras = { version = "0.2", features = ["random"] }
clap = { version = "^4.0", features = ["cargo", "color", "wrap_help", "derive"] }
[dev-dependencies]
predicates = "2.1.1"
assert_cmd = "2.0.4"