theopendictionary 0.11.0__tar.gz → 1.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of theopendictionary might be problematic. Click here for more details.

Files changed (112) hide show
  1. theopendictionary-1.1.0/Cargo.lock +4285 -0
  2. theopendictionary-1.1.0/Cargo.toml +18 -0
  3. theopendictionary-1.1.0/PKG-INFO +7 -0
  4. theopendictionary-1.1.0/lib/CHANGELOG.md +91 -0
  5. theopendictionary-1.1.0/lib/Cargo.toml +79 -0
  6. theopendictionary-1.1.0/lib/report.json +5 -0
  7. theopendictionary-1.1.0/lib/src/compress.rs +60 -0
  8. theopendictionary-1.1.0/lib/src/config/aliases.rs +79 -0
  9. theopendictionary-1.1.0/lib/src/config/config.rs +35 -0
  10. theopendictionary-1.1.0/lib/src/config/mod.rs +24 -0
  11. theopendictionary-1.1.0/lib/src/core/io/consts.rs +8 -0
  12. theopendictionary-1.1.0/lib/src/core/io/mod.rs +6 -0
  13. theopendictionary-1.1.0/lib/src/core/io/read.rs +143 -0
  14. theopendictionary-1.1.0/lib/src/core/io/write.rs +172 -0
  15. theopendictionary-1.1.0/lib/src/core/lexicon.rs +20 -0
  16. theopendictionary-1.1.0/lib/src/core/lookup/mod.rs +120 -0
  17. theopendictionary-1.1.0/lib/src/core/lookup/options.rs +36 -0
  18. theopendictionary-1.1.0/lib/src/core/lookup/tokenize.rs +122 -0
  19. theopendictionary-1.1.0/lib/src/core/merge.rs +17 -0
  20. theopendictionary-1.1.0/lib/src/core/mod.rs +16 -0
  21. theopendictionary-1.1.0/lib/src/core/preview.rs +67 -0
  22. theopendictionary-1.1.0/lib/src/core/semver.rs +72 -0
  23. theopendictionary-1.1.0/lib/src/error.rs +68 -0
  24. theopendictionary-1.1.0/lib/src/ext.rs +17 -0
  25. theopendictionary-1.1.0/lib/src/format/html/html.rs +39 -0
  26. theopendictionary-1.1.0/lib/src/format/html/mod.rs +3 -0
  27. theopendictionary-1.1.0/lib/src/format/json/definition.rs +37 -0
  28. theopendictionary-1.1.0/lib/src/format/json/dictionary.rs +36 -0
  29. theopendictionary-1.1.0/lib/src/format/json/entry.rs +41 -0
  30. theopendictionary-1.1.0/lib/src/format/json/etymology.rs +46 -0
  31. theopendictionary-1.1.0/lib/src/format/json/group.rs +35 -0
  32. theopendictionary-1.1.0/lib/src/format/json/json.rs +105 -0
  33. theopendictionary-1.1.0/lib/src/format/json/mod.rs +21 -0
  34. theopendictionary-1.1.0/lib/src/format/json/note.rs +30 -0
  35. theopendictionary-1.1.0/lib/src/format/json/sense.rs +48 -0
  36. theopendictionary-1.1.0/lib/src/format/json/token.rs +50 -0
  37. theopendictionary-1.1.0/lib/src/format/json/utils.rs +14 -0
  38. theopendictionary-1.1.0/lib/src/format/md/definition.rs +32 -0
  39. theopendictionary-1.1.0/lib/src/format/md/entry.rs +21 -0
  40. theopendictionary-1.1.0/lib/src/format/md/etymology.rs +19 -0
  41. theopendictionary-1.1.0/lib/src/format/md/example.rs +20 -0
  42. theopendictionary-1.1.0/lib/src/format/md/group.rs +20 -0
  43. theopendictionary-1.1.0/lib/src/format/md/md.rs +41 -0
  44. theopendictionary-1.1.0/lib/src/format/md/mod.rs +11 -0
  45. theopendictionary-1.1.0/lib/src/format/md/note.rs +17 -0
  46. theopendictionary-1.1.0/lib/src/format/md/pprint.rs +224 -0
  47. theopendictionary-1.1.0/lib/src/format/md/sense.rs +16 -0
  48. theopendictionary-1.1.0/lib/src/format/md/utils.rs +34 -0
  49. theopendictionary-1.1.0/lib/src/format/mod.rs +9 -0
  50. theopendictionary-1.1.0/lib/src/format/sql/definitions.rs +110 -0
  51. theopendictionary-1.1.0/lib/src/format/sql/dictionaries.rs +49 -0
  52. theopendictionary-1.1.0/lib/src/format/sql/entries.rs +56 -0
  53. theopendictionary-1.1.0/lib/src/format/sql/etymologies.rs +73 -0
  54. theopendictionary-1.1.0/lib/src/format/sql/examples.rs +92 -0
  55. theopendictionary-1.1.0/lib/src/format/sql/groups.rs +61 -0
  56. theopendictionary-1.1.0/lib/src/format/sql/mod.rs +13 -0
  57. theopendictionary-1.1.0/lib/src/format/sql/notes.rs +60 -0
  58. theopendictionary-1.1.0/lib/src/format/sql/senses.rs +66 -0
  59. theopendictionary-1.1.0/lib/src/format/sql/sql.rs +40 -0
  60. theopendictionary-1.1.0/lib/src/format/sql/utils.rs +60 -0
  61. theopendictionary-1.1.0/lib/src/format/xml.rs +33 -0
  62. theopendictionary-1.1.0/lib/src/fs.rs +11 -0
  63. theopendictionary-1.1.0/lib/src/lib.rs +23 -0
  64. theopendictionary-1.1.0/lib/src/md.rs +116 -0
  65. theopendictionary-1.1.0/lib/src/models/definition.rs +20 -0
  66. theopendictionary-1.1.0/lib/src/models/dictionary.rs +82 -0
  67. theopendictionary-1.1.0/lib/src/models/entry.rs +41 -0
  68. theopendictionary-1.1.0/lib/src/models/etymology.rs +58 -0
  69. theopendictionary-1.1.0/lib/src/models/example.rs +8 -0
  70. theopendictionary-1.1.0/lib/src/models/group.rs +17 -0
  71. theopendictionary-1.1.0/lib/src/models/id.rs +50 -0
  72. theopendictionary-1.1.0/lib/src/models/mod.rs +25 -0
  73. theopendictionary-1.1.0/lib/src/models/note.rs +17 -0
  74. theopendictionary-1.1.0/lib/src/models/pos.rs +290 -0
  75. theopendictionary-1.1.0/lib/src/models/sense.rs +23 -0
  76. theopendictionary-1.1.0/lib/src/models/serializable.rs +47 -0
  77. theopendictionary-1.1.0/lib/src/search/charabia.rs +118 -0
  78. theopendictionary-1.1.0/lib/src/search/constants.rs +22 -0
  79. theopendictionary-1.1.0/lib/src/search/index.rs +133 -0
  80. theopendictionary-1.1.0/lib/src/search/mod.rs +9 -0
  81. theopendictionary-1.1.0/lib/src/search/schema.rs +28 -0
  82. theopendictionary-1.1.0/lib/src/search/search.rs +134 -0
  83. theopendictionary-1.1.0/lib/tasks.toml +8 -0
  84. theopendictionary-1.1.0/pyproject.toml +17 -0
  85. theopendictionary-1.1.0/python/.gitignore +72 -0
  86. theopendictionary-1.1.0/python/CHANGELOG.md +25 -0
  87. theopendictionary-1.1.0/python/Cargo.toml +20 -0
  88. theopendictionary-1.1.0/python/requirements.txt +5 -0
  89. theopendictionary-1.1.0/python/setup.cfg +2 -0
  90. theopendictionary-1.1.0/python/src/dictionary.rs +247 -0
  91. theopendictionary-1.1.0/python/src/lib.rs +12 -0
  92. theopendictionary-1.1.0/python/src/types/definition.rs +34 -0
  93. theopendictionary-1.1.0/python/src/types/entry.rs +52 -0
  94. theopendictionary-1.1.0/python/src/types/etymology.rs +55 -0
  95. theopendictionary-1.1.0/python/src/types/example.rs +18 -0
  96. theopendictionary-1.1.0/python/src/types/group.rs +33 -0
  97. theopendictionary-1.1.0/python/src/types/lookup.rs +41 -0
  98. theopendictionary-1.1.0/python/src/types/mod.rs +14 -0
  99. theopendictionary-1.1.0/python/src/types/note.rs +30 -0
  100. theopendictionary-1.1.0/python/src/types/sense.rs +30 -0
  101. theopendictionary-1.1.0/python/src/types/token.rs +42 -0
  102. theopendictionary-1.1.0/python/src/utils.rs +6 -0
  103. theopendictionary-1.1.0/python/tasks.toml +32 -0
  104. theopendictionary-1.1.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
  105. theopendictionary-1.1.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
  106. theopendictionary-1.1.0/python/tests/test_lookup.py +100 -0
  107. theopendictionary-1.1.0/python/tests/test_tokenize.py +30 -0
  108. theopendictionary-0.11.0/PKG-INFO +0 -13
  109. theopendictionary-0.11.0/pyproject.toml +0 -20
  110. theopendictionary-0.11.0/theopendictionary/__init__.py +0 -1
  111. theopendictionary-0.11.0/theopendictionary/odict.py +0 -65
  112. theopendictionary-0.11.0/theopendictionary/test_odict.py +0 -119
