forked from lindera/lindera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (81 loc) · 2.41 KB
/
Cargo.toml
File metadata and controls
85 lines (81 loc) · 2.41 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[workspace]
members = [
"lindera-dictionary",
"lindera-cc-cedict",
"lindera-ipadic",
"lindera-ipadic-neologd",
"lindera-ko-dic",
"lindera-unidic",
"lindera",
"lindera-cli",
]
resolver = "2"
[workspace.dependencies]
lindera-dictionary = { version = "1.3.0", path = "lindera-dictionary" }
lindera-cc-cedict = { version = "1.3.0", path = "lindera-cc-cedict" }
lindera-ipadic = { version = "1.3.0", path = "lindera-ipadic" }
lindera-ipadic-neologd = { version = "1.3.0", path = "lindera-ipadic-neologd" }
lindera-ko-dic = { version = "1.3.0", path = "lindera-ko-dic" }
lindera-unidic = { version = "1.3.0", path = "lindera-unidic" }
lindera = { version = "1.3.0", path = "lindera" }
lindera-cli = { version = "1.3.0", path = "lindera-cli" }
anyhow = "1.0.100"
bincode = { version = "2.0.1", features = ["serde"] }
byteorder = "1.5.0"
clap = { version = "4.5.48", features = ["derive", "cargo"] }
criterion = { version = "0.7.0", default-features = false, features = [
"html_reports",
] }
csv = "1.3.1"
derive_builder = "0.20.2"
encoding = "0.2.33"
encoding_rs = "0.8.35"
encoding_rs_io = "0.1.7"
flate2 = "1.1.2"
glob = "0.3.3"
kanaria = "0.2.0"
log = "0.4.28"
md5 = "0.8.0"
memmap2 = "0.9.8"
num_cpus = "1.17.0"
once_cell = "1.21.3"
percent-encoding = "2.3.1"
rand = { version = "0.9.2", default-features = false, features = [
"small_rng",
] } # Specify `default-features` and `features` to support WebAssembly
regex = "1.11.3"
reqwest = { version = "0.12.23", features = [
"rustls-tls",
], default-features = false } # use rustls-tls instead of native-tls which avoids the need to link openssl
rucrf = "0.3.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_yaml = "0.9.34"
strum = { version = "0.27.2", features = ["derive"] }
strum_macros = "0.27.2"
tar = "0.4.44"
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = [
"rt",
"macros",
"time",
"sync",
"io-util",
] }
unicode-blocks = "0.1.9"
unicode-normalization = "0.1.24"
unicode-segmentation = "1.12.0"
url = "2.5.7"
yada = "0.5.1"
[profile.release]
lto = true
# Make sure that the build scripts and proc-macros are compiled with
# all the optimizations. It speeds up the flate2 crate that we use in our build scripts.
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 3
[profile.bench.build-override]
opt-level = 3
[profile.test.build-override]
opt-level = 3