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