# 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] edition = "2021" rust-version = "1.56.1" name = "stringcase" version = "0.3.0" authors = ["Takayuki Sato "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Converts string cases between camelCase, COBOL-CASE, kebab-case, and so on." documentation = "https://docs.rs/stringcase" readme = "README.md" keywords = [ "case", "camel", "kebab", "pascal", "snake", ] categories = ["text-processing"] license = "MIT" repository = "https://github.com/sttk/stringcase-rust" [lib] name = "stringcase" path = "src/lib.rs" [[test]] name = "camel_case_test" path = "tests/camel_case_test.rs" [[test]] name = "caser_test" path = "tests/caser_test.rs" [[test]] name = "cobol_case_test" path = "tests/cobol_case_test.rs" [[test]] name = "kebab_case_test" path = "tests/kebab_case_test.rs" [[test]] name = "macro_case_test" path = "tests/macro_case_test.rs" [[test]] name = "pascal_case_test" path = "tests/pascal_case_test.rs" [[test]] name = "snake_case_test" path = "tests/snake_case_test.rs" [[test]] name = "train_case_test" path = "tests/train_case_test.rs" [[bench]] name = "camel_case_bench" path = "benches/camel_case_bench.rs" [[bench]] name = "cobol_case_bench" path = "benches/cobol_case_bench.rs" [[bench]] name = "kebab_case_bench" path = "benches/kebab_case_bench.rs" [[bench]] name = "macro_case_bench" path = "benches/macro_case_bench.rs" [[bench]] name = "pascal_case_bench" path = "benches/pascal_case_bench.rs" [[bench]] name = "snake_case_test" path = "benches/snake_case_test.rs" [[bench]] name = "train_case_test" path = "benches/train_case_test.rs" [dependencies]