-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
52 lines (44 loc) · 1.66 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
45
46
47
48
49
50
51
52
[package]
name = "rsmorphy"
version = "0.4.0"
authors = ["Alexander Irbis <irbis.labs@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Morphological analyzer / inflection engine for Russian and Ukrainian (soon) languages (WIP)"
keywords = ["nlp", "inflection", "pluralize", "russian", "ukrainian"]
categories = ["text-processing", "value-formatting"]
readme = "README.md"
homepage = "https://github.com/irbis-labs/rsmorphy"
repository = "https://github.com/irbis-labs/rsmorphy"
documentation = "https://docs.rs/rsmorphy/"
edition = "2018"
publish = true
[badges]
travis-ci = { repository = "irbis-labs/rsmorphy" }
[features]
default = ["fast_debug"]
# TODO Remove when cargo can build dependencies in release mode.
# Workaround for the significant slowdown with loading dictionaries in tests.
fast_debug = ["flate2/miniz-sys"]
safe_native = ["flate2/rust_backend"]
profile = []
[dependencies]
base64 = "0.9"
boolinator = "2.4"
byteorder = "1.0"
env_logger = "0.5"
flate2 = { version = "1.0", default-features = false }
lazy_static = "1.0"
log = "0.4"
maplit = "1.0"
num = "0.2"
regex = "1.0"
roman = "0.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
string_cache = "0.7"
uc = { version = "0.1", package = "unicode_categories" }
dict-ru = { version = "0.1", package = "rsmorphy-dict-ru", path = "./dict/ru" }
#dict-uk = { version = "0.1", package = "rsmorphy-dict-uk", path = "./dict/uk" }
[dev-dependencies]
rustyline = "2.0"