| 1 | [package] |
| 2 | name = "convert_case" |
| 3 | version = "0.6.0" |
| 4 | authors = ["Rutrum <dave@rutrum.net>" ] |
| 5 | edition = "2018" |
| 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 | [workspace] |
| 16 | members = ["ccase" ] |
| 17 | |
| 18 | [profile.release] |
| 19 | codegen-units = 1 |
| 20 | lto = true |
| 21 | panic = 'abort' |
| 22 | |
| 23 | [features] |
| 24 | random = ["rand" ] |
| 25 | |
| 26 | [dependencies] |
| 27 | rand = { version = "^0.7" , optional = true } |
| 28 | unicode-segmentation = "1.9.0" |
| 29 | |
| 30 | [dev-dependencies] |
| 31 | strum = "0.18.0" |
| 32 | strum_macros = "0.18.0" |
| 33 | |