tokie 0.0.4__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.
Files changed (48) hide show
  1. tokie-0.0.4/Cargo.lock +2185 -0
  2. tokie-0.0.4/Cargo.toml +3 -0
  3. tokie-0.0.4/PKG-INFO +104 -0
  4. tokie-0.0.4/README_PYPI.md +86 -0
  5. tokie-0.0.4/crates/tokie/Cargo.toml +89 -0
  6. tokie-0.0.4/crates/tokie/benches/README.md +206 -0
  7. tokie-0.0.4/crates/tokie/benches/loading.rs +141 -0
  8. tokie-0.0.4/crates/tokie/benches/tokenize.rs +163 -0
  9. tokie-0.0.4/crates/tokie/examples/basic_usage.rs +37 -0
  10. tokie-0.0.4/crates/tokie/examples/batch_processing.rs +54 -0
  11. tokie-0.0.4/crates/tokie/examples/convert_and_verify.rs +141 -0
  12. tokie-0.0.4/crates/tokie/examples/cross_encoder.rs +37 -0
  13. tokie-0.0.4/crates/tokie/examples/from_pretrained.rs +27 -0
  14. tokie-0.0.4/crates/tokie/examples/padding_truncation.rs +55 -0
  15. tokie-0.0.4/crates/tokie/examples/regenerate_all_v11.rs +128 -0
  16. tokie-0.0.4/crates/tokie/examples/test_enwik8.rs +232 -0
  17. tokie-0.0.4/crates/tokie/examples/test_gpt2.rs +36 -0
  18. tokie-0.0.4/crates/tokie/examples/test_llama4.rs +78 -0
  19. tokie-0.0.4/crates/tokie/examples/test_postprocessor.rs +95 -0
  20. tokie-0.0.4/crates/tokie/examples/tiktoken_compat.rs +76 -0
  21. tokie-0.0.4/crates/tokie/examples/verify_embedding_models.rs +133 -0
  22. tokie-0.0.4/crates/tokie/src/decoder.rs +286 -0
  23. tokie-0.0.4/crates/tokie/src/diff.rs +630 -0
  24. tokie-0.0.4/crates/tokie/src/encoder/backtracking.rs +717 -0
  25. tokie-0.0.4/crates/tokie/src/encoder/mod.rs +225 -0
  26. tokie-0.0.4/crates/tokie/src/encoder/sentencepiece.rs +955 -0
  27. tokie-0.0.4/crates/tokie/src/encoder/sentencepiecev2.rs +398 -0
  28. tokie-0.0.4/crates/tokie/src/encoder/simple.rs +376 -0
  29. tokie-0.0.4/crates/tokie/src/encoder/unigram.rs +630 -0
  30. tokie-0.0.4/crates/tokie/src/encoder/wordpiece.rs +324 -0
  31. tokie-0.0.4/crates/tokie/src/hf.rs +1107 -0
  32. tokie-0.0.4/crates/tokie/src/hub.rs +214 -0
  33. tokie-0.0.4/crates/tokie/src/lib.rs +81 -0
  34. tokie-0.0.4/crates/tokie/src/normalizer.rs +970 -0
  35. tokie-0.0.4/crates/tokie/src/padding.rs +412 -0
  36. tokie-0.0.4/crates/tokie/src/postprocessor.rs +296 -0
  37. tokie-0.0.4/crates/tokie/src/pretok/lexer.rs +1311 -0
  38. tokie-0.0.4/crates/tokie/src/pretok/mod.rs +54 -0
  39. tokie-0.0.4/crates/tokie/src/pretok/regex.rs +173 -0
  40. tokie-0.0.4/crates/tokie/src/serde.rs +1162 -0
  41. tokie-0.0.4/crates/tokie/src/tokenizer.rs +836 -0
  42. tokie-0.0.4/crates/tokie/src/types.rs +24 -0
  43. tokie-0.0.4/crates/tokie-python/Cargo.toml +15 -0
  44. tokie-0.0.4/crates/tokie-python/README_PYPI.md +86 -0
  45. tokie-0.0.4/crates/tokie-python/src/lib.rs +293 -0
  46. tokie-0.0.4/crates/tokie-python/tests/test_tokenizer.py +231 -0
  47. tokie-0.0.4/crates/tokie-python/tokie.pyi +109 -0
  48. tokie-0.0.4/pyproject.toml +28 -0
