gbif-name-parser 0.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.
Files changed (66) hide show
  1. gbif_name_parser-0.1.0/Cargo.lock +1501 -0
  2. gbif_name_parser-0.1.0/Cargo.toml +12 -0
  3. gbif_name_parser-0.1.0/PKG-INFO +140 -0
  4. gbif_name_parser-0.1.0/README.md +119 -0
  5. gbif_name_parser-0.1.0/crates/nameparser/Cargo.toml +35 -0
  6. gbif_name_parser-0.1.0/crates/nameparser/LICENSE +202 -0
  7. gbif_name_parser-0.1.0/crates/nameparser/README.md +36 -0
  8. gbif_name_parser-0.1.0/crates/nameparser/benches/parse.rs +45 -0
  9. gbif_name_parser-0.1.0/crates/nameparser/resources/README.md +52 -0
  10. gbif_name_parser-0.1.0/crates/nameparser/resources/blacklist-epithets.txt +275 -0
  11. gbif_name_parser-0.1.0/crates/nameparser/resources/culture-collections.txt +35 -0
  12. gbif_name_parser-0.1.0/crates/nameparser/resources/homoglyphs.txt +1861 -0
  13. gbif_name_parser-0.1.0/crates/nameparser/src/format.rs +1230 -0
  14. gbif_name_parser-0.1.0/crates/nameparser/src/lib.rs +262 -0
  15. gbif_name_parser-0.1.0/crates/nameparser/src/model/enums.rs +1962 -0
  16. gbif_name_parser-0.1.0/crates/nameparser/src/model/mod.rs +123 -0
  17. gbif_name_parser-0.1.0/crates/nameparser/src/model/name.rs +704 -0
  18. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/assemble.rs +811 -0
  19. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/authorship_parser.rs +1562 -0
  20. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/authorship_split.rs +849 -0
  21. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/blacklisted_epithets.rs +92 -0
  22. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/code_inference.rs +332 -0
  23. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/context.rs +268 -0
  24. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/culture_collections.rs +73 -0
  25. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/mod.rs +602 -0
  26. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/name_tokens.rs +1460 -0
  27. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/preflight.rs +1014 -0
  28. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/rank_markers.rs +323 -0
  29. gbif_name_parser-0.1.0/crates/nameparser/src/pipeline/stripandstash.rs +6372 -0
  30. gbif_name_parser-0.1.0/crates/nameparser/src/regexes.rs +254 -0
  31. gbif_name_parser-0.1.0/crates/nameparser/src/token.rs +391 -0
  32. gbif_name_parser-0.1.0/crates/nameparser/src/unicode.rs +374 -0
  33. gbif_name_parser-0.1.0/crates/nameparser/src/viral.rs +147 -0
  34. gbif_name_parser-0.1.0/crates/nameparser/tests/common/mod.rs +995 -0
  35. gbif_name_parser-0.1.0/crates/nameparser/tests/dsl_smoke.rs +65 -0
  36. gbif_name_parser-0.1.0/crates/nameparser/tests/format_golden.rs +273 -0
  37. gbif_name_parser-0.1.0/crates/nameparser/tests/gna_01.rs +585 -0
  38. gbif_name_parser-0.1.0/crates/nameparser/tests/gna_02.rs +460 -0
  39. gbif_name_parser-0.1.0/crates/nameparser/tests/gna_03.rs +547 -0
  40. gbif_name_parser-0.1.0/crates/nameparser/tests/gna_04.rs +573 -0
  41. gbif_name_parser-0.1.0/crates/nameparser/tests/gna_05.rs +422 -0
  42. gbif_name_parser-0.1.0/crates/nameparser/tests/gna_06.rs +418 -0
  43. gbif_name_parser-0.1.0/crates/nameparser/tests/identifier.rs +90 -0
  44. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_01.rs +359 -0
  45. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_02.rs +328 -0
  46. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_03.rs +671 -0
  47. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_04.rs +794 -0
  48. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_05.rs +732 -0
  49. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_06.rs +463 -0
  50. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_07.rs +474 -0
  51. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_08.rs +609 -0
  52. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_09.rs +663 -0
  53. gbif_name_parser-0.1.0/crates/nameparser/tests/impl_10.rs +623 -0
  54. gbif_name_parser-0.1.0/crates/nameparser/tests/informal.rs +295 -0
  55. gbif_name_parser-0.1.0/crates/nameparser/tests/parse_golden.rs +446 -0
  56. gbif_name_parser-0.1.0/crates/nameparser/tests/tokenizer_golden.rs +69 -0
  57. gbif_name_parser-0.1.0/crates/nameparser-py/Cargo.toml +17 -0
  58. gbif_name_parser-0.1.0/crates/nameparser-py/README.md +119 -0
  59. gbif_name_parser-0.1.0/crates/nameparser-py/nameparser.pyi +266 -0
  60. gbif_name_parser-0.1.0/crates/nameparser-py/py.typed +0 -0
  61. gbif_name_parser-0.1.0/crates/nameparser-py/python/tests/_corpus.py +77 -0
  62. gbif_name_parser-0.1.0/crates/nameparser-py/python/tests/test_api.py +293 -0
  63. gbif_name_parser-0.1.0/crates/nameparser-py/python/tests/test_getter_consistency.py +222 -0
  64. gbif_name_parser-0.1.0/crates/nameparser-py/python/tests/test_parity.py +398 -0
  65. gbif_name_parser-0.1.0/crates/nameparser-py/src/lib.rs +578 -0
  66. gbif_name_parser-0.1.0/pyproject.toml +48 -0
