-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (64 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
members = [
"crates/yomikiri-backend",
"crates/jmdict",
"crates/yomikiri-dictionary",
"crates/unidic",
"crates/unidic-types",
"extra/generate-license/rust",
"crates/yomikiri-dictionary-generator",
"crates/japanese-utils",
]
resolver = "2"
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "z"
[workspace.lints.clippy]
needless_borrows_for_generic_args = "allow"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[workspace.dependencies]
lindera-core = { git = "https://github.com/BlueGreenMagick/lindera.git", branch = "yomikiri" }
lindera-dictionary = { git = "https://github.com/BlueGreenMagick/lindera.git", branch = "yomikiri" }
lindera-tokenizer = { git = "https://github.com/BlueGreenMagick/lindera.git", branch = "yomikiri" }
lindera-unidic-builder = { git = "https://github.com/BlueGreenMagick/lindera.git", branch = "yomikiri" }
anyhow = "1"
byteorder = "1"
cfg_aliases = "0.2"
chrono = { version = "0.4", features = ["alloc"] }
clap = { version = "4.5", features = ["derive"] }
csv = "1.2"
flate2 = "1"
fst = "0.4"
itertools = "0.11"
log = "0.4"
ouroboros = "0.18"
tempfile = "3.8"
thiserror = "1"
regex = "1"
rustyxml = { version = "0.3.0", git = "https://github.com/Florob/RustyXML.git", package = "RustyXML" }
unicode-normalization = "0.1"
unicode-segmentation = "1.9"
uniffi = { git = "https://github.com/BlueGreenMagick/uniffi-rs.git", branch = "custom" }
ureq = "2"
walkdir = "2.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
zip = "2.2"
fs-err = "2.11"
lazy_static = "1.5"
tsify-next = { version = "0.5", features = ["js"], default-features = false }
wasm-bindgen = "0.2"
quick-xml = "0.37"
insta = { version = "1.39", features = ["yaml"] }
fern = "0.6"
polonius-the-crab = "0.4.1"
lazy-regex = "3.3"
postcard = { version = "1.0", features = ["use-std"] }
memchr = "2"
memmap2 = "0.9"
japanese-utils = { path = "./crates/japanese-utils" }
yomikiri-dictionary = { path = "./crates/yomikiri-dictionary" }
yomikiri-jmdict = { path = "./crates/jmdict" }
yomikiri-unidic-types = { path = "./crates/unidic-types" }