tokie-0.0.4/Cargo.lock ADDED
@@ -0,0 +1,2185 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom 0.3.4",
19
+ "once_cell",
20
+ "serde",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "anes"
36
+ version = "0.1.6"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
39
+
40
+ [[package]]
41
+ name = "anstyle"
42
+ version = "1.0.14"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
45
+
46
+ [[package]]
47
+ name = "autocfg"
48
+ version = "1.5.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
51
+
52
+ [[package]]
53
+ name = "base64"
54
+ version = "0.13.1"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
57
+
58
+ [[package]]
59
+ name = "base64"
60
+ version = "0.22.1"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
63
+
64
+ [[package]]
65
+ name = "bitflags"
66
+ version = "2.11.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
69
+
70
+ [[package]]
71
+ name = "bumpalo"
72
+ version = "3.20.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
75
+
76
+ [[package]]
77
+ name = "byteorder"
78
+ version = "1.5.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
81
+
82
+ [[package]]
83
+ name = "bytes"
84
+ version = "1.11.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
87
+
88
+ [[package]]
89
+ name = "cast"
90
+ version = "0.3.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
93
+
94
+ [[package]]
95
+ name = "castaway"
96
+ version = "0.2.4"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
99
+ dependencies = [
100
+ "rustversion",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "cc"
105
+ version = "1.2.57"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
108
+ dependencies = [
109
+ "find-msvc-tools",
110
+ "shlex",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "cfg-if"
115
+ version = "1.0.4"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
118
+
119
+ [[package]]
120
+ name = "chunk"
121
+ version = "0.9.2"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "bc04d623ff6273fccafb4dae2e022d973b81a7fac748ad54beddfbffa6092ff1"
124
+ dependencies = [
125
+ "daggrs",
126
+ "memchr",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "ciborium"
131
+ version = "0.2.2"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
134
+ dependencies = [
135
+ "ciborium-io",
136
+ "ciborium-ll",
137
+ "serde",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "ciborium-io"
142
+ version = "0.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
145
+
146
+ [[package]]
147
+ name = "ciborium-ll"
148
+ version = "0.2.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
151
+ dependencies = [
152
+ "ciborium-io",
153
+ "half",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "clap"
158
+ version = "4.6.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
161
+ dependencies = [
162
+ "clap_builder",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "clap_builder"
167
+ version = "4.6.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
170
+ dependencies = [
171
+ "anstyle",
172
+ "clap_lex",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "clap_lex"
177
+ version = "1.1.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
180
+
181
+ [[package]]
182
+ name = "compact_str"
183
+ version = "0.9.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
186
+ dependencies = [
187
+ "castaway",
188
+ "cfg-if",
189
+ "itoa",
190
+ "rustversion",
191
+ "ryu",
192
+ "serde",
193
+ "static_assertions",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "console"
198
+ version = "0.15.11"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
201
+ dependencies = [
202
+ "encode_unicode",
203
+ "libc",
204
+ "once_cell",
205
+ "unicode-width",
206
+ "windows-sys 0.59.0",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "console"
211
+ version = "0.16.3"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
214
+ dependencies = [
215
+ "encode_unicode",
216
+ "libc",
217
+ "unicode-width",
218
+ "windows-sys 0.61.2",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "crc32fast"
223
+ version = "1.5.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
226
+ dependencies = [
227
+ "cfg-if",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "criterion"
232
+ version = "0.5.1"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
235
+ dependencies = [
236
+ "anes",
237
+ "cast",
238
+ "ciborium",
239
+ "clap",
240
+ "criterion-plot",
241
+ "is-terminal",
242
+ "itertools 0.10.5",
243
+ "num-traits",
244
+ "once_cell",
245
+ "oorandom",
246
+ "plotters",
247
+ "rayon",
248
+ "regex",
249
+ "serde",
250
+ "serde_derive",
251
+ "serde_json",
252
+ "tinytemplate",
253
+ "walkdir",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "criterion-plot"
258
+ version = "0.5.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
261
+ dependencies = [
262
+ "cast",
263
+ "itertools 0.10.5",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "crossbeam-deque"
268
+ version = "0.8.6"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
271
+ dependencies = [
272
+ "crossbeam-epoch",
273
+ "crossbeam-utils",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "crossbeam-epoch"
278
+ version = "0.9.18"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
281
+ dependencies = [
282
+ "crossbeam-utils",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "crossbeam-utils"
287
+ version = "0.8.21"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
290
+
291
+ [[package]]
292
+ name = "crunchy"
293
+ version = "0.2.4"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
296
+
297
+ [[package]]
298
+ name = "daggrs"
299
+ version = "0.1.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "0d1092288af9ecfd5378565a17df11a13dbe172d4a71abe9b55a9689f1336b8e"
302
+
303
+ [[package]]
304
+ name = "darling"
305
+ version = "0.20.11"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
308
+ dependencies = [
309
+ "darling_core",
310
+ "darling_macro",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "darling_core"
315
+ version = "0.20.11"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
318
+ dependencies = [
319
+ "fnv",
320
+ "ident_case",
321
+ "proc-macro2",
322
+ "quote",
323
+ "strsim",
324
+ "syn",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "darling_macro"
329
+ version = "0.20.11"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
332
+ dependencies = [
333
+ "darling_core",
334
+ "quote",
335
+ "syn",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "dary_heap"
340
+ version = "0.3.8"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04"
343
+ dependencies = [
344
+ "serde",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "derive_builder"
349
+ version = "0.20.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
352
+ dependencies = [
353
+ "derive_builder_macro",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "derive_builder_core"
358
+ version = "0.20.2"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
361
+ dependencies = [
362
+ "darling",
363
+ "proc-macro2",
364
+ "quote",
365
+ "syn",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "derive_builder_macro"
370
+ version = "0.20.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
373
+ dependencies = [
374
+ "derive_builder_core",
375
+ "syn",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "dirs"
380
+ version = "6.0.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
383
+ dependencies = [
384
+ "dirs-sys",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "dirs-sys"
389
+ version = "0.5.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
392
+ dependencies = [
393
+ "libc",
394
+ "option-ext",
395
+ "redox_users",
396
+ "windows-sys 0.61.2",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "displaydoc"
401
+ version = "0.2.5"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
404
+ dependencies = [
405
+ "proc-macro2",
406
+ "quote",
407
+ "syn",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "either"
412
+ version = "1.15.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
415
+
416
+ [[package]]
417
+ name = "encode_unicode"
418
+ version = "1.0.0"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
421
+
422
+ [[package]]
423
+ name = "esaxx-rs"
424
+ version = "0.1.10"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
427
+ dependencies = [
428
+ "cc",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "find-msvc-tools"
433
+ version = "0.1.9"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
436
+
437
+ [[package]]
438
+ name = "flate2"
439
+ version = "1.1.9"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
442
+ dependencies = [
443
+ "crc32fast",
444
+ "miniz_oxide",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "fnv"
449
+ version = "1.0.7"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
452
+
453
+ [[package]]
454
+ name = "foldhash"
455
+ version = "0.1.5"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
458
+
459
+ [[package]]
460
+ name = "form_urlencoded"
461
+ version = "1.2.2"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
464
+ dependencies = [
465
+ "percent-encoding",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "getrandom"
470
+ version = "0.2.17"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
473
+ dependencies = [
474
+ "cfg-if",
475
+ "libc",
476
+ "wasi",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "getrandom"
481
+ version = "0.3.4"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
484
+ dependencies = [
485
+ "cfg-if",
486
+ "libc",
487
+ "r-efi",
488
+ "wasip2",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "half"
493
+ version = "2.7.1"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
496
+ dependencies = [
497
+ "cfg-if",
498
+ "crunchy",
499
+ "zerocopy",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "heck"
504
+ version = "0.5.0"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
507
+
508
+ [[package]]
509
+ name = "hermit-abi"
510
+ version = "0.5.2"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
513
+
514
+ [[package]]
515
+ name = "hf-hub"
516
+ version = "0.4.3"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
519
+ dependencies = [
520
+ "dirs",
521
+ "http",
522
+ "indicatif 0.17.11",
523
+ "libc",
524
+ "log",
525
+ "rand",
526
+ "serde",
527
+ "serde_json",
528
+ "thiserror",
529
+ "ureq",
530
+ "windows-sys 0.60.2",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "http"
535
+ version = "1.4.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
538
+ dependencies = [
539
+ "bytes",
540
+ "itoa",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "icu_collections"
545
+ version = "1.5.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
548
+ dependencies = [
549
+ "displaydoc",
550
+ "yoke 0.7.5",
551
+ "zerofrom",
552
+ "zerovec 0.10.4",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "icu_collections"
557
+ version = "2.1.1"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
560
+ dependencies = [
561
+ "displaydoc",
562
+ "potential_utf",
563
+ "yoke 0.8.1",
564
+ "zerofrom",
565
+ "zerovec 0.11.5",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "icu_locale_core"
570
+ version = "2.1.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
573
+ dependencies = [
574
+ "displaydoc",
575
+ "litemap 0.8.1",
576
+ "tinystr 0.8.2",
577
+ "writeable 0.6.2",
578
+ "zerovec 0.11.5",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "icu_locid"
583
+ version = "1.5.0"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
586
+ dependencies = [
587
+ "displaydoc",
588
+ "litemap 0.7.5",
589
+ "tinystr 0.7.6",
590
+ "writeable 0.5.5",
591
+ "zerovec 0.10.4",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "icu_locid_transform"
596
+ version = "1.5.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
599
+ dependencies = [
600
+ "displaydoc",
601
+ "icu_locid",
602
+ "icu_locid_transform_data",
603
+ "icu_provider 1.5.0",
604
+ "tinystr 0.7.6",
605
+ "zerovec 0.10.4",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "icu_locid_transform_data"
610
+ version = "1.5.1"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
613
+
614
+ [[package]]
615
+ name = "icu_normalizer"
616
+ version = "1.5.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
619
+ dependencies = [
620
+ "displaydoc",
621
+ "icu_collections 1.5.0",
622
+ "icu_normalizer_data 1.5.1",
623
+ "icu_properties 1.5.1",
624
+ "icu_provider 1.5.0",
625
+ "smallvec",
626
+ "utf16_iter",
627
+ "utf8_iter",
628
+ "write16",
629
+ "zerovec 0.10.4",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "icu_normalizer"
634
+ version = "2.1.1"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
637
+ dependencies = [
638
+ "icu_collections 2.1.1",
639
+ "icu_normalizer_data 2.1.1",
640
+ "icu_properties 2.1.2",
641
+ "icu_provider 2.1.1",
642
+ "smallvec",
643
+ "zerovec 0.11.5",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "icu_normalizer_data"
648
+ version = "1.5.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
651
+
652
+ [[package]]
653
+ name = "icu_normalizer_data"
654
+ version = "2.1.1"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
657
+
658
+ [[package]]
659
+ name = "icu_properties"
660
+ version = "1.5.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
663
+ dependencies = [
664
+ "displaydoc",
665
+ "icu_collections 1.5.0",
666
+ "icu_locid_transform",
667
+ "icu_properties_data 1.5.1",
668
+ "icu_provider 1.5.0",
669
+ "tinystr 0.7.6",
670
+ "zerovec 0.10.4",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "icu_properties"
675
+ version = "2.1.2"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
678
+ dependencies = [
679
+ "icu_collections 2.1.1",
680
+ "icu_locale_core",
681
+ "icu_properties_data 2.1.2",
682
+ "icu_provider 2.1.1",
683
+ "zerotrie",
684
+ "zerovec 0.11.5",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "icu_properties_data"
689
+ version = "1.5.1"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
692
+
693
+ [[package]]
694
+ name = "icu_properties_data"
695
+ version = "2.1.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
698
+
699
+ [[package]]
700
+ name = "icu_provider"
701
+ version = "1.5.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
704
+ dependencies = [
705
+ "displaydoc",
706
+ "icu_locid",
707
+ "icu_provider_macros",
708
+ "stable_deref_trait",
709
+ "tinystr 0.7.6",
710
+ "writeable 0.5.5",
711
+ "yoke 0.7.5",
712
+ "zerofrom",
713
+ "zerovec 0.10.4",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "icu_provider"
718
+ version = "2.1.1"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
721
+ dependencies = [
722
+ "displaydoc",
723
+ "icu_locale_core",
724
+ "writeable 0.6.2",
725
+ "yoke 0.8.1",
726
+ "zerofrom",
727
+ "zerotrie",
728
+ "zerovec 0.11.5",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "icu_provider_macros"
733
+ version = "1.5.0"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
736
+ dependencies = [
737
+ "proc-macro2",
738
+ "quote",
739
+ "syn",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "ident_case"
744
+ version = "1.0.1"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
747
+
748
+ [[package]]
749
+ name = "idna"
750
+ version = "1.1.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
753
+ dependencies = [
754
+ "idna_adapter",
755
+ "smallvec",
756
+ "utf8_iter",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "idna_adapter"
761
+ version = "1.2.1"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
764
+ dependencies = [
765
+ "icu_normalizer 2.1.1",
766
+ "icu_properties 2.1.2",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "indicatif"
771
+ version = "0.17.11"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
774
+ dependencies = [
775
+ "console 0.15.11",
776
+ "number_prefix",
777
+ "portable-atomic",
778
+ "unicode-width",
779
+ "web-time",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "indicatif"
784
+ version = "0.18.4"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
787
+ dependencies = [
788
+ "console 0.16.3",
789
+ "portable-atomic",
790
+ "unicode-width",
791
+ "unit-prefix",
792
+ "web-time",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "indoc"
797
+ version = "2.0.7"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
800
+ dependencies = [
801
+ "rustversion",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "is-terminal"
806
+ version = "0.4.17"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
809
+ dependencies = [
810
+ "hermit-abi",
811
+ "libc",
812
+ "windows-sys 0.61.2",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "itertools"
817
+ version = "0.10.5"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
820
+ dependencies = [
821
+ "either",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "itertools"
826
+ version = "0.14.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
829
+ dependencies = [
830
+ "either",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "itoa"
835
+ version = "1.0.18"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
838
+
839
+ [[package]]
840
+ name = "js-sys"
841
+ version = "0.3.91"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
844
+ dependencies = [
845
+ "once_cell",
846
+ "wasm-bindgen",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "libc"
851
+ version = "0.2.183"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
854
+
855
+ [[package]]
856
+ name = "libredox"
857
+ version = "0.1.14"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
860
+ dependencies = [
861
+ "libc",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "litemap"
866
+ version = "0.7.5"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
869
+
870
+ [[package]]
871
+ name = "litemap"
872
+ version = "0.8.1"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
875
+
876
+ [[package]]
877
+ name = "log"
878
+ version = "0.4.29"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
881
+
882
+ [[package]]
883
+ name = "macro_rules_attribute"
884
+ version = "0.2.2"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
887
+ dependencies = [
888
+ "macro_rules_attribute-proc_macro",
889
+ "paste",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "macro_rules_attribute-proc_macro"
894
+ version = "0.2.2"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
897
+
898
+ [[package]]
899
+ name = "memchr"
900
+ version = "2.8.0"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
903
+
904
+ [[package]]
905
+ name = "memoffset"
906
+ version = "0.9.1"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
909
+ dependencies = [
910
+ "autocfg",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "minimal-lexical"
915
+ version = "0.2.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
918
+
919
+ [[package]]
920
+ name = "miniz_oxide"
921
+ version = "0.8.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
924
+ dependencies = [
925
+ "adler2",
926
+ "simd-adler32",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "monostate"
931
+ version = "0.1.18"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
934
+ dependencies = [
935
+ "monostate-impl",
936
+ "serde",
937
+ "serde_core",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "monostate-impl"
942
+ version = "0.1.18"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
945
+ dependencies = [
946
+ "proc-macro2",
947
+ "quote",
948
+ "syn",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "nom"
953
+ version = "7.1.3"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
956
+ dependencies = [
957
+ "memchr",
958
+ "minimal-lexical",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "num-traits"
963
+ version = "0.2.19"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
966
+ dependencies = [
967
+ "autocfg",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "number_prefix"
972
+ version = "0.4.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
975
+
976
+ [[package]]
977
+ name = "once_cell"
978
+ version = "1.21.4"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
981
+
982
+ [[package]]
983
+ name = "onig"
984
+ version = "6.5.1"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
987
+ dependencies = [
988
+ "bitflags",
989
+ "libc",
990
+ "once_cell",
991
+ "onig_sys",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "onig_sys"
996
+ version = "69.9.1"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
999
+ dependencies = [
1000
+ "cc",
1001
+ "pkg-config",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "oorandom"
1006
+ version = "11.1.5"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1009
+
1010
+ [[package]]
1011
+ name = "option-ext"
1012
+ version = "0.2.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1015
+
1016
+ [[package]]
1017
+ name = "paste"
1018
+ version = "1.0.15"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1021
+
1022
+ [[package]]
1023
+ name = "percent-encoding"
1024
+ version = "2.3.2"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1027
+
1028
+ [[package]]
1029
+ name = "pkg-config"
1030
+ version = "0.3.32"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1033
+
1034
+ [[package]]
1035
+ name = "plotters"
1036
+ version = "0.3.7"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1039
+ dependencies = [
1040
+ "num-traits",
1041
+ "plotters-backend",
1042
+ "plotters-svg",
1043
+ "wasm-bindgen",
1044
+ "web-sys",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "plotters-backend"
1049
+ version = "0.3.7"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1052
+
1053
+ [[package]]
1054
+ name = "plotters-svg"
1055
+ version = "0.3.7"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1058
+ dependencies = [
1059
+ "plotters-backend",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "portable-atomic"
1064
+ version = "1.13.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1067
+
1068
+ [[package]]
1069
+ name = "potential_utf"
1070
+ version = "0.1.4"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1073
+ dependencies = [
1074
+ "zerovec 0.11.5",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "ppv-lite86"
1079
+ version = "0.2.21"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1082
+ dependencies = [
1083
+ "zerocopy",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "proc-macro2"
1088
+ version = "1.0.106"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1091
+ dependencies = [
1092
+ "unicode-ident",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "pyo3"
1097
+ version = "0.24.2"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1100
+ dependencies = [
1101
+ "cfg-if",
1102
+ "indoc",
1103
+ "libc",
1104
+ "memoffset",
1105
+ "once_cell",
1106
+ "portable-atomic",
1107
+ "pyo3-build-config",
1108
+ "pyo3-ffi",
1109
+ "pyo3-macros",
1110
+ "unindent",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "pyo3-build-config"
1115
+ version = "0.24.2"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1118
+ dependencies = [
1119
+ "once_cell",
1120
+ "target-lexicon",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "pyo3-ffi"
1125
+ version = "0.24.2"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1128
+ dependencies = [
1129
+ "libc",
1130
+ "pyo3-build-config",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "pyo3-macros"
1135
+ version = "0.24.2"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1138
+ dependencies = [
1139
+ "proc-macro2",
1140
+ "pyo3-macros-backend",
1141
+ "quote",
1142
+ "syn",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "pyo3-macros-backend"
1147
+ version = "0.24.2"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1150
+ dependencies = [
1151
+ "heck",
1152
+ "proc-macro2",
1153
+ "pyo3-build-config",
1154
+ "quote",
1155
+ "syn",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "quote"
1160
+ version = "1.0.45"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1163
+ dependencies = [
1164
+ "proc-macro2",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "r-efi"
1169
+ version = "5.3.0"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1172
+
1173
+ [[package]]
1174
+ name = "rand"
1175
+ version = "0.9.2"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1178
+ dependencies = [
1179
+ "rand_chacha",
1180
+ "rand_core",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "rand_chacha"
1185
+ version = "0.9.0"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1188
+ dependencies = [
1189
+ "ppv-lite86",
1190
+ "rand_core",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "rand_core"
1195
+ version = "0.9.5"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1198
+ dependencies = [
1199
+ "getrandom 0.3.4",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "rayon"
1204
+ version = "1.11.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1207
+ dependencies = [
1208
+ "either",
1209
+ "rayon-core",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "rayon-cond"
1214
+ version = "0.4.0"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
1217
+ dependencies = [
1218
+ "either",
1219
+ "itertools 0.14.0",
1220
+ "rayon",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "rayon-core"
1225
+ version = "1.13.0"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1228
+ dependencies = [
1229
+ "crossbeam-deque",
1230
+ "crossbeam-utils",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "redox_users"
1235
+ version = "0.5.2"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1238
+ dependencies = [
1239
+ "getrandom 0.2.17",
1240
+ "libredox",
1241
+ "thiserror",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "regex"
1246
+ version = "1.12.3"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1249
+ dependencies = [
1250
+ "aho-corasick",
1251
+ "memchr",
1252
+ "regex-automata",
1253
+ "regex-syntax",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "regex-automata"
1258
+ version = "0.4.14"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1261
+ dependencies = [
1262
+ "aho-corasick",
1263
+ "memchr",
1264
+ "regex-syntax",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "regex-syntax"
1269
+ version = "0.8.10"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1272
+
1273
+ [[package]]
1274
+ name = "ring"
1275
+ version = "0.17.14"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1278
+ dependencies = [
1279
+ "cc",
1280
+ "cfg-if",
1281
+ "getrandom 0.2.17",
1282
+ "libc",
1283
+ "untrusted",
1284
+ "windows-sys 0.52.0",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "rustls"
1289
+ version = "0.23.37"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1292
+ dependencies = [
1293
+ "log",
1294
+ "once_cell",
1295
+ "ring",
1296
+ "rustls-pki-types",
1297
+ "rustls-webpki",
1298
+ "subtle",
1299
+ "zeroize",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "rustls-pki-types"
1304
+ version = "1.14.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1307
+ dependencies = [
1308
+ "zeroize",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "rustls-webpki"
1313
+ version = "0.103.10"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
1316
+ dependencies = [
1317
+ "ring",
1318
+ "rustls-pki-types",
1319
+ "untrusted",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "rustversion"
1324
+ version = "1.0.22"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1327
+
1328
+ [[package]]
1329
+ name = "ryu"
1330
+ version = "1.0.23"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1333
+
1334
+ [[package]]
1335
+ name = "same-file"
1336
+ version = "1.0.6"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1339
+ dependencies = [
1340
+ "winapi-util",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "serde"
1345
+ version = "1.0.228"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1348
+ dependencies = [
1349
+ "serde_core",
1350
+ "serde_derive",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "serde_core"
1355
+ version = "1.0.228"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1358
+ dependencies = [
1359
+ "serde_derive",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "serde_derive"
1364
+ version = "1.0.228"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1367
+ dependencies = [
1368
+ "proc-macro2",
1369
+ "quote",
1370
+ "syn",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "serde_json"
1375
+ version = "1.0.149"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1378
+ dependencies = [
1379
+ "itoa",
1380
+ "memchr",
1381
+ "serde",
1382
+ "serde_core",
1383
+ "zmij",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "shlex"
1388
+ version = "1.3.0"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1391
+
1392
+ [[package]]
1393
+ name = "simd-adler32"
1394
+ version = "0.3.8"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1397
+
1398
+ [[package]]
1399
+ name = "smallvec"
1400
+ version = "1.15.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1403
+
1404
+ [[package]]
1405
+ name = "socks"
1406
+ version = "0.3.4"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
1409
+ dependencies = [
1410
+ "byteorder",
1411
+ "libc",
1412
+ "winapi",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "spm_precompiled"
1417
+ version = "0.1.4"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
1420
+ dependencies = [
1421
+ "base64 0.13.1",
1422
+ "nom",
1423
+ "serde",
1424
+ "unicode-segmentation",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "stable_deref_trait"
1429
+ version = "1.2.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1432
+
1433
+ [[package]]
1434
+ name = "static_assertions"
1435
+ version = "1.1.0"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1438
+
1439
+ [[package]]
1440
+ name = "strsim"
1441
+ version = "0.11.1"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1444
+
1445
+ [[package]]
1446
+ name = "subtle"
1447
+ version = "2.6.1"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1450
+
1451
+ [[package]]
1452
+ name = "syn"
1453
+ version = "2.0.117"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1456
+ dependencies = [
1457
+ "proc-macro2",
1458
+ "quote",
1459
+ "unicode-ident",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "synstructure"
1464
+ version = "0.13.2"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1467
+ dependencies = [
1468
+ "proc-macro2",
1469
+ "quote",
1470
+ "syn",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "target-lexicon"
1475
+ version = "0.13.5"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1478
+
1479
+ [[package]]
1480
+ name = "thiserror"
1481
+ version = "2.0.18"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1484
+ dependencies = [
1485
+ "thiserror-impl",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "thiserror-impl"
1490
+ version = "2.0.18"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1493
+ dependencies = [
1494
+ "proc-macro2",
1495
+ "quote",
1496
+ "syn",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "tinystr"
1501
+ version = "0.7.6"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
1504
+ dependencies = [
1505
+ "displaydoc",
1506
+ "zerovec 0.10.4",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "tinystr"
1511
+ version = "0.8.2"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1514
+ dependencies = [
1515
+ "displaydoc",
1516
+ "zerovec 0.11.5",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "tinytemplate"
1521
+ version = "1.2.1"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1524
+ dependencies = [
1525
+ "serde",
1526
+ "serde_json",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "tokenizers"
1531
+ version = "0.22.2"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "b238e22d44a15349529690fb07bd645cf58149a1b1e44d6cb5bd1641ff1a6223"
1534
+ dependencies = [
1535
+ "ahash",
1536
+ "aho-corasick",
1537
+ "compact_str",
1538
+ "dary_heap",
1539
+ "derive_builder",
1540
+ "esaxx-rs",
1541
+ "getrandom 0.3.4",
1542
+ "hf-hub",
1543
+ "indicatif 0.18.4",
1544
+ "itertools 0.14.0",
1545
+ "log",
1546
+ "macro_rules_attribute",
1547
+ "monostate",
1548
+ "onig",
1549
+ "paste",
1550
+ "rand",
1551
+ "rayon",
1552
+ "rayon-cond",
1553
+ "regex",
1554
+ "regex-syntax",
1555
+ "serde",
1556
+ "serde_json",
1557
+ "spm_precompiled",
1558
+ "thiserror",
1559
+ "unicode-normalization-alignments",
1560
+ "unicode-segmentation",
1561
+ "unicode_categories",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "tokie"
1566
+ version = "0.0.4"
1567
+ dependencies = [
1568
+ "chunk",
1569
+ "crc32fast",
1570
+ "criterion",
1571
+ "daggrs",
1572
+ "foldhash",
1573
+ "hf-hub",
1574
+ "icu_normalizer 1.5.0",
1575
+ "memchr",
1576
+ "regex-automata",
1577
+ "serde",
1578
+ "serde_json",
1579
+ "smallvec",
1580
+ "tokenizers",
1581
+ "unicode-general-category",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "tokie-python"
1586
+ version = "0.0.4"
1587
+ dependencies = [
1588
+ "pyo3",
1589
+ "tokie",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "unicode-general-category"
1594
+ version = "1.1.0"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
1597
+
1598
+ [[package]]
1599
+ name = "unicode-ident"
1600
+ version = "1.0.24"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1603
+
1604
+ [[package]]
1605
+ name = "unicode-normalization-alignments"
1606
+ version = "0.1.12"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
1609
+ dependencies = [
1610
+ "smallvec",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "unicode-segmentation"
1615
+ version = "1.12.0"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1618
+
1619
+ [[package]]
1620
+ name = "unicode-width"
1621
+ version = "0.2.2"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1624
+
1625
+ [[package]]
1626
+ name = "unicode_categories"
1627
+ version = "0.1.1"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
1630
+
1631
+ [[package]]
1632
+ name = "unindent"
1633
+ version = "0.2.4"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1636
+
1637
+ [[package]]
1638
+ name = "unit-prefix"
1639
+ version = "0.5.2"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
1642
+
1643
+ [[package]]
1644
+ name = "untrusted"
1645
+ version = "0.9.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1648
+
1649
+ [[package]]
1650
+ name = "ureq"
1651
+ version = "2.12.1"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1654
+ dependencies = [
1655
+ "base64 0.22.1",
1656
+ "flate2",
1657
+ "log",
1658
+ "once_cell",
1659
+ "rustls",
1660
+ "rustls-pki-types",
1661
+ "serde",
1662
+ "serde_json",
1663
+ "socks",
1664
+ "url",
1665
+ "webpki-roots 0.26.11",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "url"
1670
+ version = "2.5.8"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1673
+ dependencies = [
1674
+ "form_urlencoded",
1675
+ "idna",
1676
+ "percent-encoding",
1677
+ "serde",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "utf16_iter"
1682
+ version = "1.0.5"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
1685
+
1686
+ [[package]]
1687
+ name = "utf8_iter"
1688
+ version = "1.0.4"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1691
+
1692
+ [[package]]
1693
+ name = "version_check"
1694
+ version = "0.9.5"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1697
+
1698
+ [[package]]
1699
+ name = "walkdir"
1700
+ version = "2.5.0"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1703
+ dependencies = [
1704
+ "same-file",
1705
+ "winapi-util",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "wasi"
1710
+ version = "0.11.1+wasi-snapshot-preview1"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1713
+
1714
+ [[package]]
1715
+ name = "wasip2"
1716
+ version = "1.0.2+wasi-0.2.9"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1719
+ dependencies = [
1720
+ "wit-bindgen",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "wasm-bindgen"
1725
+ version = "0.2.114"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1728
+ dependencies = [
1729
+ "cfg-if",
1730
+ "once_cell",
1731
+ "rustversion",
1732
+ "wasm-bindgen-macro",
1733
+ "wasm-bindgen-shared",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "wasm-bindgen-macro"
1738
+ version = "0.2.114"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
1741
+ dependencies = [
1742
+ "quote",
1743
+ "wasm-bindgen-macro-support",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "wasm-bindgen-macro-support"
1748
+ version = "0.2.114"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
1751
+ dependencies = [
1752
+ "bumpalo",
1753
+ "proc-macro2",
1754
+ "quote",
1755
+ "syn",
1756
+ "wasm-bindgen-shared",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "wasm-bindgen-shared"
1761
+ version = "0.2.114"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
1764
+ dependencies = [
1765
+ "unicode-ident",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "web-sys"
1770
+ version = "0.3.91"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
1773
+ dependencies = [
1774
+ "js-sys",
1775
+ "wasm-bindgen",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "web-time"
1780
+ version = "1.1.0"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1783
+ dependencies = [
1784
+ "js-sys",
1785
+ "wasm-bindgen",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "webpki-roots"
1790
+ version = "0.26.11"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1793
+ dependencies = [
1794
+ "webpki-roots 1.0.6",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "webpki-roots"
1799
+ version = "1.0.6"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
1802
+ dependencies = [
1803
+ "rustls-pki-types",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "winapi"
1808
+ version = "0.3.9"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1811
+ dependencies = [
1812
+ "winapi-i686-pc-windows-gnu",
1813
+ "winapi-x86_64-pc-windows-gnu",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "winapi-i686-pc-windows-gnu"
1818
+ version = "0.4.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1821
+
1822
+ [[package]]
1823
+ name = "winapi-util"
1824
+ version = "0.1.11"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1827
+ dependencies = [
1828
+ "windows-sys 0.61.2",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "winapi-x86_64-pc-windows-gnu"
1833
+ version = "0.4.0"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1836
+
1837
+ [[package]]
1838
+ name = "windows-link"
1839
+ version = "0.2.1"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1842
+
1843
+ [[package]]
1844
+ name = "windows-sys"
1845
+ version = "0.52.0"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1848
+ dependencies = [
1849
+ "windows-targets 0.52.6",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "windows-sys"
1854
+ version = "0.59.0"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1857
+ dependencies = [
1858
+ "windows-targets 0.52.6",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "windows-sys"
1863
+ version = "0.60.2"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1866
+ dependencies = [
1867
+ "windows-targets 0.53.5",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "windows-sys"
1872
+ version = "0.61.2"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1875
+ dependencies = [
1876
+ "windows-link",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "windows-targets"
1881
+ version = "0.52.6"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1884
+ dependencies = [
1885
+ "windows_aarch64_gnullvm 0.52.6",
1886
+ "windows_aarch64_msvc 0.52.6",
1887
+ "windows_i686_gnu 0.52.6",
1888
+ "windows_i686_gnullvm 0.52.6",
1889
+ "windows_i686_msvc 0.52.6",
1890
+ "windows_x86_64_gnu 0.52.6",
1891
+ "windows_x86_64_gnullvm 0.52.6",
1892
+ "windows_x86_64_msvc 0.52.6",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "windows-targets"
1897
+ version = "0.53.5"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1900
+ dependencies = [
1901
+ "windows-link",
1902
+ "windows_aarch64_gnullvm 0.53.1",
1903
+ "windows_aarch64_msvc 0.53.1",
1904
+ "windows_i686_gnu 0.53.1",
1905
+ "windows_i686_gnullvm 0.53.1",
1906
+ "windows_i686_msvc 0.53.1",
1907
+ "windows_x86_64_gnu 0.53.1",
1908
+ "windows_x86_64_gnullvm 0.53.1",
1909
+ "windows_x86_64_msvc 0.53.1",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "windows_aarch64_gnullvm"
1914
+ version = "0.52.6"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1917
+
1918
+ [[package]]
1919
+ name = "windows_aarch64_gnullvm"
1920
+ version = "0.53.1"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1923
+
1924
+ [[package]]
1925
+ name = "windows_aarch64_msvc"
1926
+ version = "0.52.6"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1929
+
1930
+ [[package]]
1931
+ name = "windows_aarch64_msvc"
1932
+ version = "0.53.1"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1935
+
1936
+ [[package]]
1937
+ name = "windows_i686_gnu"
1938
+ version = "0.52.6"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1941
+
1942
+ [[package]]
1943
+ name = "windows_i686_gnu"
1944
+ version = "0.53.1"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1947
+
1948
+ [[package]]
1949
+ name = "windows_i686_gnullvm"
1950
+ version = "0.52.6"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1953
+
1954
+ [[package]]
1955
+ name = "windows_i686_gnullvm"
1956
+ version = "0.53.1"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1959
+
1960
+ [[package]]
1961
+ name = "windows_i686_msvc"
1962
+ version = "0.52.6"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1965
+
1966
+ [[package]]
1967
+ name = "windows_i686_msvc"
1968
+ version = "0.53.1"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1971
+
1972
+ [[package]]
1973
+ name = "windows_x86_64_gnu"
1974
+ version = "0.52.6"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1977
+
1978
+ [[package]]
1979
+ name = "windows_x86_64_gnu"
1980
+ version = "0.53.1"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1983
+
1984
+ [[package]]
1985
+ name = "windows_x86_64_gnullvm"
1986
+ version = "0.52.6"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1989
+
1990
+ [[package]]
1991
+ name = "windows_x86_64_gnullvm"
1992
+ version = "0.53.1"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1995
+
1996
+ [[package]]
1997
+ name = "windows_x86_64_msvc"
1998
+ version = "0.52.6"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2001
+
2002
+ [[package]]
2003
+ name = "windows_x86_64_msvc"
2004
+ version = "0.53.1"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2007
+
2008
+ [[package]]
2009
+ name = "wit-bindgen"
2010
+ version = "0.51.0"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2013
+
2014
+ [[package]]
2015
+ name = "write16"
2016
+ version = "1.0.0"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2019
+
2020
+ [[package]]
2021
+ name = "writeable"
2022
+ version = "0.5.5"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2025
+
2026
+ [[package]]
2027
+ name = "writeable"
2028
+ version = "0.6.2"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2031
+
2032
+ [[package]]
2033
+ name = "yoke"
2034
+ version = "0.7.5"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2037
+ dependencies = [
2038
+ "serde",
2039
+ "stable_deref_trait",
2040
+ "yoke-derive 0.7.5",
2041
+ "zerofrom",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "yoke"
2046
+ version = "0.8.1"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2049
+ dependencies = [
2050
+ "stable_deref_trait",
2051
+ "yoke-derive 0.8.1",
2052
+ "zerofrom",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "yoke-derive"
2057
+ version = "0.7.5"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2060
+ dependencies = [
2061
+ "proc-macro2",
2062
+ "quote",
2063
+ "syn",
2064
+ "synstructure",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "yoke-derive"
2069
+ version = "0.8.1"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2072
+ dependencies = [
2073
+ "proc-macro2",
2074
+ "quote",
2075
+ "syn",
2076
+ "synstructure",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "zerocopy"
2081
+ version = "0.8.47"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
2084
+ dependencies = [
2085
+ "zerocopy-derive",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "zerocopy-derive"
2090
+ version = "0.8.47"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
2093
+ dependencies = [
2094
+ "proc-macro2",
2095
+ "quote",
2096
+ "syn",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "zerofrom"
2101
+ version = "0.1.6"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2104
+ dependencies = [
2105
+ "zerofrom-derive",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "zerofrom-derive"
2110
+ version = "0.1.6"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2113
+ dependencies = [
2114
+ "proc-macro2",
2115
+ "quote",
2116
+ "syn",
2117
+ "synstructure",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "zeroize"
2122
+ version = "1.8.2"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2125
+
2126
+ [[package]]
2127
+ name = "zerotrie"
2128
+ version = "0.2.3"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2131
+ dependencies = [
2132
+ "displaydoc",
2133
+ "yoke 0.8.1",
2134
+ "zerofrom",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "zerovec"
2139
+ version = "0.10.4"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
2142
+ dependencies = [
2143
+ "yoke 0.7.5",
2144
+ "zerofrom",
2145
+ "zerovec-derive 0.10.3",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "zerovec"
2150
+ version = "0.11.5"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2153
+ dependencies = [
2154
+ "yoke 0.8.1",
2155
+ "zerofrom",
2156
+ "zerovec-derive 0.11.2",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "zerovec-derive"
2161
+ version = "0.10.3"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
2164
+ dependencies = [
2165
+ "proc-macro2",
2166
+ "quote",
2167
+ "syn",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "zerovec-derive"
2172
+ version = "0.11.2"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2175
+ dependencies = [
2176
+ "proc-macro2",
2177
+ "quote",
2178
+ "syn",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "zmij"
2183
+ version = "1.0.21"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"