summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 553f00f6de369a493f833672a5081cedc8eb972c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "Inflector"
version = "0.11.4"
authors = ["Josh Teeter<joshteeter@gmail.com>"]
include = ["**/*.rs", "Cargo.toml", "README.md"]
description = "Adds String based inflections for Rust. Snake, kebab, camel, 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.\n"
homepage = "https://github.com/whatisinternet/inflector"
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/whatisinternet/inflector"

[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 = "whatisinternet/Inflector"