-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 959 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
33
34
35
36
37
38
39
[package]
name = "capitalize"
description = "Change first character to upper case and the rest to lower case, and other common alternatives"
version = "0.3.2"
edition = "2021"
authors = [
"Jesus Hernandez <jesushdez@protonmail.com>",
"Bartek Winter <bartekwinter3@gmail.com>",
]
license = "Unlicense"
repository = "https://github.com/jhg/capitalize-rs"
keywords = ["capitalize", "string", "case", "change", "title"]
categories = ["text-processing"]
exclude = [
".idea/",
".vscode/",
".github/",
# Tests/benches will not be used when it's used as dependency,
# then we can reduce size of archive.
# Last measures show reduction from 12.7KiB (4.7KiB compressed)
# to 8.2KiB (3.2KiB compressed).
"tests/",
"benches/sample.txt",
]
[features]
default = []
nightly = []
[dev-dependencies]
data-test = "0.1"
criterion = "0.5"
[[bench]]
name = "benchmark"
harness = false
[package.metadata.docs.rs]
all-features = true