@@ -0,0 +1,4285 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "actix-codec"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10
+ dependencies = [
11
+ "bitflags 2.9.0",
12
+ "bytes",
13
+ "futures-core",
14
+ "futures-sink",
15
+ "memchr",
16
+ "pin-project-lite",
17
+ "tokio",
18
+ "tokio-util",
19
+ "tracing",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "actix-http"
24
+ version = "3.10.0"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "0fa882656b67966045e4152c634051e70346939fced7117d5f0b52146a7c74c9"
27
+ dependencies = [
28
+ "actix-codec",
29
+ "actix-rt",
30
+ "actix-service",
31
+ "actix-utils",
32
+ "base64",
33
+ "bitflags 2.9.0",
34
+ "brotli",
35
+ "bytes",
36
+ "bytestring",
37
+ "derive_more",
38
+ "encoding_rs",
39
+ "flate2",
40
+ "foldhash",
41
+ "futures-core",
42
+ "h2",
43
+ "http",
44
+ "httparse",
45
+ "httpdate",
46
+ "itoa",
47
+ "language-tags",
48
+ "local-channel",
49
+ "mime",
50
+ "percent-encoding",
51
+ "pin-project-lite",
52
+ "rand 0.9.0",
53
+ "sha1",
54
+ "smallvec",
55
+ "tokio",
56
+ "tokio-util",
57
+ "tracing",
58
+ "zstd",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "actix-macros"
63
+ version = "0.2.4"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66
+ dependencies = [
67
+ "quote",
68
+ "syn 2.0.100",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "actix-router"
73
+ version = "0.5.3"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
76
+ dependencies = [
77
+ "bytestring",
78
+ "cfg-if",
79
+ "http",
80
+ "regex",
81
+ "regex-lite",
82
+ "serde",
83
+ "tracing",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "actix-rt"
88
+ version = "2.10.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
91
+ dependencies = [
92
+ "futures-core",
93
+ "tokio",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "actix-server"
98
+ version = "2.5.1"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "6398974fd4284f4768af07965701efbbb5fdc0616bff20cade1bb14b77675e24"
101
+ dependencies = [
102
+ "actix-rt",
103
+ "actix-service",
104
+ "actix-utils",
105
+ "futures-core",
106
+ "futures-util",
107
+ "mio",
108
+ "socket2",
109
+ "tokio",
110
+ "tracing",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "actix-service"
115
+ version = "2.0.3"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f"
118
+ dependencies = [
119
+ "futures-core",
120
+ "pin-project-lite",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "actix-utils"
125
+ version = "3.0.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
128
+ dependencies = [
129
+ "local-waker",
130
+ "pin-project-lite",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "actix-web"
135
+ version = "4.10.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "f2e3b15b3dc6c6ed996e4032389e9849d4ab002b1e92fbfe85b5f307d1479b4d"
138
+ dependencies = [
139
+ "actix-codec",
140
+ "actix-http",
141
+ "actix-macros",
142
+ "actix-router",
143
+ "actix-rt",
144
+ "actix-server",
145
+ "actix-service",
146
+ "actix-utils",
147
+ "actix-web-codegen",
148
+ "bytes",
149
+ "bytestring",
150
+ "cfg-if",
151
+ "cookie",
152
+ "derive_more",
153
+ "encoding_rs",
154
+ "foldhash",
155
+ "futures-core",
156
+ "futures-util",
157
+ "impl-more",
158
+ "itoa",
159
+ "language-tags",
160
+ "log",
161
+ "mime",
162
+ "once_cell",
163
+ "pin-project-lite",
164
+ "regex",
165
+ "regex-lite",
166
+ "serde",
167
+ "serde_json",
168
+ "serde_urlencoded",
169
+ "smallvec",
170
+ "socket2",
171
+ "time",
172
+ "tracing",
173
+ "url",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "actix-web-codegen"
178
+ version = "4.3.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
181
+ dependencies = [
182
+ "actix-router",
183
+ "proc-macro2",
184
+ "quote",
185
+ "syn 2.0.100",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "addr2line"
190
+ version = "0.24.2"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
193
+ dependencies = [
194
+ "gimli",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "adler2"
199
+ version = "2.0.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
202
+
203
+ [[package]]
204
+ name = "adler32"
205
+ version = "1.2.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
208
+
209
+ [[package]]
210
+ name = "ahash"
211
+ version = "0.8.11"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
214
+ dependencies = [
215
+ "cfg-if",
216
+ "once_cell",
217
+ "version_check",
218
+ "zerocopy 0.7.35",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "aho-corasick"
223
+ version = "1.1.3"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
226
+ dependencies = [
227
+ "memchr",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "alloc-no-stdlib"
232
+ version = "2.0.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
235
+
236
+ [[package]]
237
+ name = "alloc-stdlib"
238
+ version = "0.2.2"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
241
+ dependencies = [
242
+ "alloc-no-stdlib",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "allocator-api2"
247
+ version = "0.2.21"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
250
+
251
+ [[package]]
252
+ name = "anes"
253
+ version = "0.1.6"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
256
+
257
+ [[package]]
258
+ name = "anstream"
259
+ version = "0.6.18"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
262
+ dependencies = [
263
+ "anstyle",
264
+ "anstyle-parse",
265
+ "anstyle-query",
266
+ "anstyle-wincon",
267
+ "colorchoice",
268
+ "is_terminal_polyfill",
269
+ "utf8parse",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "anstyle"
274
+ version = "1.0.10"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
277
+
278
+ [[package]]
279
+ name = "anstyle-parse"
280
+ version = "0.2.6"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
283
+ dependencies = [
284
+ "utf8parse",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "anstyle-query"
289
+ version = "1.1.2"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
292
+ dependencies = [
293
+ "windows-sys 0.59.0",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "anstyle-wincon"
298
+ version = "3.0.7"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
301
+ dependencies = [
302
+ "anstyle",
303
+ "once_cell",
304
+ "windows-sys 0.59.0",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "anyhow"
309
+ version = "1.0.97"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
312
+
313
+ [[package]]
314
+ name = "arc-swap"
315
+ version = "1.7.1"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
318
+
319
+ [[package]]
320
+ name = "arrayvec"
321
+ version = "0.7.6"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
324
+
325
+ [[package]]
326
+ name = "async-trait"
327
+ version = "0.1.88"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
330
+ dependencies = [
331
+ "proc-macro2",
332
+ "quote",
333
+ "syn 2.0.100",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "autocfg"
338
+ version = "1.4.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
341
+
342
+ [[package]]
343
+ name = "backtrace"
344
+ version = "0.3.74"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
347
+ dependencies = [
348
+ "addr2line",
349
+ "cfg-if",
350
+ "libc",
351
+ "miniz_oxide",
352
+ "object",
353
+ "rustc-demangle",
354
+ "windows-targets",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "base64"
359
+ version = "0.22.1"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
362
+
363
+ [[package]]
364
+ name = "bincode"
365
+ version = "1.3.3"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
368
+ dependencies = [
369
+ "serde",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "bitflags"
374
+ version = "1.3.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
377
+
378
+ [[package]]
379
+ name = "bitflags"
380
+ version = "2.9.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
383
+
384
+ [[package]]
385
+ name = "bitpacking"
386
+ version = "0.9.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92"
389
+ dependencies = [
390
+ "crunchy",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "block-buffer"
395
+ version = "0.10.4"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
398
+ dependencies = [
399
+ "generic-array",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "brotli"
404
+ version = "7.0.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
407
+ dependencies = [
408
+ "alloc-no-stdlib",
409
+ "alloc-stdlib",
410
+ "brotli-decompressor",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "brotli-decompressor"
415
+ version = "4.0.2"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
418
+ dependencies = [
419
+ "alloc-no-stdlib",
420
+ "alloc-stdlib",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "bumpalo"
425
+ version = "3.17.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
428
+
429
+ [[package]]
430
+ name = "bytecheck"
431
+ version = "0.8.1"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "50690fb3370fb9fe3550372746084c46f2ac8c9685c583d2be10eefd89d3d1a3"
434
+ dependencies = [
435
+ "bytecheck_derive",
436
+ "ptr_meta",
437
+ "rancor",
438
+ "simdutf8",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "bytecheck_derive"
443
+ version = "0.8.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "efb7846e0cb180355c2dec69e721edafa36919850f1a9f52ffba4ebc0393cb71"
446
+ dependencies = [
447
+ "proc-macro2",
448
+ "quote",
449
+ "syn 2.0.100",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "byteorder"
454
+ version = "1.5.0"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
457
+
458
+ [[package]]
459
+ name = "bytes"
460
+ version = "1.10.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
463
+
464
+ [[package]]
465
+ name = "bytestring"
466
+ version = "1.4.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
469
+ dependencies = [
470
+ "bytes",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "cast"
475
+ version = "0.3.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
478
+
479
+ [[package]]
480
+ name = "cc"
481
+ version = "1.2.17"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
484
+ dependencies = [
485
+ "jobserver",
486
+ "libc",
487
+ "shlex",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "cedarwood"
492
+ version = "0.4.6"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90"
495
+ dependencies = [
496
+ "smallvec",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "census"
501
+ version = "0.4.2"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
504
+
505
+ [[package]]
506
+ name = "cfg-if"
507
+ version = "1.0.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
510
+
511
+ [[package]]
512
+ name = "charabia"
513
+ version = "0.9.3"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "650d52f87a36472ea1c803dee49d6bfd23d426efa9363e2f4c4a0e6a236d3407"
516
+ dependencies = [
517
+ "aho-corasick",
518
+ "csv",
519
+ "either",
520
+ "fst",
521
+ "irg-kvariants",
522
+ "jieba-rs",
523
+ "lindera",
524
+ "once_cell",
525
+ "serde",
526
+ "slice-group-by",
527
+ "unicode-normalization",
528
+ "whatlang",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "ciborium"
533
+ version = "0.2.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
536
+ dependencies = [
537
+ "ciborium-io",
538
+ "ciborium-ll",
539
+ "serde",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "ciborium-io"
544
+ version = "0.2.2"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
547
+
548
+ [[package]]
549
+ name = "ciborium-ll"
550
+ version = "0.2.2"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
553
+ dependencies = [
554
+ "ciborium-io",
555
+ "half",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "clap"
560
+ version = "4.5.34"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff"
563
+ dependencies = [
564
+ "clap_builder",
565
+ "clap_derive",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "clap_builder"
570
+ version = "4.5.34"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489"
573
+ dependencies = [
574
+ "anstream",
575
+ "anstyle",
576
+ "clap_lex",
577
+ "strsim",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "clap_derive"
582
+ version = "4.5.32"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
585
+ dependencies = [
586
+ "heck 0.5.0",
587
+ "proc-macro2",
588
+ "quote",
589
+ "syn 2.0.100",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "clap_lex"
594
+ version = "0.7.4"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
597
+
598
+ [[package]]
599
+ name = "colorchoice"
600
+ version = "1.0.3"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
603
+
604
+ [[package]]
605
+ name = "console"
606
+ version = "0.15.11"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
609
+ dependencies = [
610
+ "encode_unicode",
611
+ "libc",
612
+ "once_cell",
613
+ "unicode-width 0.2.0",
614
+ "windows-sys 0.59.0",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "convert_case"
619
+ version = "0.6.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
622
+ dependencies = [
623
+ "unicode-segmentation",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "cookie"
628
+ version = "0.16.2"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
631
+ dependencies = [
632
+ "percent-encoding",
633
+ "time",
634
+ "version_check",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "core2"
639
+ version = "0.4.0"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
642
+ dependencies = [
643
+ "memchr",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "cpufeatures"
648
+ version = "0.2.17"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
651
+ dependencies = [
652
+ "libc",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "crc32fast"
657
+ version = "1.4.2"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
660
+ dependencies = [
661
+ "cfg-if",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "criterion"
666
+ version = "0.5.1"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
669
+ dependencies = [
670
+ "anes",
671
+ "cast",
672
+ "ciborium",
673
+ "clap",
674
+ "criterion-plot",
675
+ "is-terminal",
676
+ "itertools 0.10.5",
677
+ "num-traits",
678
+ "once_cell",
679
+ "oorandom",
680
+ "plotters",
681
+ "rayon",
682
+ "regex",
683
+ "serde",
684
+ "serde_derive",
685
+ "serde_json",
686
+ "tinytemplate",
687
+ "walkdir",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "criterion-plot"
692
+ version = "0.5.0"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
695
+ dependencies = [
696
+ "cast",
697
+ "itertools 0.10.5",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "crossbeam-channel"
702
+ version = "0.5.14"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
705
+ dependencies = [
706
+ "crossbeam-utils",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "crossbeam-deque"
711
+ version = "0.8.6"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
714
+ dependencies = [
715
+ "crossbeam-epoch",
716
+ "crossbeam-utils",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "crossbeam-epoch"
721
+ version = "0.9.18"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
724
+ dependencies = [
725
+ "crossbeam-utils",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "crossbeam-utils"
730
+ version = "0.8.21"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
733
+
734
+ [[package]]
735
+ name = "crunchy"
736
+ version = "0.2.3"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
739
+
740
+ [[package]]
741
+ name = "crypto-common"
742
+ version = "0.1.6"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
745
+ dependencies = [
746
+ "generic-array",
747
+ "typenum",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "csv"
752
+ version = "1.3.1"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
755
+ dependencies = [
756
+ "csv-core",
757
+ "itoa",
758
+ "ryu",
759
+ "serde",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "csv-core"
764
+ version = "0.1.12"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
767
+ dependencies = [
768
+ "memchr",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "ctor"
773
+ version = "0.2.9"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
776
+ dependencies = [
777
+ "quote",
778
+ "syn 2.0.100",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "darling"
783
+ version = "0.20.10"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
786
+ dependencies = [
787
+ "darling_core",
788
+ "darling_macro",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "darling_core"
793
+ version = "0.20.10"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
796
+ dependencies = [
797
+ "fnv",
798
+ "ident_case",
799
+ "proc-macro2",
800
+ "quote",
801
+ "strsim",
802
+ "syn 2.0.100",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "darling_macro"
807
+ version = "0.20.10"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
810
+ dependencies = [
811
+ "darling_core",
812
+ "quote",
813
+ "syn 2.0.100",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "dary_heap"
818
+ version = "0.3.7"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
821
+
822
+ [[package]]
823
+ name = "deranged"
824
+ version = "0.4.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
827
+ dependencies = [
828
+ "powerfmt",
829
+ "serde",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "derive_builder"
834
+ version = "0.20.2"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
837
+ dependencies = [
838
+ "derive_builder_macro",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "derive_builder_core"
843
+ version = "0.20.2"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
846
+ dependencies = [
847
+ "darling",
848
+ "proc-macro2",
849
+ "quote",
850
+ "syn 2.0.100",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "derive_builder_macro"
855
+ version = "0.20.2"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
858
+ dependencies = [
859
+ "derive_builder_core",
860
+ "syn 2.0.100",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "derive_more"
865
+ version = "2.0.1"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
868
+ dependencies = [
869
+ "derive_more-impl",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "derive_more-impl"
874
+ version = "2.0.1"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
877
+ dependencies = [
878
+ "proc-macro2",
879
+ "quote",
880
+ "syn 2.0.100",
881
+ "unicode-xid",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "digest"
886
+ version = "0.10.7"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
889
+ dependencies = [
890
+ "block-buffer",
891
+ "crypto-common",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "dirs"
896
+ version = "6.0.0"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
899
+ dependencies = [
900
+ "dirs-sys",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "dirs-sys"
905
+ version = "0.5.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
908
+ dependencies = [
909
+ "libc",
910
+ "option-ext",
911
+ "redox_users",
912
+ "windows-sys 0.59.0",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "displaydoc"
917
+ version = "0.2.5"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
920
+ dependencies = [
921
+ "proc-macro2",
922
+ "quote",
923
+ "syn 2.0.100",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "downcast-rs"
928
+ version = "1.2.1"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
931
+
932
+ [[package]]
933
+ name = "either"
934
+ version = "1.15.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
937
+
938
+ [[package]]
939
+ name = "encode_unicode"
940
+ version = "1.0.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
943
+
944
+ [[package]]
945
+ name = "encoding"
946
+ version = "0.2.33"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
949
+ dependencies = [
950
+ "encoding-index-japanese",
951
+ "encoding-index-korean",
952
+ "encoding-index-simpchinese",
953
+ "encoding-index-singlebyte",
954
+ "encoding-index-tradchinese",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "encoding-index-japanese"
959
+ version = "1.20141219.5"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
962
+ dependencies = [
963
+ "encoding_index_tests",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "encoding-index-korean"
968
+ version = "1.20141219.5"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
971
+ dependencies = [
972
+ "encoding_index_tests",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "encoding-index-simpchinese"
977
+ version = "1.20141219.5"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
980
+ dependencies = [
981
+ "encoding_index_tests",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "encoding-index-singlebyte"
986
+ version = "1.20141219.5"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
989
+ dependencies = [
990
+ "encoding_index_tests",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "encoding-index-tradchinese"
995
+ version = "1.20141219.5"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
998
+ dependencies = [
999
+ "encoding_index_tests",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "encoding_index_tests"
1004
+ version = "0.1.4"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
1007
+
1008
+ [[package]]
1009
+ name = "encoding_rs"
1010
+ version = "0.8.35"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1013
+ dependencies = [
1014
+ "cfg-if",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "encoding_rs_io"
1019
+ version = "0.1.7"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
1022
+ dependencies = [
1023
+ "encoding_rs",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "env_filter"
1028
+ version = "0.1.3"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
1031
+ dependencies = [
1032
+ "log",
1033
+ "regex",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "env_logger"
1038
+ version = "0.11.7"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
1041
+ dependencies = [
1042
+ "anstream",
1043
+ "anstyle",
1044
+ "env_filter",
1045
+ "jiff",
1046
+ "log",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "equivalent"
1051
+ version = "1.0.2"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1054
+
1055
+ [[package]]
1056
+ name = "errno"
1057
+ version = "0.3.10"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
1060
+ dependencies = [
1061
+ "libc",
1062
+ "windows-sys 0.52.0",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "fastdivide"
1067
+ version = "0.4.2"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
1070
+
1071
+ [[package]]
1072
+ name = "fastrand"
1073
+ version = "2.3.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1076
+
1077
+ [[package]]
1078
+ name = "filetime"
1079
+ version = "0.2.25"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
1082
+ dependencies = [
1083
+ "cfg-if",
1084
+ "libc",
1085
+ "libredox",
1086
+ "windows-sys 0.59.0",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "flate2"
1091
+ version = "1.1.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
1094
+ dependencies = [
1095
+ "crc32fast",
1096
+ "miniz_oxide",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "fnv"
1101
+ version = "1.0.7"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1104
+
1105
+ [[package]]
1106
+ name = "foldhash"
1107
+ version = "0.1.5"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1110
+
1111
+ [[package]]
1112
+ name = "form_urlencoded"
1113
+ version = "1.2.1"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1116
+ dependencies = [
1117
+ "percent-encoding",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "fs4"
1122
+ version = "0.8.4"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
1125
+ dependencies = [
1126
+ "rustix 0.38.44",
1127
+ "windows-sys 0.52.0",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "fst"
1132
+ version = "0.4.7"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
1135
+
1136
+ [[package]]
1137
+ name = "futures-core"
1138
+ version = "0.3.31"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1141
+
1142
+ [[package]]
1143
+ name = "futures-sink"
1144
+ version = "0.3.31"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1147
+
1148
+ [[package]]
1149
+ name = "futures-task"
1150
+ version = "0.3.31"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1153
+
1154
+ [[package]]
1155
+ name = "futures-util"
1156
+ version = "0.3.31"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1159
+ dependencies = [
1160
+ "futures-core",
1161
+ "futures-task",
1162
+ "pin-project-lite",
1163
+ "pin-utils",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "fxhash"
1168
+ version = "0.2.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
1171
+ dependencies = [
1172
+ "byteorder",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "generic-array"
1177
+ version = "0.14.7"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1180
+ dependencies = [
1181
+ "typenum",
1182
+ "version_check",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "getopts"
1187
+ version = "0.2.21"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
1190
+ dependencies = [
1191
+ "unicode-width 0.1.14",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "getrandom"
1196
+ version = "0.2.15"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1199
+ dependencies = [
1200
+ "cfg-if",
1201
+ "libc",
1202
+ "wasi 0.11.0+wasi-snapshot-preview1",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "getrandom"
1207
+ version = "0.3.2"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1210
+ dependencies = [
1211
+ "cfg-if",
1212
+ "libc",
1213
+ "r-efi",
1214
+ "wasi 0.14.2+wasi-0.2.4",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "gimli"
1219
+ version = "0.31.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1222
+
1223
+ [[package]]
1224
+ name = "glob"
1225
+ version = "0.3.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1228
+
1229
+ [[package]]
1230
+ name = "h2"
1231
+ version = "0.3.26"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1234
+ dependencies = [
1235
+ "bytes",
1236
+ "fnv",
1237
+ "futures-core",
1238
+ "futures-sink",
1239
+ "futures-util",
1240
+ "http",
1241
+ "indexmap",
1242
+ "slab",
1243
+ "tokio",
1244
+ "tokio-util",
1245
+ "tracing",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "half"
1250
+ version = "2.5.0"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1"
1253
+ dependencies = [
1254
+ "cfg-if",
1255
+ "crunchy",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "hashbrown"
1260
+ version = "0.14.5"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1263
+ dependencies = [
1264
+ "ahash",
1265
+ "allocator-api2",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "hashbrown"
1270
+ version = "0.15.2"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1273
+ dependencies = [
1274
+ "allocator-api2",
1275
+ "equivalent",
1276
+ "foldhash",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "heck"
1281
+ version = "0.4.1"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1284
+
1285
+ [[package]]
1286
+ name = "heck"
1287
+ version = "0.5.0"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1290
+
1291
+ [[package]]
1292
+ name = "hermit-abi"
1293
+ version = "0.3.9"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1296
+
1297
+ [[package]]
1298
+ name = "hermit-abi"
1299
+ version = "0.5.0"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1302
+
1303
+ [[package]]
1304
+ name = "htmlescape"
1305
+ version = "0.3.1"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
1308
+
1309
+ [[package]]
1310
+ name = "http"
1311
+ version = "0.2.12"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1314
+ dependencies = [
1315
+ "bytes",
1316
+ "fnv",
1317
+ "itoa",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "httparse"
1322
+ version = "1.10.1"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1325
+
1326
+ [[package]]
1327
+ name = "httpdate"
1328
+ version = "1.0.3"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1331
+
1332
+ [[package]]
1333
+ name = "humansize"
1334
+ version = "2.1.3"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
1337
+ dependencies = [
1338
+ "libm",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "icu_collections"
1343
+ version = "1.5.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1346
+ dependencies = [
1347
+ "displaydoc",
1348
+ "yoke",
1349
+ "zerofrom",
1350
+ "zerovec",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "icu_locid"
1355
+ version = "1.5.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1358
+ dependencies = [
1359
+ "displaydoc",
1360
+ "litemap",
1361
+ "tinystr",
1362
+ "writeable",
1363
+ "zerovec",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "icu_locid_transform"
1368
+ version = "1.5.0"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1371
+ dependencies = [
1372
+ "displaydoc",
1373
+ "icu_locid",
1374
+ "icu_locid_transform_data",
1375
+ "icu_provider",
1376
+ "tinystr",
1377
+ "zerovec",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "icu_locid_transform_data"
1382
+ version = "1.5.0"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1385
+
1386
+ [[package]]
1387
+ name = "icu_normalizer"
1388
+ version = "1.5.0"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1391
+ dependencies = [
1392
+ "displaydoc",
1393
+ "icu_collections",
1394
+ "icu_normalizer_data",
1395
+ "icu_properties",
1396
+ "icu_provider",
1397
+ "smallvec",
1398
+ "utf16_iter",
1399
+ "utf8_iter",
1400
+ "write16",
1401
+ "zerovec",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "icu_normalizer_data"
1406
+ version = "1.5.0"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1409
+
1410
+ [[package]]
1411
+ name = "icu_properties"
1412
+ version = "1.5.1"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1415
+ dependencies = [
1416
+ "displaydoc",
1417
+ "icu_collections",
1418
+ "icu_locid_transform",
1419
+ "icu_properties_data",
1420
+ "icu_provider",
1421
+ "tinystr",
1422
+ "zerovec",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "icu_properties_data"
1427
+ version = "1.5.0"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1430
+
1431
+ [[package]]
1432
+ name = "icu_provider"
1433
+ version = "1.5.0"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1436
+ dependencies = [
1437
+ "displaydoc",
1438
+ "icu_locid",
1439
+ "icu_provider_macros",
1440
+ "stable_deref_trait",
1441
+ "tinystr",
1442
+ "writeable",
1443
+ "yoke",
1444
+ "zerofrom",
1445
+ "zerovec",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "icu_provider_macros"
1450
+ version = "1.5.0"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1453
+ dependencies = [
1454
+ "proc-macro2",
1455
+ "quote",
1456
+ "syn 2.0.100",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "ident_case"
1461
+ version = "1.0.1"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1464
+
1465
+ [[package]]
1466
+ name = "idna"
1467
+ version = "1.0.3"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1470
+ dependencies = [
1471
+ "idna_adapter",
1472
+ "smallvec",
1473
+ "utf8_iter",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "idna_adapter"
1478
+ version = "1.2.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1481
+ dependencies = [
1482
+ "icu_normalizer",
1483
+ "icu_properties",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "impl-more"
1488
+ version = "0.1.9"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
1491
+
1492
+ [[package]]
1493
+ name = "include-flate"
1494
+ version = "0.3.0"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
1497
+ dependencies = [
1498
+ "include-flate-codegen",
1499
+ "lazy_static",
1500
+ "libflate",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "include-flate-codegen"
1505
+ version = "0.2.0"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
1508
+ dependencies = [
1509
+ "libflate",
1510
+ "proc-macro2",
1511
+ "quote",
1512
+ "syn 2.0.100",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "indexmap"
1517
+ version = "2.8.0"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
1520
+ dependencies = [
1521
+ "equivalent",
1522
+ "hashbrown 0.15.2",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "indicatif"
1527
+ version = "0.17.11"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1530
+ dependencies = [
1531
+ "console",
1532
+ "number_prefix",
1533
+ "portable-atomic",
1534
+ "unicode-width 0.2.0",
1535
+ "web-time",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "indoc"
1540
+ version = "2.0.6"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1543
+
1544
+ [[package]]
1545
+ name = "inherent"
1546
+ version = "1.0.12"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "6c38228f24186d9cc68c729accb4d413be9eaed6ad07ff79e0270d9e56f3de13"
1549
+ dependencies = [
1550
+ "proc-macro2",
1551
+ "quote",
1552
+ "syn 2.0.100",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "insta"
1557
+ version = "1.42.2"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
1560
+ dependencies = [
1561
+ "console",
1562
+ "linked-hash-map",
1563
+ "once_cell",
1564
+ "pin-project",
1565
+ "similar",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "instant"
1570
+ version = "0.1.13"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1573
+ dependencies = [
1574
+ "cfg-if",
1575
+ "js-sys",
1576
+ "wasm-bindgen",
1577
+ "web-sys",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "irg-kvariants"
1582
+ version = "0.1.1"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "ef2af7c331f2536964a32b78a7d2e0963d78b42f4a76323b16cc7d94b1ddce26"
1585
+ dependencies = [
1586
+ "csv",
1587
+ "once_cell",
1588
+ "serde",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "is-terminal"
1593
+ version = "0.4.16"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1596
+ dependencies = [
1597
+ "hermit-abi 0.5.0",
1598
+ "libc",
1599
+ "windows-sys 0.52.0",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "is_terminal_polyfill"
1604
+ version = "1.70.1"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1607
+
1608
+ [[package]]
1609
+ name = "itertools"
1610
+ version = "0.10.5"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1613
+ dependencies = [
1614
+ "either",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "itertools"
1619
+ version = "0.12.1"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1622
+ dependencies = [
1623
+ "either",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "itoa"
1628
+ version = "1.0.15"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1631
+
1632
+ [[package]]
1633
+ name = "jieba-macros"
1634
+ version = "0.7.1"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "7c676b32a471d3cfae8dac2ad2f8334cd52e53377733cca8c1fb0a5062fec192"
1637
+ dependencies = [
1638
+ "phf_codegen",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "jieba-rs"
1643
+ version = "0.7.2"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "6d1bcad6332969e4d48ee568d430e14ee6dea70740c2549d005d87677ebefb0c"
1646
+ dependencies = [
1647
+ "cedarwood",
1648
+ "fxhash",
1649
+ "include-flate",
1650
+ "jieba-macros",
1651
+ "lazy_static",
1652
+ "phf",
1653
+ "regex",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "jiff"
1658
+ version = "0.2.4"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "d699bc6dfc879fb1bf9bdff0d4c56f0884fc6f0d0eb0fba397a6d00cd9a6b85e"
1661
+ dependencies = [
1662
+ "jiff-static",
1663
+ "log",
1664
+ "portable-atomic",
1665
+ "portable-atomic-util",
1666
+ "serde",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "jiff-static"
1671
+ version = "0.2.4"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "8d16e75759ee0aa64c57a56acbf43916987b20c77373cb7e808979e02b93c9f9"
1674
+ dependencies = [
1675
+ "proc-macro2",
1676
+ "quote",
1677
+ "syn 2.0.100",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "jobserver"
1682
+ version = "0.1.32"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1685
+ dependencies = [
1686
+ "libc",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "js-sys"
1691
+ version = "0.3.77"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1694
+ dependencies = [
1695
+ "once_cell",
1696
+ "wasm-bindgen",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "kanaria"
1701
+ version = "0.2.0"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "c0f9d9652540055ac4fded998a73aca97d965899077ab1212587437da44196ff"
1704
+ dependencies = [
1705
+ "bitflags 1.3.2",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "language-tags"
1710
+ version = "0.3.2"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
1713
+
1714
+ [[package]]
1715
+ name = "lazy_static"
1716
+ version = "1.5.0"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1719
+
1720
+ [[package]]
1721
+ name = "levenshtein_automata"
1722
+ version = "0.2.1"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
1725
+
1726
+ [[package]]
1727
+ name = "libc"
1728
+ version = "0.2.171"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1731
+
1732
+ [[package]]
1733
+ name = "libflate"
1734
+ version = "2.1.0"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
1737
+ dependencies = [
1738
+ "adler32",
1739
+ "core2",
1740
+ "crc32fast",
1741
+ "dary_heap",
1742
+ "libflate_lz77",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "libflate_lz77"
1747
+ version = "2.1.0"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
1750
+ dependencies = [
1751
+ "core2",
1752
+ "hashbrown 0.14.5",
1753
+ "rle-decode-fast",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "libloading"
1758
+ version = "0.8.6"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1761
+ dependencies = [
1762
+ "cfg-if",
1763
+ "windows-targets",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "libm"
1768
+ version = "0.2.11"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1771
+
1772
+ [[package]]
1773
+ name = "libredox"
1774
+ version = "0.1.3"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1777
+ dependencies = [
1778
+ "bitflags 2.9.0",
1779
+ "libc",
1780
+ "redox_syscall",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "lindera"
1785
+ version = "0.32.3"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "832c220475557e3b44a46cad1862b57f010f0c6e93d771d0e628e08689c068b1"
1788
+ dependencies = [
1789
+ "lindera-analyzer",
1790
+ "lindera-core",
1791
+ "lindera-dictionary",
1792
+ "lindera-filter",
1793
+ "lindera-tokenizer",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "lindera-analyzer"
1798
+ version = "0.32.3"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "a8e26651714abf5167e6b6a80f5cdaa0cad41c5fcb84d8ba96bebafcb9029339"
1801
+ dependencies = [
1802
+ "anyhow",
1803
+ "bincode",
1804
+ "byteorder",
1805
+ "encoding",
1806
+ "kanaria",
1807
+ "lindera-cc-cedict-builder",
1808
+ "lindera-core",
1809
+ "lindera-dictionary",
1810
+ "lindera-filter",
1811
+ "lindera-ipadic-builder",
1812
+ "lindera-ko-dic-builder",
1813
+ "lindera-tokenizer",
1814
+ "lindera-unidic-builder",
1815
+ "once_cell",
1816
+ "regex",
1817
+ "serde",
1818
+ "serde_json",
1819
+ "thiserror 1.0.69",
1820
+ "unicode-blocks",
1821
+ "unicode-normalization",
1822
+ "unicode-segmentation",
1823
+ "yada",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "lindera-assets"
1828
+ version = "0.32.3"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "ebb01f1ca53c1e642234c6c7fdb9ac664ad0c1ab9502f33e4200201bac7e6ce7"
1831
+ dependencies = [
1832
+ "encoding",
1833
+ "flate2",
1834
+ "lindera-core",
1835
+ "tar",
1836
+ "ureq",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "lindera-cc-cedict"
1841
+ version = "0.32.3"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "5f7618d9aa947fdd7c38eae2b79f0fd237ecb5067608f1363610ba20d20ab5a8"
1844
+ dependencies = [
1845
+ "bincode",
1846
+ "byteorder",
1847
+ "lindera-cc-cedict-builder",
1848
+ "lindera-core",
1849
+ "lindera-decompress",
1850
+ "once_cell",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "lindera-cc-cedict-builder"
1855
+ version = "0.32.3"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "efdbcb809d81428935d601a78c94bfb39500749213f7320705f427a7a1d31aec"
1858
+ dependencies = [
1859
+ "anyhow",
1860
+ "lindera-core",
1861
+ "lindera-decompress",
1862
+ "lindera-dictionary-builder",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "lindera-compress"
1867
+ version = "0.32.3"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "eac178afa2456dac469d3b1a2d7fbaf3e1ea796a1f52321e8ac29545a53c239c"
1870
+ dependencies = [
1871
+ "anyhow",
1872
+ "flate2",
1873
+ "lindera-decompress",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "lindera-core"
1878
+ version = "0.32.3"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "649777465f48147ce593ab6db347e235e3af8f693a23f4437be94a1cdbdf5fdf"
1881
+ dependencies = [
1882
+ "anyhow",
1883
+ "bincode",
1884
+ "byteorder",
1885
+ "encoding_rs",
1886
+ "log",
1887
+ "once_cell",
1888
+ "serde",
1889
+ "thiserror 1.0.69",
1890
+ "yada",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "lindera-decompress"
1895
+ version = "0.32.3"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "9e3faaceb85e43ac250021866c6db3cdc9997b44b3d3ea498594d04edc91fc45"
1898
+ dependencies = [
1899
+ "anyhow",
1900
+ "flate2",
1901
+ "serde",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "lindera-dictionary"
1906
+ version = "0.32.3"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "31e15b2d2d8a4ad45f2e373a084931cf3dfbde15f124044e2436bb920af3366c"
1909
+ dependencies = [
1910
+ "anyhow",
1911
+ "bincode",
1912
+ "byteorder",
1913
+ "lindera-cc-cedict",
1914
+ "lindera-cc-cedict-builder",
1915
+ "lindera-core",
1916
+ "lindera-ipadic",
1917
+ "lindera-ipadic-builder",
1918
+ "lindera-ipadic-neologd",
1919
+ "lindera-ipadic-neologd-builder",
1920
+ "lindera-ko-dic",
1921
+ "lindera-ko-dic-builder",
1922
+ "lindera-unidic",
1923
+ "lindera-unidic-builder",
1924
+ "serde",
1925
+ "strum",
1926
+ "strum_macros",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "lindera-dictionary-builder"
1931
+ version = "0.32.3"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "59802949110545b59b663917ed3fd55dc3b3a8cde6bd20137d7fe24372cfb9aa"
1934
+ dependencies = [
1935
+ "anyhow",
1936
+ "bincode",
1937
+ "byteorder",
1938
+ "csv",
1939
+ "derive_builder",
1940
+ "encoding",
1941
+ "encoding_rs",
1942
+ "encoding_rs_io",
1943
+ "glob",
1944
+ "lindera-compress",
1945
+ "lindera-core",
1946
+ "lindera-decompress",
1947
+ "log",
1948
+ "yada",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "lindera-filter"
1953
+ version = "0.32.3"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "1320f118c3fc9e897f4ebfc16864e5ef8c0b06ba769c0a50e53f193f9d682bf8"
1956
+ dependencies = [
1957
+ "anyhow",
1958
+ "csv",
1959
+ "kanaria",
1960
+ "lindera-cc-cedict-builder",
1961
+ "lindera-core",
1962
+ "lindera-dictionary",
1963
+ "lindera-ipadic-builder",
1964
+ "lindera-ko-dic-builder",
1965
+ "lindera-unidic-builder",
1966
+ "once_cell",
1967
+ "regex",
1968
+ "serde",
1969
+ "serde_json",
1970
+ "unicode-blocks",
1971
+ "unicode-normalization",
1972
+ "unicode-segmentation",
1973
+ "yada",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "lindera-ipadic"
1978
+ version = "0.32.3"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "5b4731bf3730f1f38266d7ee9bca7d460cd336645c9dfd4e6a1082e58ab1e993"
1981
+ dependencies = [
1982
+ "bincode",
1983
+ "byteorder",
1984
+ "lindera-core",
1985
+ "lindera-decompress",
1986
+ "lindera-ipadic-builder",
1987
+ "once_cell",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "lindera-ipadic-builder"
1992
+ version = "0.32.3"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "309966c12e682f67205c3cd3c8dc55bbdcd1eb3b5c7c5cb41fb8acd18906d340"
1995
+ dependencies = [
1996
+ "anyhow",
1997
+ "lindera-core",
1998
+ "lindera-decompress",
1999
+ "lindera-dictionary-builder",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "lindera-ipadic-neologd"
2004
+ version = "0.32.3"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "e90e919b4cfb9962d24ee1e1d50a7c163bbf356376495ad66d1996e20b9f9e44"
2007
+ dependencies = [
2008
+ "bincode",
2009
+ "byteorder",
2010
+ "lindera-core",
2011
+ "lindera-decompress",
2012
+ "lindera-ipadic-neologd-builder",
2013
+ "once_cell",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "lindera-ipadic-neologd-builder"
2018
+ version = "0.32.3"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "7e517df0d501f9f8bf3126da20fc8cb9a5e37921e0eec1824d7a62f096463e02"
2021
+ dependencies = [
2022
+ "anyhow",
2023
+ "lindera-core",
2024
+ "lindera-decompress",
2025
+ "lindera-dictionary-builder",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "lindera-ko-dic"
2030
+ version = "0.32.3"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "e9c6da4e68bc8b452a54b96d65361ebdceb4b6f36ecf262425c0e1f77960ae82"
2033
+ dependencies = [
2034
+ "bincode",
2035
+ "byteorder",
2036
+ "lindera-assets",
2037
+ "lindera-core",
2038
+ "lindera-decompress",
2039
+ "lindera-ko-dic-builder",
2040
+ "once_cell",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "lindera-ko-dic-builder"
2045
+ version = "0.32.3"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "afc95884cc8f6dfb176caf5991043a4acf94c359215bbd039ea765e00454f271"
2048
+ dependencies = [
2049
+ "anyhow",
2050
+ "lindera-core",
2051
+ "lindera-decompress",
2052
+ "lindera-dictionary-builder",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "lindera-tokenizer"
2057
+ version = "0.32.3"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "d122042e1232a55c3604692445952a134e523822e9b4b9ab32a53ff890037ad4"
2060
+ dependencies = [
2061
+ "bincode",
2062
+ "lindera-core",
2063
+ "lindera-dictionary",
2064
+ "once_cell",
2065
+ "serde",
2066
+ "serde_json",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "lindera-unidic"
2071
+ version = "0.32.3"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "cbffae1fb2f2614abdcb50f99b138476dbac19862ffa57bfdc9c7b5d5b22a90c"
2074
+ dependencies = [
2075
+ "bincode",
2076
+ "byteorder",
2077
+ "lindera-assets",
2078
+ "lindera-core",
2079
+ "lindera-decompress",
2080
+ "lindera-unidic-builder",
2081
+ "once_cell",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "lindera-unidic-builder"
2086
+ version = "0.32.3"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "fe50055327712ebd1bcc74b657cf78c728a78b9586e3f99d5dd0b6a0be221c5d"
2089
+ dependencies = [
2090
+ "anyhow",
2091
+ "lindera-core",
2092
+ "lindera-decompress",
2093
+ "lindera-dictionary-builder",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "linked-hash-map"
2098
+ version = "0.5.6"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2101
+
2102
+ [[package]]
2103
+ name = "linux-raw-sys"
2104
+ version = "0.4.15"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2107
+
2108
+ [[package]]
2109
+ name = "linux-raw-sys"
2110
+ version = "0.9.3"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
2113
+
2114
+ [[package]]
2115
+ name = "litemap"
2116
+ version = "0.7.5"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2119
+
2120
+ [[package]]
2121
+ name = "local-channel"
2122
+ version = "0.1.5"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
2125
+ dependencies = [
2126
+ "futures-core",
2127
+ "futures-sink",
2128
+ "local-waker",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "local-waker"
2133
+ version = "0.1.4"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2136
+
2137
+ [[package]]
2138
+ name = "lock_api"
2139
+ version = "0.4.12"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2142
+ dependencies = [
2143
+ "autocfg",
2144
+ "scopeguard",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "log"
2149
+ version = "0.4.26"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
2152
+
2153
+ [[package]]
2154
+ name = "lru"
2155
+ version = "0.12.5"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2158
+ dependencies = [
2159
+ "hashbrown 0.15.2",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "lz4_flex"
2164
+ version = "0.11.3"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
2167
+
2168
+ [[package]]
2169
+ name = "map-macro"
2170
+ version = "0.3.0"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "fb950a42259642e5a3483115aca87eebed2a64886993463af9c9739c205b8d3a"
2173
+
2174
+ [[package]]
2175
+ name = "measure_time"
2176
+ version = "0.8.3"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc"
2179
+ dependencies = [
2180
+ "instant",
2181
+ "log",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "memchr"
2186
+ version = "2.7.4"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2189
+
2190
+ [[package]]
2191
+ name = "memmap2"
2192
+ version = "0.9.5"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
2195
+ dependencies = [
2196
+ "libc",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "memoffset"
2201
+ version = "0.9.1"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2204
+ dependencies = [
2205
+ "autocfg",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "merge"
2210
+ version = "0.1.0"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "10bbef93abb1da61525bbc45eeaff6473a41907d19f8f9aa5168d214e10693e9"
2213
+ dependencies = [
2214
+ "merge_derive",
2215
+ "num-traits",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "merge_derive"
2220
+ version = "0.1.0"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "209d075476da2e63b4b29e72a2ef627b840589588e71400a25e3565c4f849d07"
2223
+ dependencies = [
2224
+ "proc-macro-error",
2225
+ "proc-macro2",
2226
+ "quote",
2227
+ "syn 1.0.109",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "mime"
2232
+ version = "0.3.17"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2235
+
2236
+ [[package]]
2237
+ name = "minimal-lexical"
2238
+ version = "0.2.1"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2241
+
2242
+ [[package]]
2243
+ name = "miniz_oxide"
2244
+ version = "0.8.5"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2247
+ dependencies = [
2248
+ "adler2",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "mio"
2253
+ version = "1.0.3"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2256
+ dependencies = [
2257
+ "libc",
2258
+ "log",
2259
+ "wasi 0.11.0+wasi-snapshot-preview1",
2260
+ "windows-sys 0.52.0",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "munge"
2265
+ version = "0.4.3"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "a0091202c98cf06da46c279fdf50cccb6b1c43b4521abdf6a27b4c7e71d5d9d7"
2268
+ dependencies = [
2269
+ "munge_macro",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "munge_macro"
2274
+ version = "0.4.3"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "734799cf91479720b2f970c61a22850940dd91e27d4f02b1c6fc792778df2459"
2277
+ dependencies = [
2278
+ "proc-macro2",
2279
+ "quote",
2280
+ "syn 2.0.100",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "murmurhash32"
2285
+ version = "0.3.1"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
2288
+
2289
+ [[package]]
2290
+ name = "napi"
2291
+ version = "2.16.17"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
2294
+ dependencies = [
2295
+ "bitflags 2.9.0",
2296
+ "ctor",
2297
+ "napi-derive",
2298
+ "napi-sys",
2299
+ "once_cell",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "napi-build"
2304
+ version = "2.1.6"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "e28acfa557c083f6e254a786e01ba253fc56f18ee000afcd4f79af735f73a6da"
2307
+
2308
+ [[package]]
2309
+ name = "napi-derive"
2310
+ version = "2.16.13"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
2313
+ dependencies = [
2314
+ "cfg-if",
2315
+ "convert_case",
2316
+ "napi-derive-backend",
2317
+ "proc-macro2",
2318
+ "quote",
2319
+ "syn 2.0.100",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "napi-derive-backend"
2324
+ version = "1.0.75"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
2327
+ dependencies = [
2328
+ "convert_case",
2329
+ "once_cell",
2330
+ "proc-macro2",
2331
+ "quote",
2332
+ "regex",
2333
+ "semver",
2334
+ "syn 2.0.100",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "napi-sys"
2339
+ version = "2.4.0"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
2342
+ dependencies = [
2343
+ "libloading",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "nom"
2348
+ version = "7.1.3"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2351
+ dependencies = [
2352
+ "memchr",
2353
+ "minimal-lexical",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "num-conv"
2358
+ version = "0.1.0"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2361
+
2362
+ [[package]]
2363
+ name = "num-format"
2364
+ version = "0.4.4"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
2367
+ dependencies = [
2368
+ "arrayvec",
2369
+ "itoa",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "num-traits"
2374
+ version = "0.2.19"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2377
+ dependencies = [
2378
+ "autocfg",
2379
+ "libm",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "num_cpus"
2384
+ version = "1.16.0"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2387
+ dependencies = [
2388
+ "hermit-abi 0.3.9",
2389
+ "libc",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "number_prefix"
2394
+ version = "0.4.0"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2397
+
2398
+ [[package]]
2399
+ name = "object"
2400
+ version = "0.36.7"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2403
+ dependencies = [
2404
+ "memchr",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "odict"
2409
+ version = "2.1.0"
2410
+ dependencies = [
2411
+ "brotli",
2412
+ "byteorder",
2413
+ "charabia",
2414
+ "criterion",
2415
+ "dirs",
2416
+ "insta",
2417
+ "map-macro",
2418
+ "pulldown-cmark",
2419
+ "quick-xml",
2420
+ "rayon",
2421
+ "regex",
2422
+ "rkyv",
2423
+ "sea-query",
2424
+ "serde",
2425
+ "serde_json",
2426
+ "tantivy",
2427
+ "tempfile",
2428
+ "thiserror 2.0.12",
2429
+ "uuid",
2430
+ "validation",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "odict-cli"
2435
+ version = "2.1.0"
2436
+ dependencies = [
2437
+ "actix-web",
2438
+ "anyhow",
2439
+ "clap",
2440
+ "console",
2441
+ "derive_more",
2442
+ "env_logger",
2443
+ "humansize",
2444
+ "indicatif",
2445
+ "num-format",
2446
+ "odict",
2447
+ "pulldown-cmark",
2448
+ "serde",
2449
+ ]
2450
+
2451
+ [[package]]
2452
+ name = "odict_node"
2453
+ version = "0.0.2"
2454
+ dependencies = [
2455
+ "merge",
2456
+ "napi",
2457
+ "napi-build",
2458
+ "napi-derive",
2459
+ "odict",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "odict_python"
2464
+ version = "1.1.0"
2465
+ dependencies = [
2466
+ "either",
2467
+ "odict",
2468
+ "pyo3",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "once_cell"
2473
+ version = "1.21.1"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
2476
+
2477
+ [[package]]
2478
+ name = "oneshot"
2479
+ version = "0.1.11"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea"
2482
+
2483
+ [[package]]
2484
+ name = "oorandom"
2485
+ version = "11.1.5"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2488
+
2489
+ [[package]]
2490
+ name = "option-ext"
2491
+ version = "0.2.0"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2494
+
2495
+ [[package]]
2496
+ name = "ownedbytes"
2497
+ version = "0.7.0"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558"
2500
+ dependencies = [
2501
+ "stable_deref_trait",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "parking_lot"
2506
+ version = "0.12.3"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2509
+ dependencies = [
2510
+ "lock_api",
2511
+ "parking_lot_core",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "parking_lot_core"
2516
+ version = "0.9.10"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2519
+ dependencies = [
2520
+ "cfg-if",
2521
+ "libc",
2522
+ "redox_syscall",
2523
+ "smallvec",
2524
+ "windows-targets",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "percent-encoding"
2529
+ version = "2.3.1"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2532
+
2533
+ [[package]]
2534
+ name = "phf"
2535
+ version = "0.11.3"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2538
+ dependencies = [
2539
+ "phf_shared",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "phf_codegen"
2544
+ version = "0.11.3"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2547
+ dependencies = [
2548
+ "phf_generator",
2549
+ "phf_shared",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "phf_generator"
2554
+ version = "0.11.3"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2557
+ dependencies = [
2558
+ "phf_shared",
2559
+ "rand 0.8.5",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "phf_shared"
2564
+ version = "0.11.3"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2567
+ dependencies = [
2568
+ "siphasher",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "pin-project"
2573
+ version = "1.1.10"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
2576
+ dependencies = [
2577
+ "pin-project-internal",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "pin-project-internal"
2582
+ version = "1.1.10"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2585
+ dependencies = [
2586
+ "proc-macro2",
2587
+ "quote",
2588
+ "syn 2.0.100",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "pin-project-lite"
2593
+ version = "0.2.16"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2596
+
2597
+ [[package]]
2598
+ name = "pin-utils"
2599
+ version = "0.1.0"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2602
+
2603
+ [[package]]
2604
+ name = "pkg-config"
2605
+ version = "0.3.32"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2608
+
2609
+ [[package]]
2610
+ name = "plotters"
2611
+ version = "0.3.7"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2614
+ dependencies = [
2615
+ "num-traits",
2616
+ "plotters-backend",
2617
+ "plotters-svg",
2618
+ "wasm-bindgen",
2619
+ "web-sys",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "plotters-backend"
2624
+ version = "0.3.7"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2627
+
2628
+ [[package]]
2629
+ name = "plotters-svg"
2630
+ version = "0.3.7"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2633
+ dependencies = [
2634
+ "plotters-backend",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "portable-atomic"
2639
+ version = "1.11.0"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2642
+
2643
+ [[package]]
2644
+ name = "portable-atomic-util"
2645
+ version = "0.2.4"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2648
+ dependencies = [
2649
+ "portable-atomic",
2650
+ ]
2651
+
2652
+ [[package]]
2653
+ name = "powerfmt"
2654
+ version = "0.2.0"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2657
+
2658
+ [[package]]
2659
+ name = "ppv-lite86"
2660
+ version = "0.2.21"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2663
+ dependencies = [
2664
+ "zerocopy 0.8.24",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "proc-macro-error"
2669
+ version = "1.0.4"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2672
+ dependencies = [
2673
+ "proc-macro-error-attr",
2674
+ "proc-macro2",
2675
+ "quote",
2676
+ "syn 1.0.109",
2677
+ "version_check",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "proc-macro-error-attr"
2682
+ version = "1.0.4"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2685
+ dependencies = [
2686
+ "proc-macro2",
2687
+ "quote",
2688
+ "version_check",
2689
+ ]
2690
+
2691
+ [[package]]
2692
+ name = "proc-macro2"
2693
+ version = "1.0.94"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2696
+ dependencies = [
2697
+ "unicode-ident",
2698
+ ]
2699
+
2700
+ [[package]]
2701
+ name = "ptr_meta"
2702
+ version = "0.3.0"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "fe9e76f66d3f9606f44e45598d155cb13ecf09f4a28199e48daf8c8fc937ea90"
2705
+ dependencies = [
2706
+ "ptr_meta_derive",
2707
+ ]
2708
+
2709
+ [[package]]
2710
+ name = "ptr_meta_derive"
2711
+ version = "0.3.0"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
2714
+ dependencies = [
2715
+ "proc-macro2",
2716
+ "quote",
2717
+ "syn 2.0.100",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "pulldown-cmark"
2722
+ version = "0.13.0"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
2725
+ dependencies = [
2726
+ "bitflags 2.9.0",
2727
+ "getopts",
2728
+ "memchr",
2729
+ "pulldown-cmark-escape",
2730
+ "unicase",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "pulldown-cmark-escape"
2735
+ version = "0.11.0"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
2738
+
2739
+ [[package]]
2740
+ name = "pyo3"
2741
+ version = "0.24.0"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86"
2744
+ dependencies = [
2745
+ "cfg-if",
2746
+ "either",
2747
+ "indoc",
2748
+ "libc",
2749
+ "memoffset",
2750
+ "once_cell",
2751
+ "portable-atomic",
2752
+ "pyo3-build-config",
2753
+ "pyo3-ffi",
2754
+ "pyo3-macros",
2755
+ "unindent",
2756
+ ]
2757
+
2758
+ [[package]]
2759
+ name = "pyo3-build-config"
2760
+ version = "0.24.0"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a"
2763
+ dependencies = [
2764
+ "once_cell",
2765
+ "target-lexicon",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "pyo3-ffi"
2770
+ version = "0.24.0"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c"
2773
+ dependencies = [
2774
+ "libc",
2775
+ "pyo3-build-config",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "pyo3-macros"
2780
+ version = "0.24.0"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42"
2783
+ dependencies = [
2784
+ "proc-macro2",
2785
+ "pyo3-macros-backend",
2786
+ "quote",
2787
+ "syn 2.0.100",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "pyo3-macros-backend"
2792
+ version = "0.24.0"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e"
2795
+ dependencies = [
2796
+ "heck 0.5.0",
2797
+ "proc-macro2",
2798
+ "pyo3-build-config",
2799
+ "quote",
2800
+ "syn 2.0.100",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "quick-xml"
2805
+ version = "0.37.3"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
2808
+ dependencies = [
2809
+ "memchr",
2810
+ "serde",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "quote"
2815
+ version = "1.0.40"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2818
+ dependencies = [
2819
+ "proc-macro2",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "r-efi"
2824
+ version = "5.2.0"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2827
+
2828
+ [[package]]
2829
+ name = "rancor"
2830
+ version = "0.1.0"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "caf5f7161924b9d1cea0e4cabc97c372cea92b5f927fc13c6bca67157a0ad947"
2833
+ dependencies = [
2834
+ "ptr_meta",
2835
+ ]
2836
+
2837
+ [[package]]
2838
+ name = "rand"
2839
+ version = "0.8.5"
2840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2841
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2842
+ dependencies = [
2843
+ "libc",
2844
+ "rand_chacha 0.3.1",
2845
+ "rand_core 0.6.4",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "rand"
2850
+ version = "0.9.0"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2853
+ dependencies = [
2854
+ "rand_chacha 0.9.0",
2855
+ "rand_core 0.9.3",
2856
+ "zerocopy 0.8.24",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "rand_chacha"
2861
+ version = "0.3.1"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2864
+ dependencies = [
2865
+ "ppv-lite86",
2866
+ "rand_core 0.6.4",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "rand_chacha"
2871
+ version = "0.9.0"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2874
+ dependencies = [
2875
+ "ppv-lite86",
2876
+ "rand_core 0.9.3",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "rand_core"
2881
+ version = "0.6.4"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2884
+ dependencies = [
2885
+ "getrandom 0.2.15",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "rand_core"
2890
+ version = "0.9.3"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2893
+ dependencies = [
2894
+ "getrandom 0.3.2",
2895
+ ]
2896
+
2897
+ [[package]]
2898
+ name = "rand_distr"
2899
+ version = "0.4.3"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2902
+ dependencies = [
2903
+ "num-traits",
2904
+ "rand 0.8.5",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "rayon"
2909
+ version = "1.10.0"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2912
+ dependencies = [
2913
+ "either",
2914
+ "rayon-core",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "rayon-core"
2919
+ version = "1.12.1"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2922
+ dependencies = [
2923
+ "crossbeam-deque",
2924
+ "crossbeam-utils",
2925
+ ]
2926
+
2927
+ [[package]]
2928
+ name = "redox_syscall"
2929
+ version = "0.5.10"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
2932
+ dependencies = [
2933
+ "bitflags 2.9.0",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "redox_users"
2938
+ version = "0.5.0"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
2941
+ dependencies = [
2942
+ "getrandom 0.2.15",
2943
+ "libredox",
2944
+ "thiserror 2.0.12",
2945
+ ]
2946
+
2947
+ [[package]]
2948
+ name = "regex"
2949
+ version = "1.11.1"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2952
+ dependencies = [
2953
+ "aho-corasick",
2954
+ "memchr",
2955
+ "regex-automata",
2956
+ "regex-syntax",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "regex-automata"
2961
+ version = "0.4.9"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2964
+ dependencies = [
2965
+ "aho-corasick",
2966
+ "memchr",
2967
+ "regex-syntax",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "regex-lite"
2972
+ version = "0.1.6"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2975
+
2976
+ [[package]]
2977
+ name = "regex-syntax"
2978
+ version = "0.8.5"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2981
+
2982
+ [[package]]
2983
+ name = "rend"
2984
+ version = "0.5.2"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "a35e8a6bf28cd121053a66aa2e6a2e3eaffad4a60012179f0e864aa5ffeff215"
2987
+ dependencies = [
2988
+ "bytecheck",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "ring"
2993
+ version = "0.17.14"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2996
+ dependencies = [
2997
+ "cc",
2998
+ "cfg-if",
2999
+ "getrandom 0.2.15",
3000
+ "libc",
3001
+ "untrusted",
3002
+ "windows-sys 0.52.0",
3003
+ ]
3004
+
3005
+ [[package]]
3006
+ name = "rkyv"
3007
+ version = "0.8.10"
3008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3009
+ checksum = "1e147371c75553e1e2fcdb483944a8540b8438c31426279553b9a8182a9b7b65"
3010
+ dependencies = [
3011
+ "bytecheck",
3012
+ "bytes",
3013
+ "hashbrown 0.15.2",
3014
+ "indexmap",
3015
+ "munge",
3016
+ "ptr_meta",
3017
+ "rancor",
3018
+ "rend",
3019
+ "rkyv_derive",
3020
+ "tinyvec",
3021
+ "uuid",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "rkyv_derive"
3026
+ version = "0.8.10"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "246b40ac189af6c675d124b802e8ef6d5246c53e17367ce9501f8f66a81abb7a"
3029
+ dependencies = [
3030
+ "proc-macro2",
3031
+ "quote",
3032
+ "syn 2.0.100",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "rle-decode-fast"
3037
+ version = "1.0.3"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
3040
+
3041
+ [[package]]
3042
+ name = "rust-stemmers"
3043
+ version = "1.2.0"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
3046
+ dependencies = [
3047
+ "serde",
3048
+ "serde_derive",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "rustc-demangle"
3053
+ version = "0.1.24"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3056
+
3057
+ [[package]]
3058
+ name = "rustc-hash"
3059
+ version = "1.1.0"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3062
+
3063
+ [[package]]
3064
+ name = "rustix"
3065
+ version = "0.38.44"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3068
+ dependencies = [
3069
+ "bitflags 2.9.0",
3070
+ "errno",
3071
+ "libc",
3072
+ "linux-raw-sys 0.4.15",
3073
+ "windows-sys 0.52.0",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "rustix"
3078
+ version = "1.0.3"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
3081
+ dependencies = [
3082
+ "bitflags 2.9.0",
3083
+ "errno",
3084
+ "libc",
3085
+ "linux-raw-sys 0.9.3",
3086
+ "windows-sys 0.52.0",
3087
+ ]
3088
+
3089
+ [[package]]
3090
+ name = "rustls"
3091
+ version = "0.23.25"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
3094
+ dependencies = [
3095
+ "log",
3096
+ "once_cell",
3097
+ "ring",
3098
+ "rustls-pki-types",
3099
+ "rustls-webpki",
3100
+ "subtle",
3101
+ "zeroize",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "rustls-pki-types"
3106
+ version = "1.11.0"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3109
+
3110
+ [[package]]
3111
+ name = "rustls-webpki"
3112
+ version = "0.103.0"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "0aa4eeac2588ffff23e9d7a7e9b3f971c5fb5b7ebc9452745e0c232c64f83b2f"
3115
+ dependencies = [
3116
+ "ring",
3117
+ "rustls-pki-types",
3118
+ "untrusted",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "rustversion"
3123
+ version = "1.0.20"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3126
+
3127
+ [[package]]
3128
+ name = "ryu"
3129
+ version = "1.0.20"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3132
+
3133
+ [[package]]
3134
+ name = "same-file"
3135
+ version = "1.0.6"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3138
+ dependencies = [
3139
+ "winapi-util",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "scopeguard"
3144
+ version = "1.2.0"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3147
+
3148
+ [[package]]
3149
+ name = "sea-query"
3150
+ version = "0.32.3"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "f5a24d8b9fcd2674a6c878a3d871f4f1380c6c43cc3718728ac96864d888458e"
3153
+ dependencies = [
3154
+ "inherent",
3155
+ "sea-query-derive",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "sea-query-derive"
3160
+ version = "0.4.3"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "bae0cbad6ab996955664982739354128c58d16e126114fe88c2a493642502aab"
3163
+ dependencies = [
3164
+ "darling",
3165
+ "heck 0.4.1",
3166
+ "proc-macro2",
3167
+ "quote",
3168
+ "syn 2.0.100",
3169
+ "thiserror 2.0.12",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "semver"
3174
+ version = "1.0.26"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3177
+
3178
+ [[package]]
3179
+ name = "serde"
3180
+ version = "1.0.219"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
3183
+ dependencies = [
3184
+ "serde_derive",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "serde_derive"
3189
+ version = "1.0.219"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3192
+ dependencies = [
3193
+ "proc-macro2",
3194
+ "quote",
3195
+ "syn 2.0.100",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "serde_json"
3200
+ version = "1.0.140"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3203
+ dependencies = [
3204
+ "itoa",
3205
+ "memchr",
3206
+ "ryu",
3207
+ "serde",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "serde_urlencoded"
3212
+ version = "0.7.1"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3215
+ dependencies = [
3216
+ "form_urlencoded",
3217
+ "itoa",
3218
+ "ryu",
3219
+ "serde",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "sha1"
3224
+ version = "0.10.6"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3227
+ dependencies = [
3228
+ "cfg-if",
3229
+ "cpufeatures",
3230
+ "digest",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "shlex"
3235
+ version = "1.3.0"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3238
+
3239
+ [[package]]
3240
+ name = "signal-hook-registry"
3241
+ version = "1.4.2"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3244
+ dependencies = [
3245
+ "libc",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "simdutf8"
3250
+ version = "0.1.5"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3253
+
3254
+ [[package]]
3255
+ name = "similar"
3256
+ version = "2.7.0"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3259
+
3260
+ [[package]]
3261
+ name = "siphasher"
3262
+ version = "1.0.1"
3263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3264
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3265
+
3266
+ [[package]]
3267
+ name = "sketches-ddsketch"
3268
+ version = "0.2.2"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
3271
+ dependencies = [
3272
+ "serde",
3273
+ ]
3274
+
3275
+ [[package]]
3276
+ name = "slab"
3277
+ version = "0.4.9"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3280
+ dependencies = [
3281
+ "autocfg",
3282
+ ]
3283
+
3284
+ [[package]]
3285
+ name = "slice-group-by"
3286
+ version = "0.3.1"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
3289
+
3290
+ [[package]]
3291
+ name = "smallvec"
3292
+ version = "1.14.0"
3293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3294
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3295
+
3296
+ [[package]]
3297
+ name = "socket2"
3298
+ version = "0.5.8"
3299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3300
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3301
+ dependencies = [
3302
+ "libc",
3303
+ "windows-sys 0.52.0",
3304
+ ]
3305
+
3306
+ [[package]]
3307
+ name = "stable_deref_trait"
3308
+ version = "1.2.0"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3311
+
3312
+ [[package]]
3313
+ name = "strsim"
3314
+ version = "0.11.1"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3317
+
3318
+ [[package]]
3319
+ name = "strum"
3320
+ version = "0.26.3"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3323
+ dependencies = [
3324
+ "strum_macros",
3325
+ ]
3326
+
3327
+ [[package]]
3328
+ name = "strum_macros"
3329
+ version = "0.26.4"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3332
+ dependencies = [
3333
+ "heck 0.5.0",
3334
+ "proc-macro2",
3335
+ "quote",
3336
+ "rustversion",
3337
+ "syn 2.0.100",
3338
+ ]
3339
+
3340
+ [[package]]
3341
+ name = "subtle"
3342
+ version = "2.6.1"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3345
+
3346
+ [[package]]
3347
+ name = "syn"
3348
+ version = "1.0.109"
3349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3350
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3351
+ dependencies = [
3352
+ "proc-macro2",
3353
+ "quote",
3354
+ "unicode-ident",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "syn"
3359
+ version = "2.0.100"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3362
+ dependencies = [
3363
+ "proc-macro2",
3364
+ "quote",
3365
+ "unicode-ident",
3366
+ ]
3367
+
3368
+ [[package]]
3369
+ name = "synstructure"
3370
+ version = "0.13.1"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3373
+ dependencies = [
3374
+ "proc-macro2",
3375
+ "quote",
3376
+ "syn 2.0.100",
3377
+ ]
3378
+
3379
+ [[package]]
3380
+ name = "tantivy"
3381
+ version = "0.22.0"
3382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3383
+ checksum = "f8d0582f186c0a6d55655d24543f15e43607299425c5ad8352c242b914b31856"
3384
+ dependencies = [
3385
+ "aho-corasick",
3386
+ "arc-swap",
3387
+ "base64",
3388
+ "bitpacking",
3389
+ "byteorder",
3390
+ "census",
3391
+ "crc32fast",
3392
+ "crossbeam-channel",
3393
+ "downcast-rs",
3394
+ "fastdivide",
3395
+ "fnv",
3396
+ "fs4",
3397
+ "htmlescape",
3398
+ "itertools 0.12.1",
3399
+ "levenshtein_automata",
3400
+ "log",
3401
+ "lru",
3402
+ "lz4_flex",
3403
+ "measure_time",
3404
+ "memmap2",
3405
+ "num_cpus",
3406
+ "once_cell",
3407
+ "oneshot",
3408
+ "rayon",
3409
+ "regex",
3410
+ "rust-stemmers",
3411
+ "rustc-hash",
3412
+ "serde",
3413
+ "serde_json",
3414
+ "sketches-ddsketch",
3415
+ "smallvec",
3416
+ "tantivy-bitpacker",
3417
+ "tantivy-columnar",
3418
+ "tantivy-common",
3419
+ "tantivy-fst",
3420
+ "tantivy-query-grammar",
3421
+ "tantivy-stacker",
3422
+ "tantivy-tokenizer-api",
3423
+ "tempfile",
3424
+ "thiserror 1.0.69",
3425
+ "time",
3426
+ "uuid",
3427
+ "winapi",
3428
+ ]
3429
+
3430
+ [[package]]
3431
+ name = "tantivy-bitpacker"
3432
+ version = "0.6.0"
3433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3434
+ checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df"
3435
+ dependencies = [
3436
+ "bitpacking",
3437
+ ]
3438
+
3439
+ [[package]]
3440
+ name = "tantivy-columnar"
3441
+ version = "0.3.0"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e"
3444
+ dependencies = [
3445
+ "downcast-rs",
3446
+ "fastdivide",
3447
+ "itertools 0.12.1",
3448
+ "serde",
3449
+ "tantivy-bitpacker",
3450
+ "tantivy-common",
3451
+ "tantivy-sstable",
3452
+ "tantivy-stacker",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "tantivy-common"
3457
+ version = "0.7.0"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4"
3460
+ dependencies = [
3461
+ "async-trait",
3462
+ "byteorder",
3463
+ "ownedbytes",
3464
+ "serde",
3465
+ "time",
3466
+ ]
3467
+
3468
+ [[package]]
3469
+ name = "tantivy-fst"
3470
+ version = "0.5.0"
3471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3472
+ checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
3473
+ dependencies = [
3474
+ "byteorder",
3475
+ "regex-syntax",
3476
+ "utf8-ranges",
3477
+ ]
3478
+
3479
+ [[package]]
3480
+ name = "tantivy-query-grammar"
3481
+ version = "0.22.0"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82"
3484
+ dependencies = [
3485
+ "nom",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "tantivy-sstable"
3490
+ version = "0.3.0"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e"
3493
+ dependencies = [
3494
+ "tantivy-bitpacker",
3495
+ "tantivy-common",
3496
+ "tantivy-fst",
3497
+ "zstd",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "tantivy-stacker"
3502
+ version = "0.3.0"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8"
3505
+ dependencies = [
3506
+ "murmurhash32",
3507
+ "rand_distr",
3508
+ "tantivy-common",
3509
+ ]
3510
+
3511
+ [[package]]
3512
+ name = "tantivy-tokenizer-api"
3513
+ version = "0.3.0"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04"
3516
+ dependencies = [
3517
+ "serde",
3518
+ ]
3519
+
3520
+ [[package]]
3521
+ name = "tar"
3522
+ version = "0.4.44"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
3525
+ dependencies = [
3526
+ "filetime",
3527
+ "libc",
3528
+ "xattr",
3529
+ ]
3530
+
3531
+ [[package]]
3532
+ name = "target-lexicon"
3533
+ version = "0.13.2"
3534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3535
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3536
+
3537
+ [[package]]
3538
+ name = "tempfile"
3539
+ version = "3.19.1"
3540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3541
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3542
+ dependencies = [
3543
+ "fastrand",
3544
+ "getrandom 0.3.2",
3545
+ "once_cell",
3546
+ "rustix 1.0.3",
3547
+ "windows-sys 0.52.0",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "thiserror"
3552
+ version = "1.0.69"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3555
+ dependencies = [
3556
+ "thiserror-impl 1.0.69",
3557
+ ]
3558
+
3559
+ [[package]]
3560
+ name = "thiserror"
3561
+ version = "2.0.12"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3564
+ dependencies = [
3565
+ "thiserror-impl 2.0.12",
3566
+ ]
3567
+
3568
+ [[package]]
3569
+ name = "thiserror-impl"
3570
+ version = "1.0.69"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3573
+ dependencies = [
3574
+ "proc-macro2",
3575
+ "quote",
3576
+ "syn 2.0.100",
3577
+ ]
3578
+
3579
+ [[package]]
3580
+ name = "thiserror-impl"
3581
+ version = "2.0.12"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3584
+ dependencies = [
3585
+ "proc-macro2",
3586
+ "quote",
3587
+ "syn 2.0.100",
3588
+ ]
3589
+
3590
+ [[package]]
3591
+ name = "time"
3592
+ version = "0.3.40"
3593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3594
+ checksum = "9d9c75b47bdff86fa3334a3db91356b8d7d86a9b839dab7d0bdc5c3d3a077618"
3595
+ dependencies = [
3596
+ "deranged",
3597
+ "itoa",
3598
+ "num-conv",
3599
+ "powerfmt",
3600
+ "serde",
3601
+ "time-core",
3602
+ "time-macros",
3603
+ ]
3604
+
3605
+ [[package]]
3606
+ name = "time-core"
3607
+ version = "0.1.4"
3608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3609
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3610
+
3611
+ [[package]]
3612
+ name = "time-macros"
3613
+ version = "0.2.21"
3614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3615
+ checksum = "29aa485584182073ed57fd5004aa09c371f021325014694e432313345865fd04"
3616
+ dependencies = [
3617
+ "num-conv",
3618
+ "time-core",
3619
+ ]
3620
+
3621
+ [[package]]
3622
+ name = "tinystr"
3623
+ version = "0.7.6"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3626
+ dependencies = [
3627
+ "displaydoc",
3628
+ "zerovec",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "tinytemplate"
3633
+ version = "1.2.1"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3636
+ dependencies = [
3637
+ "serde",
3638
+ "serde_json",
3639
+ ]
3640
+
3641
+ [[package]]
3642
+ name = "tinyvec"
3643
+ version = "1.9.0"
3644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3645
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3646
+ dependencies = [
3647
+ "tinyvec_macros",
3648
+ ]
3649
+
3650
+ [[package]]
3651
+ name = "tinyvec_macros"
3652
+ version = "0.1.1"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3655
+
3656
+ [[package]]
3657
+ name = "tokio"
3658
+ version = "1.44.1"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
3661
+ dependencies = [
3662
+ "backtrace",
3663
+ "bytes",
3664
+ "libc",
3665
+ "mio",
3666
+ "parking_lot",
3667
+ "pin-project-lite",
3668
+ "signal-hook-registry",
3669
+ "socket2",
3670
+ "windows-sys 0.52.0",
3671
+ ]
3672
+
3673
+ [[package]]
3674
+ name = "tokio-util"
3675
+ version = "0.7.14"
3676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3677
+ checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
3678
+ dependencies = [
3679
+ "bytes",
3680
+ "futures-core",
3681
+ "futures-sink",
3682
+ "pin-project-lite",
3683
+ "tokio",
3684
+ ]
3685
+
3686
+ [[package]]
3687
+ name = "tracing"
3688
+ version = "0.1.41"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3691
+ dependencies = [
3692
+ "log",
3693
+ "pin-project-lite",
3694
+ "tracing-attributes",
3695
+ "tracing-core",
3696
+ ]
3697
+
3698
+ [[package]]
3699
+ name = "tracing-attributes"
3700
+ version = "0.1.28"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3703
+ dependencies = [
3704
+ "proc-macro2",
3705
+ "quote",
3706
+ "syn 2.0.100",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "tracing-core"
3711
+ version = "0.1.33"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3714
+ dependencies = [
3715
+ "once_cell",
3716
+ ]
3717
+
3718
+ [[package]]
3719
+ name = "typenum"
3720
+ version = "1.18.0"
3721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3722
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3723
+
3724
+ [[package]]
3725
+ name = "unicase"
3726
+ version = "2.8.1"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3729
+
3730
+ [[package]]
3731
+ name = "unicode-blocks"
3732
+ version = "0.1.9"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
3735
+
3736
+ [[package]]
3737
+ name = "unicode-ident"
3738
+ version = "1.0.18"
3739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3740
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3741
+
3742
+ [[package]]
3743
+ name = "unicode-normalization"
3744
+ version = "0.1.24"
3745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3746
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3747
+ dependencies = [
3748
+ "tinyvec",
3749
+ ]
3750
+
3751
+ [[package]]
3752
+ name = "unicode-segmentation"
3753
+ version = "1.12.0"
3754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3755
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3756
+
3757
+ [[package]]
3758
+ name = "unicode-width"
3759
+ version = "0.1.14"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3762
+
3763
+ [[package]]
3764
+ name = "unicode-width"
3765
+ version = "0.2.0"
3766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3767
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3768
+
3769
+ [[package]]
3770
+ name = "unicode-xid"
3771
+ version = "0.2.6"
3772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3773
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3774
+
3775
+ [[package]]
3776
+ name = "unindent"
3777
+ version = "0.2.4"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3780
+
3781
+ [[package]]
3782
+ name = "untrusted"
3783
+ version = "0.9.0"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3786
+
3787
+ [[package]]
3788
+ name = "ureq"
3789
+ version = "2.12.1"
3790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3791
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
3792
+ dependencies = [
3793
+ "base64",
3794
+ "log",
3795
+ "once_cell",
3796
+ "rustls",
3797
+ "rustls-pki-types",
3798
+ "url",
3799
+ "webpki-roots",
3800
+ ]
3801
+
3802
+ [[package]]
3803
+ name = "url"
3804
+ version = "2.5.4"
3805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3806
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3807
+ dependencies = [
3808
+ "form_urlencoded",
3809
+ "idna",
3810
+ "percent-encoding",
3811
+ ]
3812
+
3813
+ [[package]]
3814
+ name = "utf16_iter"
3815
+ version = "1.0.5"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3818
+
3819
+ [[package]]
3820
+ name = "utf8-ranges"
3821
+ version = "1.0.5"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
3824
+
3825
+ [[package]]
3826
+ name = "utf8_iter"
3827
+ version = "1.0.4"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3830
+
3831
+ [[package]]
3832
+ name = "utf8parse"
3833
+ version = "0.2.2"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3836
+
3837
+ [[package]]
3838
+ name = "uuid"
3839
+ version = "1.16.0"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3842
+ dependencies = [
3843
+ "getrandom 0.3.2",
3844
+ "js-sys",
3845
+ "rand 0.9.0",
3846
+ "serde",
3847
+ "uuid-macro-internal",
3848
+ "wasm-bindgen",
3849
+ ]
3850
+
3851
+ [[package]]
3852
+ name = "uuid-macro-internal"
3853
+ version = "1.16.0"
3854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3855
+ checksum = "72dcd78c4f979627a754f5522cea6e6a25e55139056535fe6e69c506cd64a862"
3856
+ dependencies = [
3857
+ "proc-macro2",
3858
+ "quote",
3859
+ "syn 2.0.100",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "validation"
3864
+ version = "0.0.1"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "3fb8044f0b8a3e94bc8cd089c6a2e42e435553093800b76762418d4bbc3289cc"
3867
+
3868
+ [[package]]
3869
+ name = "version_check"
3870
+ version = "0.9.5"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3873
+
3874
+ [[package]]
3875
+ name = "walkdir"
3876
+ version = "2.5.0"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3879
+ dependencies = [
3880
+ "same-file",
3881
+ "winapi-util",
3882
+ ]
3883
+
3884
+ [[package]]
3885
+ name = "wasi"
3886
+ version = "0.11.0+wasi-snapshot-preview1"
3887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3888
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3889
+
3890
+ [[package]]
3891
+ name = "wasi"
3892
+ version = "0.14.2+wasi-0.2.4"
3893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3894
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3895
+ dependencies = [
3896
+ "wit-bindgen-rt",
3897
+ ]
3898
+
3899
+ [[package]]
3900
+ name = "wasm-bindgen"
3901
+ version = "0.2.100"
3902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3903
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3904
+ dependencies = [
3905
+ "cfg-if",
3906
+ "once_cell",
3907
+ "rustversion",
3908
+ "wasm-bindgen-macro",
3909
+ ]
3910
+
3911
+ [[package]]
3912
+ name = "wasm-bindgen-backend"
3913
+ version = "0.2.100"
3914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3915
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3916
+ dependencies = [
3917
+ "bumpalo",
3918
+ "log",
3919
+ "proc-macro2",
3920
+ "quote",
3921
+ "syn 2.0.100",
3922
+ "wasm-bindgen-shared",
3923
+ ]
3924
+
3925
+ [[package]]
3926
+ name = "wasm-bindgen-macro"
3927
+ version = "0.2.100"
3928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3929
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3930
+ dependencies = [
3931
+ "quote",
3932
+ "wasm-bindgen-macro-support",
3933
+ ]
3934
+
3935
+ [[package]]
3936
+ name = "wasm-bindgen-macro-support"
3937
+ version = "0.2.100"
3938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3939
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3940
+ dependencies = [
3941
+ "proc-macro2",
3942
+ "quote",
3943
+ "syn 2.0.100",
3944
+ "wasm-bindgen-backend",
3945
+ "wasm-bindgen-shared",
3946
+ ]
3947
+
3948
+ [[package]]
3949
+ name = "wasm-bindgen-shared"
3950
+ version = "0.2.100"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3953
+ dependencies = [
3954
+ "unicode-ident",
3955
+ ]
3956
+
3957
+ [[package]]
3958
+ name = "web-sys"
3959
+ version = "0.3.77"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3962
+ dependencies = [
3963
+ "js-sys",
3964
+ "wasm-bindgen",
3965
+ ]
3966
+
3967
+ [[package]]
3968
+ name = "web-time"
3969
+ version = "1.1.0"
3970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3971
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3972
+ dependencies = [
3973
+ "js-sys",
3974
+ "wasm-bindgen",
3975
+ ]
3976
+
3977
+ [[package]]
3978
+ name = "webpki-roots"
3979
+ version = "0.26.8"
3980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3981
+ checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
3982
+ dependencies = [
3983
+ "rustls-pki-types",
3984
+ ]
3985
+
3986
+ [[package]]
3987
+ name = "whatlang"
3988
+ version = "0.16.4"
3989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3990
+ checksum = "471d1c1645d361eb782a1650b1786a8fb58dd625e681a04c09f5ff7c8764a7b0"
3991
+ dependencies = [
3992
+ "hashbrown 0.14.5",
3993
+ "once_cell",
3994
+ ]
3995
+
3996
+ [[package]]
3997
+ name = "winapi"
3998
+ version = "0.3.9"
3999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4000
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4001
+ dependencies = [
4002
+ "winapi-i686-pc-windows-gnu",
4003
+ "winapi-x86_64-pc-windows-gnu",
4004
+ ]
4005
+
4006
+ [[package]]
4007
+ name = "winapi-i686-pc-windows-gnu"
4008
+ version = "0.4.0"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4011
+
4012
+ [[package]]
4013
+ name = "winapi-util"
4014
+ version = "0.1.9"
4015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4016
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4017
+ dependencies = [
4018
+ "windows-sys 0.52.0",
4019
+ ]
4020
+
4021
+ [[package]]
4022
+ name = "winapi-x86_64-pc-windows-gnu"
4023
+ version = "0.4.0"
4024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4025
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4026
+
4027
+ [[package]]
4028
+ name = "windows-sys"
4029
+ version = "0.52.0"
4030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4031
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4032
+ dependencies = [
4033
+ "windows-targets",
4034
+ ]
4035
+
4036
+ [[package]]
4037
+ name = "windows-sys"
4038
+ version = "0.59.0"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4041
+ dependencies = [
4042
+ "windows-targets",
4043
+ ]
4044
+
4045
+ [[package]]
4046
+ name = "windows-targets"
4047
+ version = "0.52.6"
4048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4049
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4050
+ dependencies = [
4051
+ "windows_aarch64_gnullvm",
4052
+ "windows_aarch64_msvc",
4053
+ "windows_i686_gnu",
4054
+ "windows_i686_gnullvm",
4055
+ "windows_i686_msvc",
4056
+ "windows_x86_64_gnu",
4057
+ "windows_x86_64_gnullvm",
4058
+ "windows_x86_64_msvc",
4059
+ ]
4060
+
4061
+ [[package]]
4062
+ name = "windows_aarch64_gnullvm"
4063
+ version = "0.52.6"
4064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4065
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4066
+
4067
+ [[package]]
4068
+ name = "windows_aarch64_msvc"
4069
+ version = "0.52.6"
4070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4071
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4072
+
4073
+ [[package]]
4074
+ name = "windows_i686_gnu"
4075
+ version = "0.52.6"
4076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4077
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4078
+
4079
+ [[package]]
4080
+ name = "windows_i686_gnullvm"
4081
+ version = "0.52.6"
4082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4083
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4084
+
4085
+ [[package]]
4086
+ name = "windows_i686_msvc"
4087
+ version = "0.52.6"
4088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4089
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4090
+
4091
+ [[package]]
4092
+ name = "windows_x86_64_gnu"
4093
+ version = "0.52.6"
4094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4095
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4096
+
4097
+ [[package]]
4098
+ name = "windows_x86_64_gnullvm"
4099
+ version = "0.52.6"
4100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4101
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4102
+
4103
+ [[package]]
4104
+ name = "windows_x86_64_msvc"
4105
+ version = "0.52.6"
4106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4107
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4108
+
4109
+ [[package]]
4110
+ name = "wit-bindgen-rt"
4111
+ version = "0.39.0"
4112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4113
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4114
+ dependencies = [
4115
+ "bitflags 2.9.0",
4116
+ ]
4117
+
4118
+ [[package]]
4119
+ name = "write16"
4120
+ version = "1.0.0"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4123
+
4124
+ [[package]]
4125
+ name = "writeable"
4126
+ version = "0.5.5"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4129
+
4130
+ [[package]]
4131
+ name = "xattr"
4132
+ version = "1.5.0"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
4135
+ dependencies = [
4136
+ "libc",
4137
+ "rustix 1.0.3",
4138
+ ]
4139
+
4140
+ [[package]]
4141
+ name = "yada"
4142
+ version = "0.5.1"
4143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4144
+ checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
4145
+
4146
+ [[package]]
4147
+ name = "yoke"
4148
+ version = "0.7.5"
4149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4150
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4151
+ dependencies = [
4152
+ "serde",
4153
+ "stable_deref_trait",
4154
+ "yoke-derive",
4155
+ "zerofrom",
4156
+ ]
4157
+
4158
+ [[package]]
4159
+ name = "yoke-derive"
4160
+ version = "0.7.5"
4161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4162
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4163
+ dependencies = [
4164
+ "proc-macro2",
4165
+ "quote",
4166
+ "syn 2.0.100",
4167
+ "synstructure",
4168
+ ]
4169
+
4170
+ [[package]]
4171
+ name = "zerocopy"
4172
+ version = "0.7.35"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4175
+ dependencies = [
4176
+ "zerocopy-derive 0.7.35",
4177
+ ]
4178
+
4179
+ [[package]]
4180
+ name = "zerocopy"
4181
+ version = "0.8.24"
4182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4183
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
4184
+ dependencies = [
4185
+ "zerocopy-derive 0.8.24",
4186
+ ]
4187
+
4188
+ [[package]]
4189
+ name = "zerocopy-derive"
4190
+ version = "0.7.35"
4191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4192
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4193
+ dependencies = [
4194
+ "proc-macro2",
4195
+ "quote",
4196
+ "syn 2.0.100",
4197
+ ]
4198
+
4199
+ [[package]]
4200
+ name = "zerocopy-derive"
4201
+ version = "0.8.24"
4202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4203
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
4204
+ dependencies = [
4205
+ "proc-macro2",
4206
+ "quote",
4207
+ "syn 2.0.100",
4208
+ ]
4209
+
4210
+ [[package]]
4211
+ name = "zerofrom"
4212
+ version = "0.1.6"
4213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4214
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4215
+ dependencies = [
4216
+ "zerofrom-derive",
4217
+ ]
4218
+
4219
+ [[package]]
4220
+ name = "zerofrom-derive"
4221
+ version = "0.1.6"
4222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4223
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4224
+ dependencies = [
4225
+ "proc-macro2",
4226
+ "quote",
4227
+ "syn 2.0.100",
4228
+ "synstructure",
4229
+ ]
4230
+
4231
+ [[package]]
4232
+ name = "zeroize"
4233
+ version = "1.8.1"
4234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4235
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4236
+
4237
+ [[package]]
4238
+ name = "zerovec"
4239
+ version = "0.10.4"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4242
+ dependencies = [
4243
+ "yoke",
4244
+ "zerofrom",
4245
+ "zerovec-derive",
4246
+ ]
4247
+
4248
+ [[package]]
4249
+ name = "zerovec-derive"
4250
+ version = "0.10.3"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4253
+ dependencies = [
4254
+ "proc-macro2",
4255
+ "quote",
4256
+ "syn 2.0.100",
4257
+ ]
4258
+
4259
+ [[package]]
4260
+ name = "zstd"
4261
+ version = "0.13.3"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4264
+ dependencies = [
4265
+ "zstd-safe",
4266
+ ]
4267
+
4268
+ [[package]]
4269
+ name = "zstd-safe"
4270
+ version = "7.2.4"
4271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4272
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4273
+ dependencies = [
4274
+ "zstd-sys",
4275
+ ]
4276
+
4277
+ [[package]]
4278
+ name = "zstd-sys"
4279
+ version = "2.0.15+zstd.1.5.7"
4280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4281
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4282
+ dependencies = [
4283
+ "cc",
4284
+ "pkg-config",
4285
+ ]