unicode-intervals 0.3.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 (42) hide show
  1. unicode_intervals-0.3.0/Cargo.lock +1356 -0
  2. unicode_intervals-0.3.0/Cargo.toml +15 -0
  3. unicode_intervals-0.3.0/PKG-INFO +109 -0
  4. unicode_intervals-0.3.0/README.md +83 -0
  5. unicode_intervals-0.3.0/crates/unicode-intervals/Cargo.toml +29 -0
  6. unicode_intervals-0.3.0/crates/unicode-intervals/README.md +109 -0
  7. unicode_intervals-0.3.0/crates/unicode-intervals/benches/bench.rs +154 -0
  8. unicode_intervals-0.3.0/crates/unicode-intervals/src/categories.rs +727 -0
  9. unicode_intervals-0.3.0/crates/unicode-intervals/src/constants.rs +2 -0
  10. unicode_intervals-0.3.0/crates/unicode-intervals/src/error.rs +49 -0
  11. unicode_intervals-0.3.0/crates/unicode-intervals/src/intervals.rs +167 -0
  12. unicode_intervals-0.3.0/crates/unicode-intervals/src/intervalset.rs +434 -0
  13. unicode_intervals-0.3.0/crates/unicode-intervals/src/lib.rs +789 -0
  14. unicode_intervals-0.3.0/crates/unicode-intervals/src/query.rs +280 -0
  15. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/mod.rs +11 -0
  16. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v10_0_0.rs +3822 -0
  17. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v11_0_0.rs +3888 -0
  18. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v12_0_0.rs +3941 -0
  19. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v12_1_0.rs +3939 -0
  20. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v13_0_0.rs +3994 -0
  21. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v14_0_0.rs +4086 -0
  22. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v15_0_0.rs +4125 -0
  23. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v15_1_0.rs +4127 -0
  24. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v16_0_0.rs +4217 -0
  25. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v17_0_0.rs +4262 -0
  26. unicode_intervals-0.3.0/crates/unicode-intervals/src/tables/v9_0_0.rs +3772 -0
  27. unicode_intervals-0.3.0/crates/unicode-intervals-py/.gitignore +8 -0
  28. unicode_intervals-0.3.0/crates/unicode-intervals-py/CHANGELOG.md +5 -0
  29. unicode_intervals-0.3.0/crates/unicode-intervals-py/Cargo.toml +25 -0
  30. unicode_intervals-0.3.0/crates/unicode-intervals-py/README.md +83 -0
  31. unicode_intervals-0.3.0/crates/unicode-intervals-py/benches-py/test_vs_hypothesis.py +92 -0
  32. unicode_intervals-0.3.0/crates/unicode-intervals-py/build.rs +4 -0
  33. unicode_intervals-0.3.0/crates/unicode-intervals-py/rust-toolchain.toml +2 -0
  34. unicode_intervals-0.3.0/crates/unicode-intervals-py/src/lib.rs +184 -0
  35. unicode_intervals-0.3.0/crates/unicode-intervals-py/tests-py/test_api.py +65 -0
  36. unicode_intervals-0.3.0/crates/unicode-intervals-py/tests-py/test_charmap_compat.py +66 -0
  37. unicode_intervals-0.3.0/crates/unicode-intervals-py/tests-py/test_docstrings.py +7 -0
  38. unicode_intervals-0.3.0/crates/unicode-intervals-py/tests-py/test_readme.py +14 -0
  39. unicode_intervals-0.3.0/pyproject.toml +32 -0
  40. unicode_intervals-0.3.0/python/unicode_intervals/__init__.py +19 -0
  41. unicode_intervals-0.3.0/python/unicode_intervals/__init__.pyi +36 -0
  42. unicode_intervals-0.3.0/python/unicode_intervals/py.typed +0 -0
