# 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" name = "wana_kana" version = "4.0.0" authors = ["Pascal Seitz "] build = false include = [ "src/**/*", "LICENSE", "README.md", "tests/**/*", "benches/**/*", ] autobins = false autoexamples = false autotests = false autobenches = false description = """ Utility library for checking and converting between Japanese characters - Kanji, Hiragana, Katakana - and Romaji """ homepage = "https://github.com/PSeitz/wana_kana_rust" readme = "README.md" keywords = [ "japanese", "katakana", "hiragana", "kana", "romaji", ] categories = ["text-processing"] license = "MIT" repository = "https://github.com/PSeitz/wana_kana_rust" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "wana_kana" path = "src/lib.rs" [[bin]] name = "to_kana" path = "src/bin/to_kana.rs" [[bin]] name = "to_romaji" path = "src/bin/to_romaji.rs" [[test]] name = "conversion_tables" path = "tests/conversion_tables.rs" [[test]] name = "is_japanese" path = "tests/is_japanese.rs" [[test]] name = "punctuation" path = "tests/punctuation.rs" [[test]] name = "tests" path = "tests/tests.rs" [[test]] name = "tokenize" path = "tests/tokenize.rs" [[test]] name = "trim_okurigana" path = "tests/trim_okurigana.rs" [[bench]] name = "bench" path = "benches/bench.rs" [dependencies.fnv] version = "1.0.7" [dependencies.itertools] version = "0.10.5" optional = true [dependencies.lazy_static] version = "1.4.0" [dependencies.regex] version = "1.7.1" optional = true [dev-dependencies.proptest] version = "1.5.0" [features] default = ["tokenize"] enable_regex = ["regex"] tokenize = ["itertools"]