cpex-rate-limiter 0.0.1__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 (30) hide show
  1. cpex_rate_limiter-0.0.1/Cargo.lock +2027 -0
  2. cpex_rate_limiter-0.0.1/Cargo.toml +45 -0
  3. cpex_rate_limiter-0.0.1/Makefile +146 -0
  4. cpex_rate_limiter-0.0.1/PKG-INFO +198 -0
  5. cpex_rate_limiter-0.0.1/README.md +182 -0
  6. cpex_rate_limiter-0.0.1/benches/rate_limiter.rs +244 -0
  7. cpex_rate_limiter-0.0.1/cpex_rate_limiter/__init__.py +11 -0
  8. cpex_rate_limiter-0.0.1/cpex_rate_limiter/__init__.pyi +8 -0
  9. cpex_rate_limiter-0.0.1/cpex_rate_limiter/plugin-manifest.yaml +10 -0
  10. cpex_rate_limiter-0.0.1/cpex_rate_limiter/rate_limiter.py +369 -0
  11. cpex_rate_limiter-0.0.1/cpex_rate_limiter/rate_limiter_rust/__init__.pyi +127 -0
  12. cpex_rate_limiter-0.0.1/deny.toml +27 -0
  13. cpex_rate_limiter-0.0.1/pyproject.toml +39 -0
  14. cpex_rate_limiter-0.0.1/src/bin/stub_gen.rs +13 -0
  15. cpex_rate_limiter-0.0.1/src/clock.rs +193 -0
  16. cpex_rate_limiter-0.0.1/src/config.rs +235 -0
  17. cpex_rate_limiter-0.0.1/src/engine.rs +553 -0
  18. cpex_rate_limiter-0.0.1/src/lib.rs +36 -0
  19. cpex_rate_limiter-0.0.1/src/memory.rs +705 -0
  20. cpex_rate_limiter-0.0.1/src/redis_backend.rs +555 -0
  21. cpex_rate_limiter-0.0.1/src/types.rs +273 -0
  22. cpex_rate_limiter-0.0.1/tests/conftest.py +12 -0
  23. cpex_rate_limiter-0.0.1/tests/mcpgateway_mock/__init__.py +0 -0
  24. cpex_rate_limiter-0.0.1/tests/mcpgateway_mock/plugins/__init__.py +0 -0
  25. cpex_rate_limiter-0.0.1/tests/mcpgateway_mock/plugins/framework.py +72 -0
  26. cpex_rate_limiter-0.0.1/tests/test_config.py +37 -0
  27. cpex_rate_limiter-0.0.1/tests/test_extract_user_identity.py +42 -0
  28. cpex_rate_limiter-0.0.1/tests/test_parse_rate.py +57 -0
  29. cpex_rate_limiter-0.0.1/tests/test_plugin.py +293 -0
  30. cpex_rate_limiter-0.0.1/uv.lock +264 -0
