forked from PSeitz/wana_kana_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (37 loc) · 1.11 KB
/
Cargo.toml
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
43
44
[package]
authors = ["Pascal Seitz <pascal.seitz@gmail.com>"]
categories = ["text-processing"]
description = "Utility library for checking and converting between Japanese characters - Kanji, Hiragana, Katakana - and Romaji\n"
edition = "2018"
homepage = "https://github.com/PSeitz/wana_kana_rust"
keywords = ["japanese", "katakana", "hiragana", "kana", "romaji"]
license = "MIT"
name = "wana_kana"
readme = "README.md"
repository = "https://github.com/PSeitz/wana_kana_rust"
version = "3.0.0"
include = ["src/**/*", "LICENSE", "README.md"]
[dependencies]
fnv = "1.0.7"
itertools = { version = "0.12.0", optional = true }
lazy_static = "1.4.0"
regex = { version = "1.10.2", optional = true }
[features]
enable_regex = ["regex"]
tokenize = ["itertools"]
default = ["tokenize"]
[[bin]]
name = "to_kana"
path = "src/bin/to_kana.rs"
[[bin]]
name = "to_romaji"
path = "src/bin/to_romaji.rs"
[[bin]]
name = "to_ukrainian"
path = "src/bin/to_ukrainian.rs"
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]