-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 1.37 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
[package]
name = "lindera-sqlite"
version = "0.38.0"
edition = "2021"
description = "Lindera tokenizer for SQLite FTS5 extention"
documentation = "https://docs.rs/lindera-sqlite"
homepage = "https://github.com/lindera/lindera-sqlite"
repository = "https://github.com/lindera/lindera-sqlite"
readme = "README.md"
keywords = ["morphological", "analysis", "library", "sqlite"]
categories = ["text-processing"]
license = "AGPL-3.0-only"
[features]
default = [] # No directories included
ipadic = ["lindera/ipadic"] # Include IPADIC dictionary (Japanese)
ipadic-neologd = ["lindera/ipadic-neologd"] # Include IPADIC NEologd dictionary (Japanese)
unidic = ["lindera/unidic"] # Include UniDic dictionary (Japanese)
ko-dic = ["lindera/ko-dic"] # Include ko-dic dictionary (Korean)
cc-cedict = ["lindera/cc-cedict"] # Include CC-CEDICT dictionary (Chinese)
compress = ["lindera/compress"] # Compress dictionaries
extension = []
cjk = ["cc-cedict", "ipadic", "ko-dic", "compress", "extension"] # Include CJK dictionary (Chinese, Japanese, Korean)
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
[dependencies]
# libc without `std`
libc = { version = "0.2.164", "default-features" = false, features = [] }
serde_json = "1.0.133"
unicode-segmentation = "1.12.0"
unicode-normalization = "0.1.22"
lindera = "0.38.0"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "bench"
harness = false