| 1 | [package] |
| 2 | authors = ["Without Boats <woboats@gmail.com>" ] |
| 3 | name = "heck" |
| 4 | version = "0.4.1" |
| 5 | edition = "2018" |
| 6 | license = "MIT OR Apache-2.0" |
| 7 | description = "heck is a case conversion library." |
| 8 | homepage = "https://github.com/withoutboats/heck" |
| 9 | repository = "https://github.com/withoutboats/heck" |
| 10 | documentation = "https://docs.rs/heck" |
| 11 | keywords = ["string" , "case" , "camel" , "snake" , "unicode" ] |
| 12 | readme = "README.md" |
| 13 | include = ["src/**/*" , "LICENSE-*" , "README.md" , "CHANGELOG.md" ] |
| 14 | |
| 15 | [features] |
| 16 | default = [] |
| 17 | unicode = ["unicode-segmentation" ] |
| 18 | |
| 19 | [dependencies] |
| 20 | unicode-segmentation = { version = "1.2.0" , optional = true } |
| 21 | |