@@ -0,0 +1,1356 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anyhow"
37
+ version = "1.0.102"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
40
+
41
+ [[package]]
42
+ name = "approx"
43
+ version = "0.5.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
46
+ dependencies = [
47
+ "num-traits",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "autocfg"
52
+ version = "1.5.1"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
55
+
56
+ [[package]]
57
+ name = "bitflags"
58
+ version = "2.13.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
61
+
62
+ [[package]]
63
+ name = "built"
64
+ version = "0.8.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
67
+ dependencies = [
68
+ "cargo-lock",
69
+ "chrono",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "bumpalo"
74
+ version = "3.20.3"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
77
+
78
+ [[package]]
79
+ name = "cargo-lock"
80
+ version = "10.1.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "c06acb4f71407ba205a07cb453211e0e6a67b21904e47f6ba1f9589e38f2e454"
83
+ dependencies = [
84
+ "semver",
85
+ "serde",
86
+ "toml",
87
+ "url",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "cast"
92
+ version = "0.3.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
95
+
96
+ [[package]]
97
+ name = "cc"
98
+ version = "1.2.63"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
101
+ dependencies = [
102
+ "find-msvc-tools",
103
+ "shlex",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "cfg-if"
108
+ version = "1.0.4"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
111
+
112
+ [[package]]
113
+ name = "cfg_aliases"
114
+ version = "0.2.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
117
+
118
+ [[package]]
119
+ name = "chrono"
120
+ version = "0.4.45"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
123
+ dependencies = [
124
+ "iana-time-zone",
125
+ "num-traits",
126
+ "windows-link",
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.1"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
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 = "codspeed"
183
+ version = "4.7.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "57af92d1db7f6871b7e82c79cd87f2501db66f36b0eab924be6ea83dd6b2f3f3"
186
+ dependencies = [
187
+ "anyhow",
188
+ "cc",
189
+ "colored",
190
+ "getrandom",
191
+ "glob",
192
+ "libc",
193
+ "nix",
194
+ "serde",
195
+ "serde_json",
196
+ "statrs",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "codspeed-criterion-compat"
201
+ version = "4.7.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "1d31ae2e9ab23c29fa13bdfa06d012524176f5c0f4e25ec262cd829d947ebc5e"
204
+ dependencies = [
205
+ "clap",
206
+ "codspeed",
207
+ "codspeed-criterion-compat-walltime",
208
+ "colored",
209
+ "regex",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "codspeed-criterion-compat-walltime"
214
+ version = "4.7.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "cc8605e40bab5114dcb0f76268e18880082b5798dec10757b5b58d2c3bbc7a1c"
217
+ dependencies = [
218
+ "anes",
219
+ "cast",
220
+ "ciborium",
221
+ "clap",
222
+ "codspeed",
223
+ "criterion-plot",
224
+ "is-terminal",
225
+ "itertools",
226
+ "num-traits",
227
+ "once_cell",
228
+ "oorandom",
229
+ "regex",
230
+ "serde",
231
+ "serde_derive",
232
+ "serde_json",
233
+ "tinytemplate",
234
+ "walkdir",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "colored"
239
+ version = "2.2.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
242
+ dependencies = [
243
+ "lazy_static",
244
+ "windows-sys 0.59.0",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "core-foundation-sys"
249
+ version = "0.8.7"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
252
+
253
+ [[package]]
254
+ name = "criterion-plot"
255
+ version = "0.5.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
258
+ dependencies = [
259
+ "cast",
260
+ "itertools",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "crunchy"
265
+ version = "0.2.4"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
268
+
269
+ [[package]]
270
+ name = "displaydoc"
271
+ version = "0.2.6"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
274
+ dependencies = [
275
+ "proc-macro2",
276
+ "quote",
277
+ "syn",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "either"
282
+ version = "1.16.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
285
+
286
+ [[package]]
287
+ name = "equivalent"
288
+ version = "1.0.2"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
291
+
292
+ [[package]]
293
+ name = "find-msvc-tools"
294
+ version = "0.1.9"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
297
+
298
+ [[package]]
299
+ name = "form_urlencoded"
300
+ version = "1.2.2"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
303
+ dependencies = [
304
+ "percent-encoding",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "futures-core"
309
+ version = "0.3.32"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
312
+
313
+ [[package]]
314
+ name = "futures-task"
315
+ version = "0.3.32"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
318
+
319
+ [[package]]
320
+ name = "futures-util"
321
+ version = "0.3.32"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
324
+ dependencies = [
325
+ "futures-core",
326
+ "futures-task",
327
+ "pin-project-lite",
328
+ "slab",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "getrandom"
333
+ version = "0.2.17"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
336
+ dependencies = [
337
+ "cfg-if",
338
+ "libc",
339
+ "wasi",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "glob"
344
+ version = "0.3.3"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
347
+
348
+ [[package]]
349
+ name = "half"
350
+ version = "2.7.1"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
353
+ dependencies = [
354
+ "cfg-if",
355
+ "crunchy",
356
+ "zerocopy",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "hashbrown"
361
+ version = "0.17.1"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
364
+
365
+ [[package]]
366
+ name = "heck"
367
+ version = "0.5.0"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
370
+
371
+ [[package]]
372
+ name = "hermit-abi"
373
+ version = "0.5.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
376
+
377
+ [[package]]
378
+ name = "iana-time-zone"
379
+ version = "0.1.65"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
382
+ dependencies = [
383
+ "android_system_properties",
384
+ "core-foundation-sys",
385
+ "iana-time-zone-haiku",
386
+ "js-sys",
387
+ "log",
388
+ "wasm-bindgen",
389
+ "windows-core",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "iana-time-zone-haiku"
394
+ version = "0.1.2"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
397
+ dependencies = [
398
+ "cc",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "icu_collections"
403
+ version = "2.2.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
406
+ dependencies = [
407
+ "displaydoc",
408
+ "potential_utf",
409
+ "utf8_iter",
410
+ "yoke",
411
+ "zerofrom",
412
+ "zerovec",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "icu_locale_core"
417
+ version = "2.2.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
420
+ dependencies = [
421
+ "displaydoc",
422
+ "litemap",
423
+ "tinystr",
424
+ "writeable",
425
+ "zerovec",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "icu_normalizer"
430
+ version = "2.2.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
433
+ dependencies = [
434
+ "icu_collections",
435
+ "icu_normalizer_data",
436
+ "icu_properties",
437
+ "icu_provider",
438
+ "smallvec",
439
+ "zerovec",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "icu_normalizer_data"
444
+ version = "2.2.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
447
+
448
+ [[package]]
449
+ name = "icu_properties"
450
+ version = "2.2.0"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
453
+ dependencies = [
454
+ "icu_collections",
455
+ "icu_locale_core",
456
+ "icu_properties_data",
457
+ "icu_provider",
458
+ "zerotrie",
459
+ "zerovec",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "icu_properties_data"
464
+ version = "2.2.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
467
+
468
+ [[package]]
469
+ name = "icu_provider"
470
+ version = "2.2.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
473
+ dependencies = [
474
+ "displaydoc",
475
+ "icu_locale_core",
476
+ "writeable",
477
+ "yoke",
478
+ "zerofrom",
479
+ "zerotrie",
480
+ "zerovec",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "idna"
485
+ version = "1.1.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
488
+ dependencies = [
489
+ "idna_adapter",
490
+ "smallvec",
491
+ "utf8_iter",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "idna_adapter"
496
+ version = "1.2.2"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
499
+ dependencies = [
500
+ "icu_normalizer",
501
+ "icu_properties",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "indexmap"
506
+ version = "2.14.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
509
+ dependencies = [
510
+ "equivalent",
511
+ "hashbrown",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "is-terminal"
516
+ version = "0.4.17"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
519
+ dependencies = [
520
+ "hermit-abi",
521
+ "libc",
522
+ "windows-sys 0.61.2",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "itertools"
527
+ version = "0.10.5"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
530
+ dependencies = [
531
+ "either",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "itoa"
536
+ version = "1.0.18"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
539
+
540
+ [[package]]
541
+ name = "js-sys"
542
+ version = "0.3.99"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
545
+ dependencies = [
546
+ "cfg-if",
547
+ "futures-util",
548
+ "once_cell",
549
+ "wasm-bindgen",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "lazy_static"
554
+ version = "1.5.0"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
557
+
558
+ [[package]]
559
+ name = "libc"
560
+ version = "0.2.186"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
563
+
564
+ [[package]]
565
+ name = "litemap"
566
+ version = "0.8.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
569
+
570
+ [[package]]
571
+ name = "log"
572
+ version = "0.4.32"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
575
+
576
+ [[package]]
577
+ name = "memchr"
578
+ version = "2.8.1"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
581
+
582
+ [[package]]
583
+ name = "nix"
584
+ version = "0.31.3"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
587
+ dependencies = [
588
+ "bitflags",
589
+ "cfg-if",
590
+ "cfg_aliases",
591
+ "libc",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "num-traits"
596
+ version = "0.2.19"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
599
+ dependencies = [
600
+ "autocfg",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "once_cell"
605
+ version = "1.21.4"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
608
+
609
+ [[package]]
610
+ name = "oorandom"
611
+ version = "11.1.5"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
614
+
615
+ [[package]]
616
+ name = "percent-encoding"
617
+ version = "2.3.2"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
620
+
621
+ [[package]]
622
+ name = "pin-project-lite"
623
+ version = "0.2.17"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
626
+
627
+ [[package]]
628
+ name = "portable-atomic"
629
+ version = "1.13.1"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
632
+
633
+ [[package]]
634
+ name = "potential_utf"
635
+ version = "0.1.5"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
638
+ dependencies = [
639
+ "zerovec",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "proc-macro2"
644
+ version = "1.0.106"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
647
+ dependencies = [
648
+ "unicode-ident",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "pyo3"
653
+ version = "0.28.3"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
656
+ dependencies = [
657
+ "libc",
658
+ "once_cell",
659
+ "portable-atomic",
660
+ "pyo3-build-config",
661
+ "pyo3-ffi",
662
+ "pyo3-macros",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "pyo3-build-config"
667
+ version = "0.28.3"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
670
+ dependencies = [
671
+ "target-lexicon",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "pyo3-built"
676
+ version = "0.6.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "4bf83fcee540452241ba030140f50418b973e840a64727c967b9266660f0a690"
679
+
680
+ [[package]]
681
+ name = "pyo3-ffi"
682
+ version = "0.28.3"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
685
+ dependencies = [
686
+ "libc",
687
+ "pyo3-build-config",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "pyo3-macros"
692
+ version = "0.28.3"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
695
+ dependencies = [
696
+ "proc-macro2",
697
+ "pyo3-macros-backend",
698
+ "quote",
699
+ "syn",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "pyo3-macros-backend"
704
+ version = "0.28.3"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
707
+ dependencies = [
708
+ "heck",
709
+ "proc-macro2",
710
+ "pyo3-build-config",
711
+ "quote",
712
+ "syn",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "quote"
717
+ version = "1.0.45"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
720
+ dependencies = [
721
+ "proc-macro2",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "regex"
726
+ version = "1.12.3"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
729
+ dependencies = [
730
+ "aho-corasick",
731
+ "memchr",
732
+ "regex-automata",
733
+ "regex-syntax",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "regex-automata"
738
+ version = "0.4.14"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
741
+ dependencies = [
742
+ "aho-corasick",
743
+ "memchr",
744
+ "regex-syntax",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "regex-syntax"
749
+ version = "0.8.10"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
752
+
753
+ [[package]]
754
+ name = "rustversion"
755
+ version = "1.0.22"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
758
+
759
+ [[package]]
760
+ name = "same-file"
761
+ version = "1.0.6"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
764
+ dependencies = [
765
+ "winapi-util",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "semver"
770
+ version = "1.0.28"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
773
+ dependencies = [
774
+ "serde",
775
+ "serde_core",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "serde"
780
+ version = "1.0.228"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
783
+ dependencies = [
784
+ "serde_core",
785
+ "serde_derive",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "serde_core"
790
+ version = "1.0.228"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
793
+ dependencies = [
794
+ "serde_derive",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "serde_derive"
799
+ version = "1.0.228"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
802
+ dependencies = [
803
+ "proc-macro2",
804
+ "quote",
805
+ "syn",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "serde_json"
810
+ version = "1.0.150"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
813
+ dependencies = [
814
+ "itoa",
815
+ "memchr",
816
+ "serde",
817
+ "serde_core",
818
+ "zmij",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "serde_spanned"
823
+ version = "0.6.9"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
826
+ dependencies = [
827
+ "serde",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "shlex"
832
+ version = "2.0.1"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
835
+
836
+ [[package]]
837
+ name = "slab"
838
+ version = "0.4.12"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
841
+
842
+ [[package]]
843
+ name = "smallvec"
844
+ version = "1.15.1"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
847
+
848
+ [[package]]
849
+ name = "stable_deref_trait"
850
+ version = "1.2.1"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
853
+
854
+ [[package]]
855
+ name = "statrs"
856
+ version = "0.18.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
859
+ dependencies = [
860
+ "approx",
861
+ "num-traits",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "syn"
866
+ version = "2.0.117"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
869
+ dependencies = [
870
+ "proc-macro2",
871
+ "quote",
872
+ "unicode-ident",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "synstructure"
877
+ version = "0.13.2"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
880
+ dependencies = [
881
+ "proc-macro2",
882
+ "quote",
883
+ "syn",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "target-lexicon"
888
+ version = "0.13.5"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
891
+
892
+ [[package]]
893
+ name = "test-case"
894
+ version = "3.3.1"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
897
+ dependencies = [
898
+ "test-case-macros",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "test-case-core"
903
+ version = "3.3.1"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
906
+ dependencies = [
907
+ "cfg-if",
908
+ "proc-macro2",
909
+ "quote",
910
+ "syn",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "test-case-macros"
915
+ version = "3.3.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
918
+ dependencies = [
919
+ "proc-macro2",
920
+ "quote",
921
+ "syn",
922
+ "test-case-core",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "tinystr"
927
+ version = "0.8.3"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
930
+ dependencies = [
931
+ "displaydoc",
932
+ "zerovec",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "tinytemplate"
937
+ version = "1.2.1"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
940
+ dependencies = [
941
+ "serde",
942
+ "serde_json",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "toml"
947
+ version = "0.8.23"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
950
+ dependencies = [
951
+ "serde",
952
+ "serde_spanned",
953
+ "toml_datetime",
954
+ "toml_edit",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "toml_datetime"
959
+ version = "0.6.11"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
962
+ dependencies = [
963
+ "serde",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "toml_edit"
968
+ version = "0.22.27"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
971
+ dependencies = [
972
+ "indexmap",
973
+ "serde",
974
+ "serde_spanned",
975
+ "toml_datetime",
976
+ "toml_write",
977
+ "winnow",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "toml_write"
982
+ version = "0.1.2"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
985
+
986
+ [[package]]
987
+ name = "unicode-ident"
988
+ version = "1.0.24"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
991
+
992
+ [[package]]
993
+ name = "unicode-intervals"
994
+ version = "0.3.0"
995
+ dependencies = [
996
+ "codspeed-criterion-compat",
997
+ "test-case",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "unicode-intervals-py"
1002
+ version = "0.3.0"
1003
+ dependencies = [
1004
+ "built",
1005
+ "pyo3",
1006
+ "pyo3-build-config",
1007
+ "pyo3-built",
1008
+ "unicode-intervals",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "url"
1013
+ version = "2.5.8"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1016
+ dependencies = [
1017
+ "form_urlencoded",
1018
+ "idna",
1019
+ "percent-encoding",
1020
+ "serde",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "utf8_iter"
1025
+ version = "1.0.4"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1028
+
1029
+ [[package]]
1030
+ name = "walkdir"
1031
+ version = "2.5.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1034
+ dependencies = [
1035
+ "same-file",
1036
+ "winapi-util",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "wasi"
1041
+ version = "0.11.1+wasi-snapshot-preview1"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1044
+
1045
+ [[package]]
1046
+ name = "wasm-bindgen"
1047
+ version = "0.2.122"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1050
+ dependencies = [
1051
+ "cfg-if",
1052
+ "once_cell",
1053
+ "rustversion",
1054
+ "wasm-bindgen-macro",
1055
+ "wasm-bindgen-shared",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "wasm-bindgen-macro"
1060
+ version = "0.2.122"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1063
+ dependencies = [
1064
+ "quote",
1065
+ "wasm-bindgen-macro-support",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "wasm-bindgen-macro-support"
1070
+ version = "0.2.122"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1073
+ dependencies = [
1074
+ "bumpalo",
1075
+ "proc-macro2",
1076
+ "quote",
1077
+ "syn",
1078
+ "wasm-bindgen-shared",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "wasm-bindgen-shared"
1083
+ version = "0.2.122"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1086
+ dependencies = [
1087
+ "unicode-ident",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "winapi-util"
1092
+ version = "0.1.11"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1095
+ dependencies = [
1096
+ "windows-sys 0.61.2",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "windows-core"
1101
+ version = "0.62.2"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1104
+ dependencies = [
1105
+ "windows-implement",
1106
+ "windows-interface",
1107
+ "windows-link",
1108
+ "windows-result",
1109
+ "windows-strings",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "windows-implement"
1114
+ version = "0.60.2"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1117
+ dependencies = [
1118
+ "proc-macro2",
1119
+ "quote",
1120
+ "syn",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "windows-interface"
1125
+ version = "0.59.3"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1128
+ dependencies = [
1129
+ "proc-macro2",
1130
+ "quote",
1131
+ "syn",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "windows-link"
1136
+ version = "0.2.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1139
+
1140
+ [[package]]
1141
+ name = "windows-result"
1142
+ version = "0.4.1"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1145
+ dependencies = [
1146
+ "windows-link",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "windows-strings"
1151
+ version = "0.5.1"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1154
+ dependencies = [
1155
+ "windows-link",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "windows-sys"
1160
+ version = "0.59.0"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1163
+ dependencies = [
1164
+ "windows-targets",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "windows-sys"
1169
+ version = "0.61.2"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1172
+ dependencies = [
1173
+ "windows-link",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "windows-targets"
1178
+ version = "0.52.6"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1181
+ dependencies = [
1182
+ "windows_aarch64_gnullvm",
1183
+ "windows_aarch64_msvc",
1184
+ "windows_i686_gnu",
1185
+ "windows_i686_gnullvm",
1186
+ "windows_i686_msvc",
1187
+ "windows_x86_64_gnu",
1188
+ "windows_x86_64_gnullvm",
1189
+ "windows_x86_64_msvc",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "windows_aarch64_gnullvm"
1194
+ version = "0.52.6"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1197
+
1198
+ [[package]]
1199
+ name = "windows_aarch64_msvc"
1200
+ version = "0.52.6"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1203
+
1204
+ [[package]]
1205
+ name = "windows_i686_gnu"
1206
+ version = "0.52.6"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1209
+
1210
+ [[package]]
1211
+ name = "windows_i686_gnullvm"
1212
+ version = "0.52.6"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1215
+
1216
+ [[package]]
1217
+ name = "windows_i686_msvc"
1218
+ version = "0.52.6"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1221
+
1222
+ [[package]]
1223
+ name = "windows_x86_64_gnu"
1224
+ version = "0.52.6"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1227
+
1228
+ [[package]]
1229
+ name = "windows_x86_64_gnullvm"
1230
+ version = "0.52.6"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1233
+
1234
+ [[package]]
1235
+ name = "windows_x86_64_msvc"
1236
+ version = "0.52.6"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1239
+
1240
+ [[package]]
1241
+ name = "winnow"
1242
+ version = "0.7.15"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1245
+ dependencies = [
1246
+ "memchr",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "writeable"
1251
+ version = "0.6.3"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1254
+
1255
+ [[package]]
1256
+ name = "yoke"
1257
+ version = "0.8.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1260
+ dependencies = [
1261
+ "stable_deref_trait",
1262
+ "yoke-derive",
1263
+ "zerofrom",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "yoke-derive"
1268
+ version = "0.8.2"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1271
+ dependencies = [
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn",
1275
+ "synstructure",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "zerocopy"
1280
+ version = "0.8.50"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
1283
+ dependencies = [
1284
+ "zerocopy-derive",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "zerocopy-derive"
1289
+ version = "0.8.50"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
1292
+ dependencies = [
1293
+ "proc-macro2",
1294
+ "quote",
1295
+ "syn",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "zerofrom"
1300
+ version = "0.1.8"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1303
+ dependencies = [
1304
+ "zerofrom-derive",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "zerofrom-derive"
1309
+ version = "0.1.7"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1312
+ dependencies = [
1313
+ "proc-macro2",
1314
+ "quote",
1315
+ "syn",
1316
+ "synstructure",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "zerotrie"
1321
+ version = "0.2.4"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1324
+ dependencies = [
1325
+ "displaydoc",
1326
+ "yoke",
1327
+ "zerofrom",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "zerovec"
1332
+ version = "0.11.6"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1335
+ dependencies = [
1336
+ "yoke",
1337
+ "zerofrom",
1338
+ "zerovec-derive",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "zerovec-derive"
1343
+ version = "0.11.3"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1346
+ dependencies = [
1347
+ "proc-macro2",
1348
+ "quote",
1349
+ "syn",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "zmij"
1354
+ version = "1.0.21"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"