1 | [package] |
2 | name = "convert_case" |
3 | version = "0.7.1" |
4 | authors = ["rutrum <dave@rutrum.net>" ] |
5 | edition = "2021" |
6 | description = "Convert strings into any case" |
7 | license = "MIT" |
8 | keywords = [ "casing" , "case" , "string" ] |
9 | categories = [ "text-processing" ] |
10 | readme = "README.md" |
11 | repository = "https://github.com/rutrum/convert-case" |
12 | |
13 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
14 | |
15 | [profile.release] |
16 | codegen-units = 1 |
17 | lto = true |
18 | panic = 'abort' |
19 | |
20 | [features] |
21 | random = ["rand" ] |
22 | |
23 | [dependencies] |
24 | rand = { version = "^0.8" , optional = true } |
25 | unicode-segmentation = "1.9.0" |
26 | |
27 | [dev-dependencies] |
28 | strum = { version = "0.26.3" , features = ["derive" ] } |
29 | |