@@ -0,0 +1,2027 @@
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 = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "android_system_properties"
25
+ version = "0.1.5"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
28
+ dependencies = [
29
+ "libc",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "anes"
34
+ version = "0.1.6"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.14"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
43
+
44
+ [[package]]
45
+ name = "anyhow"
46
+ version = "1.0.102"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
49
+
50
+ [[package]]
51
+ name = "arc-swap"
52
+ version = "1.9.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "a07d1f37ff60921c83bdfc7407723bdefe89b44b98a9b772f225c8f9d67141a6"
55
+ dependencies = [
56
+ "rustversion",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "async-trait"
61
+ version = "0.1.89"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
64
+ dependencies = [
65
+ "proc-macro2",
66
+ "quote",
67
+ "syn",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "autocfg"
72
+ version = "1.5.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
75
+
76
+ [[package]]
77
+ name = "bitflags"
78
+ version = "2.11.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
81
+
82
+ [[package]]
83
+ name = "bumpalo"
84
+ version = "3.20.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
87
+
88
+ [[package]]
89
+ name = "bytes"
90
+ version = "1.11.1"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
93
+
94
+ [[package]]
95
+ name = "cast"
96
+ version = "0.3.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
99
+
100
+ [[package]]
101
+ name = "cc"
102
+ version = "1.2.57"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
105
+ dependencies = [
106
+ "find-msvc-tools",
107
+ "shlex",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "cfg-if"
112
+ version = "1.0.4"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
115
+
116
+ [[package]]
117
+ name = "chrono"
118
+ version = "0.4.44"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
121
+ dependencies = [
122
+ "iana-time-zone",
123
+ "js-sys",
124
+ "num-traits",
125
+ "wasm-bindgen",
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.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
161
+ dependencies = [
162
+ "clap_builder",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "clap_builder"
167
+ version = "4.6.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
170
+ dependencies = [
171
+ "anstyle",
172
+ "clap_lex",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "clap_lex"
177
+ version = "1.1.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
180
+
181
+ [[package]]
182
+ name = "combine"
183
+ version = "4.6.7"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
186
+ dependencies = [
187
+ "bytes",
188
+ "futures-core",
189
+ "memchr",
190
+ "pin-project-lite",
191
+ "tokio",
192
+ "tokio-util",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "core-foundation-sys"
197
+ version = "0.8.7"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
200
+
201
+ [[package]]
202
+ name = "criterion"
203
+ version = "0.8.2"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
206
+ dependencies = [
207
+ "alloca",
208
+ "anes",
209
+ "cast",
210
+ "ciborium",
211
+ "clap",
212
+ "criterion-plot",
213
+ "itertools 0.13.0",
214
+ "num-traits",
215
+ "oorandom",
216
+ "page_size",
217
+ "plotters",
218
+ "rayon",
219
+ "regex",
220
+ "serde",
221
+ "serde_json",
222
+ "tinytemplate",
223
+ "walkdir",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "criterion-plot"
228
+ version = "0.8.2"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
231
+ dependencies = [
232
+ "cast",
233
+ "itertools 0.13.0",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "crossbeam-deque"
238
+ version = "0.8.6"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
241
+ dependencies = [
242
+ "crossbeam-epoch",
243
+ "crossbeam-utils",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "crossbeam-epoch"
248
+ version = "0.9.18"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
251
+ dependencies = [
252
+ "crossbeam-utils",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "crossbeam-utils"
257
+ version = "0.8.21"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
260
+
261
+ [[package]]
262
+ name = "crunchy"
263
+ version = "0.2.4"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
266
+
267
+ [[package]]
268
+ name = "deranged"
269
+ version = "0.5.8"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
272
+ dependencies = [
273
+ "powerfmt",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "displaydoc"
278
+ version = "0.2.5"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
281
+ dependencies = [
282
+ "proc-macro2",
283
+ "quote",
284
+ "syn",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "either"
289
+ version = "1.15.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
292
+
293
+ [[package]]
294
+ name = "equivalent"
295
+ version = "1.0.2"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
298
+
299
+ [[package]]
300
+ name = "find-msvc-tools"
301
+ version = "0.1.9"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
304
+
305
+ [[package]]
306
+ name = "form_urlencoded"
307
+ version = "1.2.2"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
310
+ dependencies = [
311
+ "percent-encoding",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "futures-channel"
316
+ version = "0.3.32"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
319
+ dependencies = [
320
+ "futures-core",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "futures-core"
325
+ version = "0.3.32"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
328
+
329
+ [[package]]
330
+ name = "futures-macro"
331
+ version = "0.3.32"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
334
+ dependencies = [
335
+ "proc-macro2",
336
+ "quote",
337
+ "syn",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "futures-sink"
342
+ version = "0.3.32"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
345
+
346
+ [[package]]
347
+ name = "futures-task"
348
+ version = "0.3.32"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
351
+
352
+ [[package]]
353
+ name = "futures-util"
354
+ version = "0.3.32"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
357
+ dependencies = [
358
+ "futures-core",
359
+ "futures-macro",
360
+ "futures-sink",
361
+ "futures-task",
362
+ "pin-project-lite",
363
+ "slab",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "getopts"
368
+ version = "0.2.24"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
371
+ dependencies = [
372
+ "unicode-width",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "getrandom"
377
+ version = "0.2.17"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
380
+ dependencies = [
381
+ "cfg-if",
382
+ "libc",
383
+ "wasi",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "half"
388
+ version = "2.7.1"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
391
+ dependencies = [
392
+ "cfg-if",
393
+ "crunchy",
394
+ "zerocopy",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "hashbrown"
399
+ version = "0.16.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
402
+
403
+ [[package]]
404
+ name = "heck"
405
+ version = "0.5.0"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
408
+
409
+ [[package]]
410
+ name = "iana-time-zone"
411
+ version = "0.1.65"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
414
+ dependencies = [
415
+ "android_system_properties",
416
+ "core-foundation-sys",
417
+ "iana-time-zone-haiku",
418
+ "js-sys",
419
+ "log",
420
+ "wasm-bindgen",
421
+ "windows-core",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "iana-time-zone-haiku"
426
+ version = "0.1.2"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
429
+ dependencies = [
430
+ "cc",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "icu_collections"
435
+ version = "2.1.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
438
+ dependencies = [
439
+ "displaydoc",
440
+ "potential_utf",
441
+ "yoke",
442
+ "zerofrom",
443
+ "zerovec",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "icu_locale_core"
448
+ version = "2.1.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
451
+ dependencies = [
452
+ "displaydoc",
453
+ "litemap",
454
+ "tinystr",
455
+ "writeable",
456
+ "zerovec",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "icu_normalizer"
461
+ version = "2.1.1"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
464
+ dependencies = [
465
+ "icu_collections",
466
+ "icu_normalizer_data",
467
+ "icu_properties",
468
+ "icu_provider",
469
+ "smallvec",
470
+ "zerovec",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "icu_normalizer_data"
475
+ version = "2.1.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
478
+
479
+ [[package]]
480
+ name = "icu_properties"
481
+ version = "2.1.2"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
484
+ dependencies = [
485
+ "icu_collections",
486
+ "icu_locale_core",
487
+ "icu_properties_data",
488
+ "icu_provider",
489
+ "zerotrie",
490
+ "zerovec",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "icu_properties_data"
495
+ version = "2.1.2"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
498
+
499
+ [[package]]
500
+ name = "icu_provider"
501
+ version = "2.1.1"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
504
+ dependencies = [
505
+ "displaydoc",
506
+ "icu_locale_core",
507
+ "writeable",
508
+ "yoke",
509
+ "zerofrom",
510
+ "zerotrie",
511
+ "zerovec",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "idna"
516
+ version = "1.1.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
519
+ dependencies = [
520
+ "idna_adapter",
521
+ "smallvec",
522
+ "utf8_iter",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "idna_adapter"
527
+ version = "1.2.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
530
+ dependencies = [
531
+ "icu_normalizer",
532
+ "icu_properties",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "indexmap"
537
+ version = "2.13.0"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
540
+ dependencies = [
541
+ "equivalent",
542
+ "hashbrown",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "inventory"
547
+ version = "0.3.22"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
550
+ dependencies = [
551
+ "rustversion",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "is-macro"
556
+ version = "0.3.7"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
559
+ dependencies = [
560
+ "heck",
561
+ "proc-macro2",
562
+ "quote",
563
+ "syn",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "itertools"
568
+ version = "0.11.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
571
+ dependencies = [
572
+ "either",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "itertools"
577
+ version = "0.13.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
580
+ dependencies = [
581
+ "either",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "itertools"
586
+ version = "0.14.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
589
+ dependencies = [
590
+ "either",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "itoa"
595
+ version = "1.0.18"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
598
+
599
+ [[package]]
600
+ name = "js-sys"
601
+ version = "0.3.91"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
604
+ dependencies = [
605
+ "once_cell",
606
+ "wasm-bindgen",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "lalrpop-util"
611
+ version = "0.20.2"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
614
+
615
+ [[package]]
616
+ name = "libc"
617
+ version = "0.2.183"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
620
+
621
+ [[package]]
622
+ name = "litemap"
623
+ version = "0.8.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
626
+
627
+ [[package]]
628
+ name = "lock_api"
629
+ version = "0.4.14"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
632
+ dependencies = [
633
+ "scopeguard",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "log"
638
+ version = "0.4.29"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
641
+
642
+ [[package]]
643
+ name = "maplit"
644
+ version = "1.0.2"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
647
+
648
+ [[package]]
649
+ name = "matrixmultiply"
650
+ version = "0.3.10"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
653
+ dependencies = [
654
+ "autocfg",
655
+ "rawpointer",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "memchr"
660
+ version = "2.8.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
663
+
664
+ [[package]]
665
+ name = "mio"
666
+ version = "1.1.1"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
669
+ dependencies = [
670
+ "libc",
671
+ "wasi",
672
+ "windows-sys 0.61.2",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "ndarray"
677
+ version = "0.17.2"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
680
+ dependencies = [
681
+ "matrixmultiply",
682
+ "num-complex",
683
+ "num-integer",
684
+ "num-traits",
685
+ "portable-atomic",
686
+ "portable-atomic-util",
687
+ "rawpointer",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "num-bigint"
692
+ version = "0.4.6"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
695
+ dependencies = [
696
+ "num-integer",
697
+ "num-traits",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "num-complex"
702
+ version = "0.4.6"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
705
+ dependencies = [
706
+ "num-traits",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "num-conv"
711
+ version = "0.2.0"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
714
+
715
+ [[package]]
716
+ name = "num-integer"
717
+ version = "0.1.46"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
720
+ dependencies = [
721
+ "num-traits",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "num-traits"
726
+ version = "0.2.19"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
729
+ dependencies = [
730
+ "autocfg",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "numpy"
735
+ version = "0.28.0"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
738
+ dependencies = [
739
+ "libc",
740
+ "ndarray",
741
+ "num-complex",
742
+ "num-integer",
743
+ "num-traits",
744
+ "pyo3",
745
+ "pyo3-build-config",
746
+ "rustc-hash 2.1.1",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "once_cell"
751
+ version = "1.21.4"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
754
+
755
+ [[package]]
756
+ name = "oorandom"
757
+ version = "11.1.5"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
760
+
761
+ [[package]]
762
+ name = "ordered-float"
763
+ version = "5.1.0"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
766
+ dependencies = [
767
+ "num-traits",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "page_size"
772
+ version = "0.6.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
775
+ dependencies = [
776
+ "libc",
777
+ "winapi",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "parking_lot"
782
+ version = "0.12.5"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
785
+ dependencies = [
786
+ "lock_api",
787
+ "parking_lot_core",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "parking_lot_core"
792
+ version = "0.9.12"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
795
+ dependencies = [
796
+ "cfg-if",
797
+ "libc",
798
+ "redox_syscall",
799
+ "smallvec",
800
+ "windows-link",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "percent-encoding"
805
+ version = "2.3.2"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
808
+
809
+ [[package]]
810
+ name = "phf"
811
+ version = "0.11.3"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
814
+ dependencies = [
815
+ "phf_shared",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "phf_codegen"
820
+ version = "0.11.3"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
823
+ dependencies = [
824
+ "phf_generator",
825
+ "phf_shared",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "phf_generator"
830
+ version = "0.11.3"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
833
+ dependencies = [
834
+ "phf_shared",
835
+ "rand",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "phf_shared"
840
+ version = "0.11.3"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
843
+ dependencies = [
844
+ "siphasher",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "pin-project-lite"
849
+ version = "0.2.17"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
852
+
853
+ [[package]]
854
+ name = "plotters"
855
+ version = "0.3.7"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
858
+ dependencies = [
859
+ "num-traits",
860
+ "plotters-backend",
861
+ "plotters-svg",
862
+ "wasm-bindgen",
863
+ "web-sys",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "plotters-backend"
868
+ version = "0.3.7"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
871
+
872
+ [[package]]
873
+ name = "plotters-svg"
874
+ version = "0.3.7"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
877
+ dependencies = [
878
+ "plotters-backend",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "portable-atomic"
883
+ version = "1.13.1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
886
+
887
+ [[package]]
888
+ name = "portable-atomic-util"
889
+ version = "0.2.6"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
892
+ dependencies = [
893
+ "portable-atomic",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "potential_utf"
898
+ version = "0.1.4"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
901
+ dependencies = [
902
+ "zerovec",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "powerfmt"
907
+ version = "0.2.0"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
910
+
911
+ [[package]]
912
+ name = "ppv-lite86"
913
+ version = "0.2.21"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
916
+ dependencies = [
917
+ "zerocopy",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "proc-macro2"
922
+ version = "1.0.106"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
925
+ dependencies = [
926
+ "unicode-ident",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "pyo3"
931
+ version = "0.28.2"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
934
+ dependencies = [
935
+ "libc",
936
+ "once_cell",
937
+ "portable-atomic",
938
+ "pyo3-build-config",
939
+ "pyo3-ffi",
940
+ "pyo3-macros",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "pyo3-async-runtimes"
945
+ version = "0.28.0"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
948
+ dependencies = [
949
+ "futures-channel",
950
+ "futures-util",
951
+ "once_cell",
952
+ "pin-project-lite",
953
+ "pyo3",
954
+ "tokio",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "pyo3-build-config"
959
+ version = "0.28.2"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
962
+ dependencies = [
963
+ "target-lexicon",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "pyo3-ffi"
968
+ version = "0.28.2"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
971
+ dependencies = [
972
+ "libc",
973
+ "pyo3-build-config",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "pyo3-log"
978
+ version = "0.13.3"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "26c2ec80932c5c3b2d4fbc578c9b56b2d4502098587edb8bef5b6bfcad43682e"
981
+ dependencies = [
982
+ "arc-swap",
983
+ "log",
984
+ "pyo3",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "pyo3-macros"
989
+ version = "0.28.2"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
992
+ dependencies = [
993
+ "proc-macro2",
994
+ "pyo3-macros-backend",
995
+ "quote",
996
+ "syn",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "pyo3-macros-backend"
1001
+ version = "0.28.2"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
1004
+ dependencies = [
1005
+ "heck",
1006
+ "proc-macro2",
1007
+ "pyo3-build-config",
1008
+ "quote",
1009
+ "syn",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "pyo3-stub-gen"
1014
+ version = "0.19.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "b159f7704044f57d058f528a6f1f22a0a0a327dcb595c5fb38beae658e0338d6"
1017
+ dependencies = [
1018
+ "anyhow",
1019
+ "chrono",
1020
+ "either",
1021
+ "indexmap",
1022
+ "inventory",
1023
+ "itertools 0.14.0",
1024
+ "log",
1025
+ "maplit",
1026
+ "num-complex",
1027
+ "numpy",
1028
+ "ordered-float",
1029
+ "pyo3",
1030
+ "pyo3-stub-gen-derive",
1031
+ "rustpython-parser",
1032
+ "serde",
1033
+ "serde_json",
1034
+ "time",
1035
+ "toml",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "pyo3-stub-gen-derive"
1040
+ version = "0.19.0"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "a8c79e7c5b1fcec7c39ab186594658a971c59911eb6fbab5a5932cf2318534be"
1043
+ dependencies = [
1044
+ "heck",
1045
+ "indexmap",
1046
+ "proc-macro2",
1047
+ "quote",
1048
+ "rustpython-parser",
1049
+ "syn",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "quote"
1054
+ version = "1.0.45"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1057
+ dependencies = [
1058
+ "proc-macro2",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "rand"
1063
+ version = "0.8.5"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1066
+ dependencies = [
1067
+ "libc",
1068
+ "rand_chacha",
1069
+ "rand_core",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "rand_chacha"
1074
+ version = "0.3.1"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1077
+ dependencies = [
1078
+ "ppv-lite86",
1079
+ "rand_core",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "rand_core"
1084
+ version = "0.6.4"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1087
+ dependencies = [
1088
+ "getrandom",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "rate_limiter"
1093
+ version = "0.0.1"
1094
+ dependencies = [
1095
+ "criterion",
1096
+ "log",
1097
+ "parking_lot",
1098
+ "pyo3",
1099
+ "pyo3-async-runtimes",
1100
+ "pyo3-log",
1101
+ "pyo3-stub-gen",
1102
+ "redis",
1103
+ "thiserror",
1104
+ "tokio",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "rawpointer"
1109
+ version = "0.2.1"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1112
+
1113
+ [[package]]
1114
+ name = "rayon"
1115
+ version = "1.11.0"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1118
+ dependencies = [
1119
+ "either",
1120
+ "rayon-core",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "rayon-core"
1125
+ version = "1.13.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1128
+ dependencies = [
1129
+ "crossbeam-deque",
1130
+ "crossbeam-utils",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "redis"
1135
+ version = "0.27.6"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "09d8f99a4090c89cc489a94833c901ead69bfbf3877b4867d5482e321ee875bc"
1138
+ dependencies = [
1139
+ "arc-swap",
1140
+ "async-trait",
1141
+ "bytes",
1142
+ "combine",
1143
+ "futures-util",
1144
+ "itertools 0.13.0",
1145
+ "itoa",
1146
+ "num-bigint",
1147
+ "percent-encoding",
1148
+ "pin-project-lite",
1149
+ "ryu",
1150
+ "sha1_smol",
1151
+ "socket2 0.5.10",
1152
+ "tokio",
1153
+ "tokio-util",
1154
+ "url",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "redox_syscall"
1159
+ version = "0.5.18"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1162
+ dependencies = [
1163
+ "bitflags",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "regex"
1168
+ version = "1.12.3"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1171
+ dependencies = [
1172
+ "aho-corasick",
1173
+ "memchr",
1174
+ "regex-automata",
1175
+ "regex-syntax",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "regex-automata"
1180
+ version = "0.4.14"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1183
+ dependencies = [
1184
+ "aho-corasick",
1185
+ "memchr",
1186
+ "regex-syntax",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "regex-syntax"
1191
+ version = "0.8.10"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1194
+
1195
+ [[package]]
1196
+ name = "rustc-hash"
1197
+ version = "1.1.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1200
+
1201
+ [[package]]
1202
+ name = "rustc-hash"
1203
+ version = "2.1.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1206
+
1207
+ [[package]]
1208
+ name = "rustpython-ast"
1209
+ version = "0.4.0"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
1212
+ dependencies = [
1213
+ "is-macro",
1214
+ "num-bigint",
1215
+ "rustpython-parser-core",
1216
+ "static_assertions",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "rustpython-parser"
1221
+ version = "0.4.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
1224
+ dependencies = [
1225
+ "anyhow",
1226
+ "is-macro",
1227
+ "itertools 0.11.0",
1228
+ "lalrpop-util",
1229
+ "log",
1230
+ "num-bigint",
1231
+ "num-traits",
1232
+ "phf",
1233
+ "phf_codegen",
1234
+ "rustc-hash 1.1.0",
1235
+ "rustpython-ast",
1236
+ "rustpython-parser-core",
1237
+ "tiny-keccak",
1238
+ "unic-emoji-char",
1239
+ "unic-ucd-ident",
1240
+ "unicode_names2",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "rustpython-parser-core"
1245
+ version = "0.4.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
1248
+ dependencies = [
1249
+ "is-macro",
1250
+ "memchr",
1251
+ "rustpython-parser-vendored",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "rustpython-parser-vendored"
1256
+ version = "0.4.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
1259
+ dependencies = [
1260
+ "memchr",
1261
+ "once_cell",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "rustversion"
1266
+ version = "1.0.22"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1269
+
1270
+ [[package]]
1271
+ name = "ryu"
1272
+ version = "1.0.23"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1275
+
1276
+ [[package]]
1277
+ name = "same-file"
1278
+ version = "1.0.6"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1281
+ dependencies = [
1282
+ "winapi-util",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "scopeguard"
1287
+ version = "1.2.0"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1290
+
1291
+ [[package]]
1292
+ name = "serde"
1293
+ version = "1.0.228"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1296
+ dependencies = [
1297
+ "serde_core",
1298
+ "serde_derive",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "serde_core"
1303
+ version = "1.0.228"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1306
+ dependencies = [
1307
+ "serde_derive",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "serde_derive"
1312
+ version = "1.0.228"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1315
+ dependencies = [
1316
+ "proc-macro2",
1317
+ "quote",
1318
+ "syn",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "serde_json"
1323
+ version = "1.0.149"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1326
+ dependencies = [
1327
+ "itoa",
1328
+ "memchr",
1329
+ "serde",
1330
+ "serde_core",
1331
+ "zmij",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "serde_spanned"
1336
+ version = "1.0.4"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
1339
+ dependencies = [
1340
+ "serde_core",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "sha1_smol"
1345
+ version = "1.0.1"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
1348
+
1349
+ [[package]]
1350
+ name = "shlex"
1351
+ version = "1.3.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1354
+
1355
+ [[package]]
1356
+ name = "siphasher"
1357
+ version = "1.0.2"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1360
+
1361
+ [[package]]
1362
+ name = "slab"
1363
+ version = "0.4.12"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1366
+
1367
+ [[package]]
1368
+ name = "smallvec"
1369
+ version = "1.15.1"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1372
+
1373
+ [[package]]
1374
+ name = "socket2"
1375
+ version = "0.5.10"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1378
+ dependencies = [
1379
+ "libc",
1380
+ "windows-sys 0.52.0",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "socket2"
1385
+ version = "0.6.3"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1388
+ dependencies = [
1389
+ "libc",
1390
+ "windows-sys 0.61.2",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "stable_deref_trait"
1395
+ version = "1.2.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1398
+
1399
+ [[package]]
1400
+ name = "static_assertions"
1401
+ version = "1.1.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1404
+
1405
+ [[package]]
1406
+ name = "syn"
1407
+ version = "2.0.117"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1410
+ dependencies = [
1411
+ "proc-macro2",
1412
+ "quote",
1413
+ "unicode-ident",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "synstructure"
1418
+ version = "0.13.2"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1421
+ dependencies = [
1422
+ "proc-macro2",
1423
+ "quote",
1424
+ "syn",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "target-lexicon"
1429
+ version = "0.13.5"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1432
+
1433
+ [[package]]
1434
+ name = "thiserror"
1435
+ version = "2.0.18"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1438
+ dependencies = [
1439
+ "thiserror-impl",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "thiserror-impl"
1444
+ version = "2.0.18"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1447
+ dependencies = [
1448
+ "proc-macro2",
1449
+ "quote",
1450
+ "syn",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "time"
1455
+ version = "0.3.47"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1458
+ dependencies = [
1459
+ "deranged",
1460
+ "num-conv",
1461
+ "powerfmt",
1462
+ "serde_core",
1463
+ "time-core",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "time-core"
1468
+ version = "0.1.8"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1471
+
1472
+ [[package]]
1473
+ name = "tiny-keccak"
1474
+ version = "2.0.2"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1477
+ dependencies = [
1478
+ "crunchy",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "tinystr"
1483
+ version = "0.8.2"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1486
+ dependencies = [
1487
+ "displaydoc",
1488
+ "zerovec",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "tinytemplate"
1493
+ version = "1.2.1"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1496
+ dependencies = [
1497
+ "serde",
1498
+ "serde_json",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "tokio"
1503
+ version = "1.50.0"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1506
+ dependencies = [
1507
+ "bytes",
1508
+ "libc",
1509
+ "mio",
1510
+ "pin-project-lite",
1511
+ "socket2 0.6.3",
1512
+ "windows-sys 0.61.2",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "tokio-util"
1517
+ version = "0.7.18"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1520
+ dependencies = [
1521
+ "bytes",
1522
+ "futures-core",
1523
+ "futures-sink",
1524
+ "pin-project-lite",
1525
+ "tokio",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "toml"
1530
+ version = "1.0.7+spec-1.1.0"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "dd28d57d8a6f6e458bc0b8784f8fdcc4b99a437936056fa122cb234f18656a96"
1533
+ dependencies = [
1534
+ "indexmap",
1535
+ "serde_core",
1536
+ "serde_spanned",
1537
+ "toml_datetime",
1538
+ "toml_parser",
1539
+ "toml_writer",
1540
+ "winnow",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "toml_datetime"
1545
+ version = "1.0.1+spec-1.1.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9"
1548
+ dependencies = [
1549
+ "serde_core",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "toml_parser"
1554
+ version = "1.0.10+spec-1.1.0"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420"
1557
+ dependencies = [
1558
+ "winnow",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "toml_writer"
1563
+ version = "1.0.7+spec-1.1.0"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "f17aaa1c6e3dc22b1da4b6bba97d066e354c7945cac2f7852d4e4e7ca7a6b56d"
1566
+
1567
+ [[package]]
1568
+ name = "unic-char-property"
1569
+ version = "0.9.0"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
1572
+ dependencies = [
1573
+ "unic-char-range",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "unic-char-range"
1578
+ version = "0.9.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
1581
+
1582
+ [[package]]
1583
+ name = "unic-common"
1584
+ version = "0.9.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
1587
+
1588
+ [[package]]
1589
+ name = "unic-emoji-char"
1590
+ version = "0.9.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
1593
+ dependencies = [
1594
+ "unic-char-property",
1595
+ "unic-char-range",
1596
+ "unic-ucd-version",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "unic-ucd-ident"
1601
+ version = "0.9.0"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
1604
+ dependencies = [
1605
+ "unic-char-property",
1606
+ "unic-char-range",
1607
+ "unic-ucd-version",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "unic-ucd-version"
1612
+ version = "0.9.0"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
1615
+ dependencies = [
1616
+ "unic-common",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "unicode-ident"
1621
+ version = "1.0.24"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1624
+
1625
+ [[package]]
1626
+ name = "unicode-width"
1627
+ version = "0.2.2"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1630
+
1631
+ [[package]]
1632
+ name = "unicode_names2"
1633
+ version = "1.3.0"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
1636
+ dependencies = [
1637
+ "phf",
1638
+ "unicode_names2_generator",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "unicode_names2_generator"
1643
+ version = "1.3.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
1646
+ dependencies = [
1647
+ "getopts",
1648
+ "log",
1649
+ "phf_codegen",
1650
+ "rand",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "url"
1655
+ version = "2.5.8"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1658
+ dependencies = [
1659
+ "form_urlencoded",
1660
+ "idna",
1661
+ "percent-encoding",
1662
+ "serde",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "utf8_iter"
1667
+ version = "1.0.4"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1670
+
1671
+ [[package]]
1672
+ name = "walkdir"
1673
+ version = "2.5.0"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1676
+ dependencies = [
1677
+ "same-file",
1678
+ "winapi-util",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "wasi"
1683
+ version = "0.11.1+wasi-snapshot-preview1"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1686
+
1687
+ [[package]]
1688
+ name = "wasm-bindgen"
1689
+ version = "0.2.114"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1692
+ dependencies = [
1693
+ "cfg-if",
1694
+ "once_cell",
1695
+ "rustversion",
1696
+ "wasm-bindgen-macro",
1697
+ "wasm-bindgen-shared",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "wasm-bindgen-macro"
1702
+ version = "0.2.114"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
1705
+ dependencies = [
1706
+ "quote",
1707
+ "wasm-bindgen-macro-support",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "wasm-bindgen-macro-support"
1712
+ version = "0.2.114"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
1715
+ dependencies = [
1716
+ "bumpalo",
1717
+ "proc-macro2",
1718
+ "quote",
1719
+ "syn",
1720
+ "wasm-bindgen-shared",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "wasm-bindgen-shared"
1725
+ version = "0.2.114"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
1728
+ dependencies = [
1729
+ "unicode-ident",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "web-sys"
1734
+ version = "0.3.91"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
1737
+ dependencies = [
1738
+ "js-sys",
1739
+ "wasm-bindgen",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "winapi"
1744
+ version = "0.3.9"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1747
+ dependencies = [
1748
+ "winapi-i686-pc-windows-gnu",
1749
+ "winapi-x86_64-pc-windows-gnu",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "winapi-i686-pc-windows-gnu"
1754
+ version = "0.4.0"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1757
+
1758
+ [[package]]
1759
+ name = "winapi-util"
1760
+ version = "0.1.11"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1763
+ dependencies = [
1764
+ "windows-sys 0.61.2",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "winapi-x86_64-pc-windows-gnu"
1769
+ version = "0.4.0"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1772
+
1773
+ [[package]]
1774
+ name = "windows-core"
1775
+ version = "0.62.2"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1778
+ dependencies = [
1779
+ "windows-implement",
1780
+ "windows-interface",
1781
+ "windows-link",
1782
+ "windows-result",
1783
+ "windows-strings",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "windows-implement"
1788
+ version = "0.60.2"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1791
+ dependencies = [
1792
+ "proc-macro2",
1793
+ "quote",
1794
+ "syn",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "windows-interface"
1799
+ version = "0.59.3"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1802
+ dependencies = [
1803
+ "proc-macro2",
1804
+ "quote",
1805
+ "syn",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "windows-link"
1810
+ version = "0.2.1"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1813
+
1814
+ [[package]]
1815
+ name = "windows-result"
1816
+ version = "0.4.1"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1819
+ dependencies = [
1820
+ "windows-link",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "windows-strings"
1825
+ version = "0.5.1"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1828
+ dependencies = [
1829
+ "windows-link",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "windows-sys"
1834
+ version = "0.52.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1837
+ dependencies = [
1838
+ "windows-targets",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "windows-sys"
1843
+ version = "0.61.2"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1846
+ dependencies = [
1847
+ "windows-link",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "windows-targets"
1852
+ version = "0.52.6"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1855
+ dependencies = [
1856
+ "windows_aarch64_gnullvm",
1857
+ "windows_aarch64_msvc",
1858
+ "windows_i686_gnu",
1859
+ "windows_i686_gnullvm",
1860
+ "windows_i686_msvc",
1861
+ "windows_x86_64_gnu",
1862
+ "windows_x86_64_gnullvm",
1863
+ "windows_x86_64_msvc",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "windows_aarch64_gnullvm"
1868
+ version = "0.52.6"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1871
+
1872
+ [[package]]
1873
+ name = "windows_aarch64_msvc"
1874
+ version = "0.52.6"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1877
+
1878
+ [[package]]
1879
+ name = "windows_i686_gnu"
1880
+ version = "0.52.6"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1883
+
1884
+ [[package]]
1885
+ name = "windows_i686_gnullvm"
1886
+ version = "0.52.6"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1889
+
1890
+ [[package]]
1891
+ name = "windows_i686_msvc"
1892
+ version = "0.52.6"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1895
+
1896
+ [[package]]
1897
+ name = "windows_x86_64_gnu"
1898
+ version = "0.52.6"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1901
+
1902
+ [[package]]
1903
+ name = "windows_x86_64_gnullvm"
1904
+ version = "0.52.6"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1907
+
1908
+ [[package]]
1909
+ name = "windows_x86_64_msvc"
1910
+ version = "0.52.6"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1913
+
1914
+ [[package]]
1915
+ name = "winnow"
1916
+ version = "1.0.0"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
1919
+
1920
+ [[package]]
1921
+ name = "writeable"
1922
+ version = "0.6.2"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1925
+
1926
+ [[package]]
1927
+ name = "yoke"
1928
+ version = "0.8.1"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1931
+ dependencies = [
1932
+ "stable_deref_trait",
1933
+ "yoke-derive",
1934
+ "zerofrom",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "yoke-derive"
1939
+ version = "0.8.1"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1942
+ dependencies = [
1943
+ "proc-macro2",
1944
+ "quote",
1945
+ "syn",
1946
+ "synstructure",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "zerocopy"
1951
+ version = "0.8.47"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
1954
+ dependencies = [
1955
+ "zerocopy-derive",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "zerocopy-derive"
1960
+ version = "0.8.47"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
1963
+ dependencies = [
1964
+ "proc-macro2",
1965
+ "quote",
1966
+ "syn",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "zerofrom"
1971
+ version = "0.1.6"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1974
+ dependencies = [
1975
+ "zerofrom-derive",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "zerofrom-derive"
1980
+ version = "0.1.6"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1983
+ dependencies = [
1984
+ "proc-macro2",
1985
+ "quote",
1986
+ "syn",
1987
+ "synstructure",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "zerotrie"
1992
+ version = "0.2.3"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1995
+ dependencies = [
1996
+ "displaydoc",
1997
+ "yoke",
1998
+ "zerofrom",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "zerovec"
2003
+ version = "0.11.5"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2006
+ dependencies = [
2007
+ "yoke",
2008
+ "zerofrom",
2009
+ "zerovec-derive",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "zerovec-derive"
2014
+ version = "0.11.2"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2017
+ dependencies = [
2018
+ "proc-macro2",
2019
+ "quote",
2020
+ "syn",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "zmij"
2025
+ version = "1.0.21"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"