-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (93 loc) · 2.42 KB
/
Cargo.toml
File metadata and controls
102 lines (93 loc) · 2.42 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "divvun-fst"
description = "Spell checking library for ZHFST/BHFST spellers, with case handling and tokenization support."
version.workspace = true
authors = ["Brendan Molloy <brendan@bbqsrc.net>"]
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/divvun/divvunspell"
[lib]
name = "divvun_fst"
[workspace.package]
version = "1.0.0-beta.12"
[workspace.dependencies]
libc = "0.2"
memmap2 = "0.9.4"
byteorder = "1.3.4"
serde = { version = "1.0.116", features = ["derive"] }
serde_json = "1.0.57"
serde-xml-rs = { version = "=0.6.0", default-features = false }
zip = { version = "6.0.0", default-features = false }
unic-segment = "0.9.0"
unic-char-range = "0.9.0"
unic-char-property = "0.9.0"
unic-ucd-category = "0.9.0"
unic-emoji-char = "0.9.0"
parking_lot = "0.12.5"
hashbrown = { version = "0.16", features = ["serde"] }
lifeguard = "0.6.1"
smol_str = { version = "0.3.2", features = ["serde"] }
box-format = { version = "0.3.2", features = ["reader"], default-features = false }
itertools = "0.14.0"
strsim = "0.11.1"
log = "0.4.11"
unic-ucd-common = "0.9.0"
# env_logger = { version = "0.11.8", optional = true }
thiserror = "2.0.17"
tempfile = "3.3.0"
fs_extra = "1.2.0"
eieio = "1.0.0"
pathos = "0.3.0"
language-tags = "0.3.2"
globwalk = "0.9.1"
tracing = "0.1.37"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1"
[dependencies]
libc.workspace = true
memmap2.workspace = true
byteorder.workspace = true
serde.workspace = true
serde_json.workspace = true
serde-xml-rs.workspace = true
zip.workspace = true
unic-segment.workspace = true
unic-char-range.workspace = true
unic-char-property.workspace = true
unic-ucd-category.workspace = true
unic-emoji-char.workspace = true
parking_lot.workspace = true
hashbrown.workspace = true
lifeguard.workspace = true
smol_str.workspace = true
box-format.workspace = true
itertools.workspace = true
strsim.workspace = true
unic-ucd-common.workspace = true
thiserror.workspace = true
tempfile.workspace = true
fs_extra.workspace = true
eieio.workspace = true
pathos.workspace = true
language-tags.workspace = true
globwalk.workspace = true
tracing.workspace = true
[features]
compression = ["zip/deflate"]
# Internal features: unstable, not for external use!
internal_convert = []
[workspace]
resolver = "2"
members = [
".",
"cli",
"crates/*",
"ffi",
"ffi/java-jni"
]
[profile.dev]
opt-level = 1
[profile.release]
debug = true
codegen-units = 1
lto = "fat"