# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] name = "inflector-plus" version = "0.11.7" authors = [ "Josh Teeter", "Victor Teo", ] include = [ "**/*.rs", "Cargo.toml", "README.md", ] description = """ Adds String based inflections for Rust. Snake, kebab, camel, word, sentence, class, title and table cases as well as ordinalize, deordinalize, demodulize, foreign key, and pluralize/singularize are supported as both traits and pure functions acting on String types. """ homepage = "https://github.com/victorteo/inflector-plus" documentation = "https://docs.rs/Inflector" readme = "README.md" keywords = [ "pluralize", "Inflector", "camel", "snake", "inflection", ] categories = [ "text-processing", "value-formatting", ] license = "BSD-2-Clause" repository = "https://github.com/victorteo/inflector-plus" [lib] name = "inflector" [dependencies.lazy_static] version = "1.2.0" optional = true [dependencies.regex] version = "1.1" optional = true [features] default = ["heavyweight"] heavyweight = [ "regex", "lazy_static", ] unstable = [] [badges.travis-ci] repository = "victorteo/inflector-plus"