@@ -0,0 +1,1501 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys 0.61.2",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "autocfg"
78
+ version = "1.5.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
81
+
82
+ [[package]]
83
+ name = "base64"
84
+ version = "0.22.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
87
+
88
+ [[package]]
89
+ name = "bit-set"
90
+ version = "0.8.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
93
+ dependencies = [
94
+ "bit-vec",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "bit-vec"
99
+ version = "0.8.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
102
+
103
+ [[package]]
104
+ name = "block-buffer"
105
+ version = "0.10.4"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
108
+ dependencies = [
109
+ "generic-array",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "bumpalo"
114
+ version = "3.20.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
117
+
118
+ [[package]]
119
+ name = "cast"
120
+ version = "0.3.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
123
+
124
+ [[package]]
125
+ name = "cc"
126
+ version = "1.2.67"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
129
+ dependencies = [
130
+ "find-msvc-tools",
131
+ "shlex",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "cfg-if"
136
+ version = "1.0.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
139
+
140
+ [[package]]
141
+ name = "ciborium"
142
+ version = "0.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
145
+ dependencies = [
146
+ "ciborium-io",
147
+ "ciborium-ll",
148
+ "serde",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "ciborium-io"
153
+ version = "0.2.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
156
+
157
+ [[package]]
158
+ name = "ciborium-ll"
159
+ version = "0.2.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
162
+ dependencies = [
163
+ "ciborium-io",
164
+ "half",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "clap"
169
+ version = "4.6.1"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
172
+ dependencies = [
173
+ "clap_builder",
174
+ "clap_derive",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "clap_builder"
179
+ version = "4.6.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
182
+ dependencies = [
183
+ "anstream",
184
+ "anstyle",
185
+ "clap_lex",
186
+ "strsim",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "clap_derive"
191
+ version = "4.6.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
194
+ dependencies = [
195
+ "heck",
196
+ "proc-macro2",
197
+ "quote",
198
+ "syn",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "clap_lex"
203
+ version = "1.1.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
206
+
207
+ [[package]]
208
+ name = "colorchoice"
209
+ version = "1.0.5"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
212
+
213
+ [[package]]
214
+ name = "cpufeatures"
215
+ version = "0.2.17"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
218
+ dependencies = [
219
+ "libc",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "crc32fast"
224
+ version = "1.5.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
227
+ dependencies = [
228
+ "cfg-if",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "criterion"
233
+ version = "0.5.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
236
+ dependencies = [
237
+ "anes",
238
+ "cast",
239
+ "ciborium",
240
+ "clap",
241
+ "criterion-plot",
242
+ "is-terminal",
243
+ "itertools",
244
+ "num-traits",
245
+ "once_cell",
246
+ "oorandom",
247
+ "plotters",
248
+ "rayon",
249
+ "regex",
250
+ "serde",
251
+ "serde_derive",
252
+ "serde_json",
253
+ "tinytemplate",
254
+ "walkdir",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "criterion-plot"
259
+ version = "0.5.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
262
+ dependencies = [
263
+ "cast",
264
+ "itertools",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "crossbeam-deque"
269
+ version = "0.8.7"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
272
+ dependencies = [
273
+ "crossbeam-epoch",
274
+ "crossbeam-utils",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "crossbeam-epoch"
279
+ version = "0.9.20"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
282
+ dependencies = [
283
+ "crossbeam-utils",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "crossbeam-utils"
288
+ version = "0.8.22"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
291
+
292
+ [[package]]
293
+ name = "crunchy"
294
+ version = "0.2.4"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
297
+
298
+ [[package]]
299
+ name = "crypto-common"
300
+ version = "0.1.7"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
303
+ dependencies = [
304
+ "generic-array",
305
+ "typenum",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "digest"
310
+ version = "0.10.7"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
313
+ dependencies = [
314
+ "block-buffer",
315
+ "crypto-common",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "displaydoc"
320
+ version = "0.2.6"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
323
+ dependencies = [
324
+ "proc-macro2",
325
+ "quote",
326
+ "syn",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "either"
331
+ version = "1.16.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
334
+
335
+ [[package]]
336
+ name = "fancy-regex"
337
+ version = "0.14.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
340
+ dependencies = [
341
+ "bit-set",
342
+ "regex-automata",
343
+ "regex-syntax",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "find-msvc-tools"
348
+ version = "0.1.9"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
351
+
352
+ [[package]]
353
+ name = "flate2"
354
+ version = "1.1.9"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
357
+ dependencies = [
358
+ "crc32fast",
359
+ "miniz_oxide",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "form_urlencoded"
364
+ version = "1.2.2"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
367
+ dependencies = [
368
+ "percent-encoding",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "futures-core"
373
+ version = "0.3.32"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
376
+
377
+ [[package]]
378
+ name = "futures-task"
379
+ version = "0.3.32"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
382
+
383
+ [[package]]
384
+ name = "futures-util"
385
+ version = "0.3.32"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
388
+ dependencies = [
389
+ "futures-core",
390
+ "futures-task",
391
+ "pin-project-lite",
392
+ "slab",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "gbif-name-parser"
397
+ version = "0.1.0"
398
+ dependencies = [
399
+ "criterion",
400
+ "fancy-regex",
401
+ "regex",
402
+ "serde",
403
+ "serde_json",
404
+ "unicode-normalization",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "generic-array"
409
+ version = "0.14.7"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
412
+ dependencies = [
413
+ "typenum",
414
+ "version_check",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "getrandom"
419
+ version = "0.2.17"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
422
+ dependencies = [
423
+ "cfg-if",
424
+ "libc",
425
+ "wasi",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "half"
430
+ version = "2.7.1"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
433
+ dependencies = [
434
+ "cfg-if",
435
+ "crunchy",
436
+ "zerocopy",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "heck"
441
+ version = "0.5.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
444
+
445
+ [[package]]
446
+ name = "hermit-abi"
447
+ version = "0.5.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
450
+
451
+ [[package]]
452
+ name = "icu_collections"
453
+ version = "2.2.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
456
+ dependencies = [
457
+ "displaydoc",
458
+ "potential_utf",
459
+ "utf8_iter",
460
+ "yoke",
461
+ "zerofrom",
462
+ "zerovec",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "icu_locale_core"
467
+ version = "2.2.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
470
+ dependencies = [
471
+ "displaydoc",
472
+ "litemap",
473
+ "tinystr",
474
+ "writeable",
475
+ "zerovec",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "icu_normalizer"
480
+ version = "2.2.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
483
+ dependencies = [
484
+ "icu_collections",
485
+ "icu_normalizer_data",
486
+ "icu_properties",
487
+ "icu_provider",
488
+ "smallvec",
489
+ "zerovec",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "icu_normalizer_data"
494
+ version = "2.2.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
497
+
498
+ [[package]]
499
+ name = "icu_properties"
500
+ version = "2.2.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
503
+ dependencies = [
504
+ "icu_collections",
505
+ "icu_locale_core",
506
+ "icu_properties_data",
507
+ "icu_provider",
508
+ "zerotrie",
509
+ "zerovec",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "icu_properties_data"
514
+ version = "2.2.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
517
+
518
+ [[package]]
519
+ name = "icu_provider"
520
+ version = "2.2.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
523
+ dependencies = [
524
+ "displaydoc",
525
+ "icu_locale_core",
526
+ "writeable",
527
+ "yoke",
528
+ "zerofrom",
529
+ "zerotrie",
530
+ "zerovec",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "idna"
535
+ version = "1.1.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
538
+ dependencies = [
539
+ "idna_adapter",
540
+ "smallvec",
541
+ "utf8_iter",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "idna_adapter"
546
+ version = "1.2.2"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
549
+ dependencies = [
550
+ "icu_normalizer",
551
+ "icu_properties",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "indoc"
556
+ version = "2.0.7"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
559
+ dependencies = [
560
+ "rustversion",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "is-terminal"
565
+ version = "0.4.17"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
568
+ dependencies = [
569
+ "hermit-abi",
570
+ "libc",
571
+ "windows-sys 0.61.2",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "is_terminal_polyfill"
576
+ version = "1.70.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
579
+
580
+ [[package]]
581
+ name = "itertools"
582
+ version = "0.10.5"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
585
+ dependencies = [
586
+ "either",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "itoa"
591
+ version = "1.0.18"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
594
+
595
+ [[package]]
596
+ name = "js-sys"
597
+ version = "0.3.103"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
600
+ dependencies = [
601
+ "cfg-if",
602
+ "futures-util",
603
+ "wasm-bindgen",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "libc"
608
+ version = "0.2.186"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
611
+
612
+ [[package]]
613
+ name = "litemap"
614
+ version = "0.8.2"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
617
+
618
+ [[package]]
619
+ name = "log"
620
+ version = "0.4.33"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
623
+
624
+ [[package]]
625
+ name = "memchr"
626
+ version = "2.8.3"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
629
+
630
+ [[package]]
631
+ name = "memoffset"
632
+ version = "0.9.1"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
635
+ dependencies = [
636
+ "autocfg",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "miniz_oxide"
641
+ version = "0.8.9"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
644
+ dependencies = [
645
+ "adler2",
646
+ "simd-adler32",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "nameparser-cli"
651
+ version = "0.1.0"
652
+ dependencies = [
653
+ "clap",
654
+ "gbif-name-parser",
655
+ "regex",
656
+ "serde",
657
+ "serde_json",
658
+ "sha2",
659
+ "ureq",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "nameparser-ffi"
664
+ version = "0.1.0"
665
+ dependencies = [
666
+ "gbif-name-parser",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "nameparser-py"
671
+ version = "0.1.0"
672
+ dependencies = [
673
+ "gbif-name-parser",
674
+ "pyo3",
675
+ "pythonize",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "num-traits"
680
+ version = "0.2.19"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
683
+ dependencies = [
684
+ "autocfg",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "once_cell"
689
+ version = "1.21.4"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
692
+
693
+ [[package]]
694
+ name = "once_cell_polyfill"
695
+ version = "1.70.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
698
+
699
+ [[package]]
700
+ name = "oorandom"
701
+ version = "11.1.5"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
704
+
705
+ [[package]]
706
+ name = "percent-encoding"
707
+ version = "2.3.2"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
710
+
711
+ [[package]]
712
+ name = "pin-project-lite"
713
+ version = "0.2.17"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
716
+
717
+ [[package]]
718
+ name = "plotters"
719
+ version = "0.3.7"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
722
+ dependencies = [
723
+ "num-traits",
724
+ "plotters-backend",
725
+ "plotters-svg",
726
+ "wasm-bindgen",
727
+ "web-sys",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "plotters-backend"
732
+ version = "0.3.7"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
735
+
736
+ [[package]]
737
+ name = "plotters-svg"
738
+ version = "0.3.7"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
741
+ dependencies = [
742
+ "plotters-backend",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "portable-atomic"
747
+ version = "1.13.1"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
750
+
751
+ [[package]]
752
+ name = "potential_utf"
753
+ version = "0.1.5"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
756
+ dependencies = [
757
+ "zerovec",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "proc-macro2"
762
+ version = "1.0.106"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
765
+ dependencies = [
766
+ "unicode-ident",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "pyo3"
771
+ version = "0.22.6"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
774
+ dependencies = [
775
+ "cfg-if",
776
+ "indoc",
777
+ "libc",
778
+ "memoffset",
779
+ "once_cell",
780
+ "portable-atomic",
781
+ "pyo3-build-config",
782
+ "pyo3-ffi",
783
+ "pyo3-macros",
784
+ "unindent",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "pyo3-build-config"
789
+ version = "0.22.6"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
792
+ dependencies = [
793
+ "once_cell",
794
+ "target-lexicon",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "pyo3-ffi"
799
+ version = "0.22.6"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
802
+ dependencies = [
803
+ "libc",
804
+ "pyo3-build-config",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "pyo3-macros"
809
+ version = "0.22.6"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
812
+ dependencies = [
813
+ "proc-macro2",
814
+ "pyo3-macros-backend",
815
+ "quote",
816
+ "syn",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "pyo3-macros-backend"
821
+ version = "0.22.6"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
824
+ dependencies = [
825
+ "heck",
826
+ "proc-macro2",
827
+ "pyo3-build-config",
828
+ "quote",
829
+ "syn",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "pythonize"
834
+ version = "0.22.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "90fcf491425978bd889015d5430f6473d91bdfa2097262f1e731aadcf6c2113e"
837
+ dependencies = [
838
+ "pyo3",
839
+ "serde",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "quote"
844
+ version = "1.0.46"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
847
+ dependencies = [
848
+ "proc-macro2",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "rayon"
853
+ version = "1.12.0"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
856
+ dependencies = [
857
+ "either",
858
+ "rayon-core",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "rayon-core"
863
+ version = "1.13.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
866
+ dependencies = [
867
+ "crossbeam-deque",
868
+ "crossbeam-utils",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "regex"
873
+ version = "1.13.0"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
876
+ dependencies = [
877
+ "aho-corasick",
878
+ "memchr",
879
+ "regex-automata",
880
+ "regex-syntax",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "regex-automata"
885
+ version = "0.4.15"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
888
+ dependencies = [
889
+ "aho-corasick",
890
+ "memchr",
891
+ "regex-syntax",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "regex-syntax"
896
+ version = "0.8.11"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
899
+
900
+ [[package]]
901
+ name = "ring"
902
+ version = "0.17.14"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
905
+ dependencies = [
906
+ "cc",
907
+ "cfg-if",
908
+ "getrandom",
909
+ "libc",
910
+ "untrusted",
911
+ "windows-sys 0.52.0",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "rustls"
916
+ version = "0.23.42"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
919
+ dependencies = [
920
+ "log",
921
+ "once_cell",
922
+ "ring",
923
+ "rustls-pki-types",
924
+ "rustls-webpki",
925
+ "subtle",
926
+ "zeroize",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "rustls-pki-types"
931
+ version = "1.15.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
934
+ dependencies = [
935
+ "zeroize",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "rustls-webpki"
940
+ version = "0.103.13"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
943
+ dependencies = [
944
+ "ring",
945
+ "rustls-pki-types",
946
+ "untrusted",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "rustversion"
951
+ version = "1.0.23"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
954
+
955
+ [[package]]
956
+ name = "same-file"
957
+ version = "1.0.6"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
960
+ dependencies = [
961
+ "winapi-util",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "serde"
966
+ version = "1.0.228"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
969
+ dependencies = [
970
+ "serde_core",
971
+ "serde_derive",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "serde_core"
976
+ version = "1.0.228"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
979
+ dependencies = [
980
+ "serde_derive",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "serde_derive"
985
+ version = "1.0.228"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
988
+ dependencies = [
989
+ "proc-macro2",
990
+ "quote",
991
+ "syn",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "serde_json"
996
+ version = "1.0.150"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
999
+ dependencies = [
1000
+ "itoa",
1001
+ "memchr",
1002
+ "serde",
1003
+ "serde_core",
1004
+ "zmij",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "sha2"
1009
+ version = "0.10.9"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1012
+ dependencies = [
1013
+ "cfg-if",
1014
+ "cpufeatures",
1015
+ "digest",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "shlex"
1020
+ version = "2.0.1"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1023
+
1024
+ [[package]]
1025
+ name = "simd-adler32"
1026
+ version = "0.3.9"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1029
+
1030
+ [[package]]
1031
+ name = "slab"
1032
+ version = "0.4.12"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1035
+
1036
+ [[package]]
1037
+ name = "smallvec"
1038
+ version = "1.15.2"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1041
+
1042
+ [[package]]
1043
+ name = "stable_deref_trait"
1044
+ version = "1.2.1"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1047
+
1048
+ [[package]]
1049
+ name = "strsim"
1050
+ version = "0.11.1"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1053
+
1054
+ [[package]]
1055
+ name = "subtle"
1056
+ version = "2.6.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1059
+
1060
+ [[package]]
1061
+ name = "syn"
1062
+ version = "2.0.118"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1065
+ dependencies = [
1066
+ "proc-macro2",
1067
+ "quote",
1068
+ "unicode-ident",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "synstructure"
1073
+ version = "0.13.2"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1076
+ dependencies = [
1077
+ "proc-macro2",
1078
+ "quote",
1079
+ "syn",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "target-lexicon"
1084
+ version = "0.12.16"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1087
+
1088
+ [[package]]
1089
+ name = "tinystr"
1090
+ version = "0.8.3"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1093
+ dependencies = [
1094
+ "displaydoc",
1095
+ "zerovec",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "tinytemplate"
1100
+ version = "1.2.1"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1103
+ dependencies = [
1104
+ "serde",
1105
+ "serde_json",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "tinyvec"
1110
+ version = "1.12.0"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
1113
+ dependencies = [
1114
+ "tinyvec_macros",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "tinyvec_macros"
1119
+ version = "0.1.1"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1122
+
1123
+ [[package]]
1124
+ name = "typenum"
1125
+ version = "1.20.1"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1128
+
1129
+ [[package]]
1130
+ name = "unicode-ident"
1131
+ version = "1.0.24"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1134
+
1135
+ [[package]]
1136
+ name = "unicode-normalization"
1137
+ version = "0.1.25"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1140
+ dependencies = [
1141
+ "tinyvec",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "unindent"
1146
+ version = "0.2.4"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1149
+
1150
+ [[package]]
1151
+ name = "untrusted"
1152
+ version = "0.9.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1155
+
1156
+ [[package]]
1157
+ name = "ureq"
1158
+ version = "2.12.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1161
+ dependencies = [
1162
+ "base64",
1163
+ "flate2",
1164
+ "log",
1165
+ "once_cell",
1166
+ "rustls",
1167
+ "rustls-pki-types",
1168
+ "url",
1169
+ "webpki-roots 0.26.11",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "url"
1174
+ version = "2.5.8"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1177
+ dependencies = [
1178
+ "form_urlencoded",
1179
+ "idna",
1180
+ "percent-encoding",
1181
+ "serde",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "utf8_iter"
1186
+ version = "1.0.4"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1189
+
1190
+ [[package]]
1191
+ name = "utf8parse"
1192
+ version = "0.2.2"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1195
+
1196
+ [[package]]
1197
+ name = "version_check"
1198
+ version = "0.9.5"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1201
+
1202
+ [[package]]
1203
+ name = "walkdir"
1204
+ version = "2.5.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1207
+ dependencies = [
1208
+ "same-file",
1209
+ "winapi-util",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "wasi"
1214
+ version = "0.11.1+wasi-snapshot-preview1"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1217
+
1218
+ [[package]]
1219
+ name = "wasm-bindgen"
1220
+ version = "0.2.126"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1223
+ dependencies = [
1224
+ "cfg-if",
1225
+ "once_cell",
1226
+ "rustversion",
1227
+ "wasm-bindgen-macro",
1228
+ "wasm-bindgen-shared",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "wasm-bindgen-macro"
1233
+ version = "0.2.126"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1236
+ dependencies = [
1237
+ "quote",
1238
+ "wasm-bindgen-macro-support",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "wasm-bindgen-macro-support"
1243
+ version = "0.2.126"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1246
+ dependencies = [
1247
+ "bumpalo",
1248
+ "proc-macro2",
1249
+ "quote",
1250
+ "syn",
1251
+ "wasm-bindgen-shared",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "wasm-bindgen-shared"
1256
+ version = "0.2.126"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1259
+ dependencies = [
1260
+ "unicode-ident",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "web-sys"
1265
+ version = "0.3.103"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1268
+ dependencies = [
1269
+ "js-sys",
1270
+ "wasm-bindgen",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "webpki-roots"
1275
+ version = "0.26.11"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1278
+ dependencies = [
1279
+ "webpki-roots 1.0.8",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "webpki-roots"
1284
+ version = "1.0.8"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
1287
+ dependencies = [
1288
+ "rustls-pki-types",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "winapi-util"
1293
+ version = "0.1.11"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1296
+ dependencies = [
1297
+ "windows-sys 0.61.2",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "windows-link"
1302
+ version = "0.2.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1305
+
1306
+ [[package]]
1307
+ name = "windows-sys"
1308
+ version = "0.52.0"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1311
+ dependencies = [
1312
+ "windows-targets",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "windows-sys"
1317
+ version = "0.61.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1320
+ dependencies = [
1321
+ "windows-link",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "windows-targets"
1326
+ version = "0.52.6"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1329
+ dependencies = [
1330
+ "windows_aarch64_gnullvm",
1331
+ "windows_aarch64_msvc",
1332
+ "windows_i686_gnu",
1333
+ "windows_i686_gnullvm",
1334
+ "windows_i686_msvc",
1335
+ "windows_x86_64_gnu",
1336
+ "windows_x86_64_gnullvm",
1337
+ "windows_x86_64_msvc",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "windows_aarch64_gnullvm"
1342
+ version = "0.52.6"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1345
+
1346
+ [[package]]
1347
+ name = "windows_aarch64_msvc"
1348
+ version = "0.52.6"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1351
+
1352
+ [[package]]
1353
+ name = "windows_i686_gnu"
1354
+ version = "0.52.6"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1357
+
1358
+ [[package]]
1359
+ name = "windows_i686_gnullvm"
1360
+ version = "0.52.6"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1363
+
1364
+ [[package]]
1365
+ name = "windows_i686_msvc"
1366
+ version = "0.52.6"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1369
+
1370
+ [[package]]
1371
+ name = "windows_x86_64_gnu"
1372
+ version = "0.52.6"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1375
+
1376
+ [[package]]
1377
+ name = "windows_x86_64_gnullvm"
1378
+ version = "0.52.6"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1381
+
1382
+ [[package]]
1383
+ name = "windows_x86_64_msvc"
1384
+ version = "0.52.6"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1387
+
1388
+ [[package]]
1389
+ name = "writeable"
1390
+ version = "0.6.3"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1393
+
1394
+ [[package]]
1395
+ name = "yoke"
1396
+ version = "0.8.3"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1399
+ dependencies = [
1400
+ "stable_deref_trait",
1401
+ "yoke-derive",
1402
+ "zerofrom",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "yoke-derive"
1407
+ version = "0.8.2"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1410
+ dependencies = [
1411
+ "proc-macro2",
1412
+ "quote",
1413
+ "syn",
1414
+ "synstructure",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "zerocopy"
1419
+ version = "0.8.54"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1422
+ dependencies = [
1423
+ "zerocopy-derive",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "zerocopy-derive"
1428
+ version = "0.8.54"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1431
+ dependencies = [
1432
+ "proc-macro2",
1433
+ "quote",
1434
+ "syn",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "zerofrom"
1439
+ version = "0.1.8"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1442
+ dependencies = [
1443
+ "zerofrom-derive",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "zerofrom-derive"
1448
+ version = "0.1.7"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1451
+ dependencies = [
1452
+ "proc-macro2",
1453
+ "quote",
1454
+ "syn",
1455
+ "synstructure",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "zeroize"
1460
+ version = "1.9.0"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1463
+
1464
+ [[package]]
1465
+ name = "zerotrie"
1466
+ version = "0.2.4"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1469
+ dependencies = [
1470
+ "displaydoc",
1471
+ "yoke",
1472
+ "zerofrom",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "zerovec"
1477
+ version = "0.11.6"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1480
+ dependencies = [
1481
+ "yoke",
1482
+ "zerofrom",
1483
+ "zerovec-derive",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "zerovec-derive"
1488
+ version = "0.11.3"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1491
+ dependencies = [
1492
+ "proc-macro2",
1493
+ "quote",
1494
+ "syn",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "zmij"
1499
+ version = "1.0.23"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"