quicknode-sdk 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. quicknode_sdk-0.1.0/Cargo.lock +3388 -0
  2. quicknode_sdk-0.1.0/Cargo.toml +26 -0
  3. quicknode_sdk-0.1.0/LICENSE +21 -0
  4. quicknode_sdk-0.1.0/PKG-INFO +1663 -0
  5. quicknode_sdk-0.1.0/crates/core/Cargo.toml +60 -0
  6. quicknode_sdk-0.1.0/crates/core/LICENSE +21 -0
  7. quicknode_sdk-0.1.0/crates/core/README.md +1722 -0
  8. quicknode_sdk-0.1.0/crates/core/examples/admin.rs +59 -0
  9. quicknode_sdk-0.1.0/crates/core/examples/admin_e2e.rs +920 -0
  10. quicknode_sdk-0.1.0/crates/core/examples/kvstore_e2e.rs +132 -0
  11. quicknode_sdk-0.1.0/crates/core/examples/streams.rs +44 -0
  12. quicknode_sdk-0.1.0/crates/core/examples/streams_e2e.rs +129 -0
  13. quicknode_sdk-0.1.0/crates/core/examples/webhooks_e2e.rs +111 -0
  14. quicknode_sdk-0.1.0/crates/core/src/admin/billing.rs +114 -0
  15. quicknode_sdk-0.1.0/crates/core/src/admin/bulk.rs +161 -0
  16. quicknode_sdk-0.1.0/crates/core/src/admin/chains.rs +49 -0
  17. quicknode_sdk-0.1.0/crates/core/src/admin/endpoint_metrics.rs +148 -0
  18. quicknode_sdk-0.1.0/crates/core/src/admin/endpoint_rate_limits.rs +183 -0
  19. quicknode_sdk-0.1.0/crates/core/src/admin/endpoint_security.rs +242 -0
  20. quicknode_sdk-0.1.0/crates/core/src/admin/endpoint_urls.rs +47 -0
  21. quicknode_sdk-0.1.0/crates/core/src/admin/endpoints.rs +436 -0
  22. quicknode_sdk-0.1.0/crates/core/src/admin/logs.rs +92 -0
  23. quicknode_sdk-0.1.0/crates/core/src/admin/mod.rs +3679 -0
  24. quicknode_sdk-0.1.0/crates/core/src/admin/tags.rs +91 -0
  25. quicknode_sdk-0.1.0/crates/core/src/admin/teams.rs +295 -0
  26. quicknode_sdk-0.1.0/crates/core/src/admin/usage.rs +236 -0
  27. quicknode_sdk-0.1.0/crates/core/src/config.rs +287 -0
  28. quicknode_sdk-0.1.0/crates/core/src/errors.rs +78 -0
  29. quicknode_sdk-0.1.0/crates/core/src/kvstore/mod.rs +1528 -0
  30. quicknode_sdk-0.1.0/crates/core/src/lib.rs +346 -0
  31. quicknode_sdk-0.1.0/crates/core/src/streams/mod.rs +1014 -0
  32. quicknode_sdk-0.1.0/crates/core/src/streams/stream.rs +936 -0
  33. quicknode_sdk-0.1.0/crates/core/src/webhooks/mod.rs +807 -0
  34. quicknode_sdk-0.1.0/crates/core/src/webhooks/webhook.rs +658 -0
  35. quicknode_sdk-0.1.0/crates/python/Cargo.toml +24 -0
  36. quicknode_sdk-0.1.0/crates/python/src/errors.rs +68 -0
  37. quicknode_sdk-0.1.0/crates/python/src/lib.rs +2560 -0
  38. quicknode_sdk-0.1.0/crates/python/src/streams_destination.rs +302 -0
  39. quicknode_sdk-0.1.0/crates/python/src/webhooks_template.rs +116 -0
  40. quicknode_sdk-0.1.0/pyproject.toml +39 -0
  41. quicknode_sdk-0.1.0/python/README.md +1638 -0
  42. quicknode_sdk-0.1.0/python/sdk/__init__.py +396 -0
  43. quicknode_sdk-0.1.0/python/sdk/__init__.pyi +398 -0
  44. quicknode_sdk-0.1.0/python/sdk/_core/__init__.pyi +6673 -0
  45. quicknode_sdk-0.1.0/python/sdk/init_manual_override.pyi +398 -0
  46. quicknode_sdk-0.1.0/python/sdk/py.typed +0 -0
@@ -0,0 +1,3388 @@
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 = "anyhow"
25
+ version = "1.0.102"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
28
+
29
+ [[package]]
30
+ name = "arraydeque"
31
+ version = "0.5.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
34
+
35
+ [[package]]
36
+ name = "assert-json-diff"
37
+ version = "2.0.2"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
40
+ dependencies = [
41
+ "serde",
42
+ "serde_json",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "async-trait"
47
+ version = "0.1.89"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
50
+ dependencies = [
51
+ "proc-macro2",
52
+ "quote",
53
+ "syn",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "atomic-waker"
58
+ version = "1.1.2"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
61
+
62
+ [[package]]
63
+ name = "autocfg"
64
+ version = "1.5.1"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
67
+
68
+ [[package]]
69
+ name = "aws-lc-rs"
70
+ version = "1.17.0"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
73
+ dependencies = [
74
+ "aws-lc-sys",
75
+ "zeroize",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "aws-lc-sys"
80
+ version = "0.41.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
83
+ dependencies = [
84
+ "cc",
85
+ "cmake",
86
+ "dunce",
87
+ "fs_extra",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "base64"
92
+ version = "0.22.1"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
95
+
96
+ [[package]]
97
+ name = "bindgen"
98
+ version = "0.72.1"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
101
+ dependencies = [
102
+ "bitflags",
103
+ "cexpr",
104
+ "clang-sys",
105
+ "itertools 0.13.0",
106
+ "proc-macro2",
107
+ "quote",
108
+ "regex",
109
+ "rustc-hash 2.1.2",
110
+ "shlex",
111
+ "syn",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bitflags"
116
+ version = "2.11.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
119
+ dependencies = [
120
+ "serde_core",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "block-buffer"
125
+ version = "0.10.4"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
128
+ dependencies = [
129
+ "generic-array",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "bon"
134
+ version = "3.9.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe"
137
+ dependencies = [
138
+ "bon-macros",
139
+ "rustversion",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "bon-macros"
144
+ version = "3.9.1"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c"
147
+ dependencies = [
148
+ "darling",
149
+ "ident_case",
150
+ "prettyplease",
151
+ "proc-macro2",
152
+ "quote",
153
+ "rustversion",
154
+ "syn",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "bumpalo"
159
+ version = "3.20.3"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
162
+
163
+ [[package]]
164
+ name = "bytes"
165
+ version = "1.11.1"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
168
+
169
+ [[package]]
170
+ name = "cc"
171
+ version = "1.2.62"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
174
+ dependencies = [
175
+ "find-msvc-tools",
176
+ "jobserver",
177
+ "libc",
178
+ "shlex",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "cexpr"
183
+ version = "0.6.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
186
+ dependencies = [
187
+ "nom",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "cfg-if"
192
+ version = "1.0.4"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
195
+
196
+ [[package]]
197
+ name = "cfg_aliases"
198
+ version = "0.2.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
201
+
202
+ [[package]]
203
+ name = "chrono"
204
+ version = "0.4.44"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
207
+ dependencies = [
208
+ "iana-time-zone",
209
+ "js-sys",
210
+ "num-traits",
211
+ "wasm-bindgen",
212
+ "windows-link",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "clang-sys"
217
+ version = "1.8.1"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
220
+ dependencies = [
221
+ "glob",
222
+ "libc",
223
+ "libloading 0.8.9",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "cmake"
228
+ version = "0.1.58"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
231
+ dependencies = [
232
+ "cc",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "combine"
237
+ version = "4.6.7"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
240
+ dependencies = [
241
+ "bytes",
242
+ "memchr",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "config"
247
+ version = "0.15.23"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "f316c6237b2d38be61949ecd15268a4c6ca32570079394a2444d9ce2c72a72d8"
250
+ dependencies = [
251
+ "async-trait",
252
+ "convert_case 0.6.0",
253
+ "json5",
254
+ "pathdiff",
255
+ "ron",
256
+ "rust-ini",
257
+ "serde-untagged",
258
+ "serde_core",
259
+ "serde_json",
260
+ "toml",
261
+ "winnow",
262
+ "yaml-rust2",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "const-random"
267
+ version = "0.1.18"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
270
+ dependencies = [
271
+ "const-random-macro",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "const-random-macro"
276
+ version = "0.1.16"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
279
+ dependencies = [
280
+ "getrandom 0.2.17",
281
+ "once_cell",
282
+ "tiny-keccak",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "convert_case"
287
+ version = "0.6.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
290
+ dependencies = [
291
+ "unicode-segmentation",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "convert_case"
296
+ version = "0.11.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
299
+ dependencies = [
300
+ "unicode-segmentation",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "core-foundation"
305
+ version = "0.10.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
308
+ dependencies = [
309
+ "core-foundation-sys",
310
+ "libc",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "core-foundation-sys"
315
+ version = "0.8.7"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
318
+
319
+ [[package]]
320
+ name = "cpufeatures"
321
+ version = "0.2.17"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
324
+ dependencies = [
325
+ "libc",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "crunchy"
330
+ version = "0.2.4"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
333
+
334
+ [[package]]
335
+ name = "crypto-common"
336
+ version = "0.1.7"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
339
+ dependencies = [
340
+ "generic-array",
341
+ "typenum",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "ctor"
346
+ version = "1.0.6"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "6d765eb1c0bda10d31e0ea185f5ee15da532d60b0912d2bd1441783439e749c5"
349
+
350
+ [[package]]
351
+ name = "darling"
352
+ version = "0.23.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
355
+ dependencies = [
356
+ "darling_core",
357
+ "darling_macro",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "darling_core"
362
+ version = "0.23.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
365
+ dependencies = [
366
+ "ident_case",
367
+ "proc-macro2",
368
+ "quote",
369
+ "strsim",
370
+ "syn",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "darling_macro"
375
+ version = "0.23.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
378
+ dependencies = [
379
+ "darling_core",
380
+ "quote",
381
+ "syn",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "deadpool"
386
+ version = "0.12.3"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
389
+ dependencies = [
390
+ "deadpool-runtime",
391
+ "lazy_static",
392
+ "num_cpus",
393
+ "tokio",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "deadpool-runtime"
398
+ version = "0.1.4"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
401
+
402
+ [[package]]
403
+ name = "deranged"
404
+ version = "0.5.8"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
407
+ dependencies = [
408
+ "powerfmt",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "digest"
413
+ version = "0.10.7"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
416
+ dependencies = [
417
+ "block-buffer",
418
+ "crypto-common",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "displaydoc"
423
+ version = "0.2.6"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
426
+ dependencies = [
427
+ "proc-macro2",
428
+ "quote",
429
+ "syn",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "dlv-list"
434
+ version = "0.5.2"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
437
+ dependencies = [
438
+ "const-random",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "dunce"
443
+ version = "1.0.5"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
446
+
447
+ [[package]]
448
+ name = "either"
449
+ version = "1.16.0"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
452
+
453
+ [[package]]
454
+ name = "encoding_rs"
455
+ version = "0.8.35"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
458
+ dependencies = [
459
+ "cfg-if",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "equivalent"
464
+ version = "1.0.2"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
467
+
468
+ [[package]]
469
+ name = "erased-serde"
470
+ version = "0.4.10"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
473
+ dependencies = [
474
+ "serde",
475
+ "serde_core",
476
+ "typeid",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "find-msvc-tools"
481
+ version = "0.1.9"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
484
+
485
+ [[package]]
486
+ name = "fnv"
487
+ version = "1.0.7"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
490
+
491
+ [[package]]
492
+ name = "foldhash"
493
+ version = "0.2.0"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
496
+
497
+ [[package]]
498
+ name = "form_urlencoded"
499
+ version = "1.2.2"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
502
+ dependencies = [
503
+ "percent-encoding",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "fs_extra"
508
+ version = "1.3.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
511
+
512
+ [[package]]
513
+ name = "futures"
514
+ version = "0.3.32"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
517
+ dependencies = [
518
+ "futures-channel",
519
+ "futures-core",
520
+ "futures-executor",
521
+ "futures-io",
522
+ "futures-sink",
523
+ "futures-task",
524
+ "futures-util",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "futures-channel"
529
+ version = "0.3.32"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
532
+ dependencies = [
533
+ "futures-core",
534
+ "futures-sink",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "futures-core"
539
+ version = "0.3.32"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
542
+
543
+ [[package]]
544
+ name = "futures-executor"
545
+ version = "0.3.32"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
548
+ dependencies = [
549
+ "futures-core",
550
+ "futures-task",
551
+ "futures-util",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "futures-io"
556
+ version = "0.3.32"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
559
+
560
+ [[package]]
561
+ name = "futures-macro"
562
+ version = "0.3.32"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
565
+ dependencies = [
566
+ "proc-macro2",
567
+ "quote",
568
+ "syn",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "futures-sink"
573
+ version = "0.3.32"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
576
+
577
+ [[package]]
578
+ name = "futures-task"
579
+ version = "0.3.32"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
582
+
583
+ [[package]]
584
+ name = "futures-util"
585
+ version = "0.3.32"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
588
+ dependencies = [
589
+ "futures-channel",
590
+ "futures-core",
591
+ "futures-io",
592
+ "futures-macro",
593
+ "futures-sink",
594
+ "futures-task",
595
+ "memchr",
596
+ "pin-project-lite",
597
+ "slab",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "generic-array"
602
+ version = "0.14.7"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
605
+ dependencies = [
606
+ "typenum",
607
+ "version_check",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "getopts"
612
+ version = "0.2.24"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
615
+ dependencies = [
616
+ "unicode-width",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "getrandom"
621
+ version = "0.2.17"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
624
+ dependencies = [
625
+ "cfg-if",
626
+ "js-sys",
627
+ "libc",
628
+ "wasi",
629
+ "wasm-bindgen",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "getrandom"
634
+ version = "0.3.4"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
637
+ dependencies = [
638
+ "cfg-if",
639
+ "js-sys",
640
+ "libc",
641
+ "r-efi",
642
+ "wasip2",
643
+ "wasm-bindgen",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "glob"
648
+ version = "0.3.3"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
651
+
652
+ [[package]]
653
+ name = "h2"
654
+ version = "0.4.14"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
657
+ dependencies = [
658
+ "atomic-waker",
659
+ "bytes",
660
+ "fnv",
661
+ "futures-core",
662
+ "futures-sink",
663
+ "http",
664
+ "indexmap",
665
+ "slab",
666
+ "tokio",
667
+ "tokio-util",
668
+ "tracing",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "hashbrown"
673
+ version = "0.14.5"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
676
+
677
+ [[package]]
678
+ name = "hashbrown"
679
+ version = "0.16.1"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
682
+ dependencies = [
683
+ "foldhash",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "hashbrown"
688
+ version = "0.17.1"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
691
+
692
+ [[package]]
693
+ name = "hashlink"
694
+ version = "0.11.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230"
697
+ dependencies = [
698
+ "hashbrown 0.16.1",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "heck"
703
+ version = "0.5.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
706
+
707
+ [[package]]
708
+ name = "hermit-abi"
709
+ version = "0.5.2"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
712
+
713
+ [[package]]
714
+ name = "http"
715
+ version = "1.4.1"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
718
+ dependencies = [
719
+ "bytes",
720
+ "itoa",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "http-body"
725
+ version = "1.0.1"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
728
+ dependencies = [
729
+ "bytes",
730
+ "http",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "http-body-util"
735
+ version = "0.1.3"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
738
+ dependencies = [
739
+ "bytes",
740
+ "futures-core",
741
+ "http",
742
+ "http-body",
743
+ "pin-project-lite",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "httparse"
748
+ version = "1.10.1"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
751
+
752
+ [[package]]
753
+ name = "httpdate"
754
+ version = "1.0.3"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
757
+
758
+ [[package]]
759
+ name = "hyper"
760
+ version = "1.10.0"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "eb92f162bf56536459fc83c79b974bb12837acfed43d6bc370a7916d0ae15ecc"
763
+ dependencies = [
764
+ "atomic-waker",
765
+ "bytes",
766
+ "futures-channel",
767
+ "futures-core",
768
+ "h2",
769
+ "http",
770
+ "http-body",
771
+ "httparse",
772
+ "httpdate",
773
+ "itoa",
774
+ "pin-project-lite",
775
+ "smallvec",
776
+ "tokio",
777
+ "want",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "hyper-rustls"
782
+ version = "0.27.9"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
785
+ dependencies = [
786
+ "http",
787
+ "hyper",
788
+ "hyper-util",
789
+ "rustls",
790
+ "tokio",
791
+ "tokio-rustls",
792
+ "tower-service",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "hyper-util"
797
+ version = "0.1.20"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
800
+ dependencies = [
801
+ "base64",
802
+ "bytes",
803
+ "futures-channel",
804
+ "futures-util",
805
+ "http",
806
+ "http-body",
807
+ "hyper",
808
+ "ipnet",
809
+ "libc",
810
+ "percent-encoding",
811
+ "pin-project-lite",
812
+ "socket2",
813
+ "tokio",
814
+ "tower-service",
815
+ "tracing",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "iana-time-zone"
820
+ version = "0.1.65"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
823
+ dependencies = [
824
+ "android_system_properties",
825
+ "core-foundation-sys",
826
+ "iana-time-zone-haiku",
827
+ "js-sys",
828
+ "log",
829
+ "wasm-bindgen",
830
+ "windows-core",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "iana-time-zone-haiku"
835
+ version = "0.1.2"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
838
+ dependencies = [
839
+ "cc",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "icu_collections"
844
+ version = "2.2.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
847
+ dependencies = [
848
+ "displaydoc",
849
+ "potential_utf",
850
+ "utf8_iter",
851
+ "yoke",
852
+ "zerofrom",
853
+ "zerovec",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "icu_locale_core"
858
+ version = "2.2.0"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
861
+ dependencies = [
862
+ "displaydoc",
863
+ "litemap",
864
+ "tinystr",
865
+ "writeable",
866
+ "zerovec",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "icu_normalizer"
871
+ version = "2.2.0"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
874
+ dependencies = [
875
+ "icu_collections",
876
+ "icu_normalizer_data",
877
+ "icu_properties",
878
+ "icu_provider",
879
+ "smallvec",
880
+ "zerovec",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "icu_normalizer_data"
885
+ version = "2.2.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
888
+
889
+ [[package]]
890
+ name = "icu_properties"
891
+ version = "2.2.0"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
894
+ dependencies = [
895
+ "icu_collections",
896
+ "icu_locale_core",
897
+ "icu_properties_data",
898
+ "icu_provider",
899
+ "zerotrie",
900
+ "zerovec",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "icu_properties_data"
905
+ version = "2.2.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
908
+
909
+ [[package]]
910
+ name = "icu_provider"
911
+ version = "2.2.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
914
+ dependencies = [
915
+ "displaydoc",
916
+ "icu_locale_core",
917
+ "writeable",
918
+ "yoke",
919
+ "zerofrom",
920
+ "zerotrie",
921
+ "zerovec",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "ident_case"
926
+ version = "1.0.1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
929
+
930
+ [[package]]
931
+ name = "idna"
932
+ version = "1.1.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
935
+ dependencies = [
936
+ "idna_adapter",
937
+ "smallvec",
938
+ "utf8_iter",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "idna_adapter"
943
+ version = "1.2.2"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
946
+ dependencies = [
947
+ "icu_normalizer",
948
+ "icu_properties",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "indexmap"
953
+ version = "2.14.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
956
+ dependencies = [
957
+ "equivalent",
958
+ "hashbrown 0.17.1",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "indoc"
963
+ version = "2.0.7"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
966
+ dependencies = [
967
+ "rustversion",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "inventory"
972
+ version = "0.3.24"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
975
+ dependencies = [
976
+ "rustversion",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "ipnet"
981
+ version = "2.12.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
984
+
985
+ [[package]]
986
+ name = "is-macro"
987
+ version = "0.3.7"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
990
+ dependencies = [
991
+ "heck",
992
+ "proc-macro2",
993
+ "quote",
994
+ "syn",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "itertools"
999
+ version = "0.11.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1002
+ dependencies = [
1003
+ "either",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "itertools"
1008
+ version = "0.13.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1011
+ dependencies = [
1012
+ "either",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "itertools"
1017
+ version = "0.14.0"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1020
+ dependencies = [
1021
+ "either",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "itoa"
1026
+ version = "1.0.18"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1029
+
1030
+ [[package]]
1031
+ name = "jni"
1032
+ version = "0.22.4"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1035
+ dependencies = [
1036
+ "cfg-if",
1037
+ "combine",
1038
+ "jni-macros",
1039
+ "jni-sys",
1040
+ "log",
1041
+ "simd_cesu8",
1042
+ "thiserror 2.0.18",
1043
+ "walkdir",
1044
+ "windows-link",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "jni-macros"
1049
+ version = "0.22.4"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1052
+ dependencies = [
1053
+ "proc-macro2",
1054
+ "quote",
1055
+ "rustc_version",
1056
+ "simd_cesu8",
1057
+ "syn",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "jni-sys"
1062
+ version = "0.4.1"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1065
+ dependencies = [
1066
+ "jni-sys-macros",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "jni-sys-macros"
1071
+ version = "0.4.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1074
+ dependencies = [
1075
+ "quote",
1076
+ "syn",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "jobserver"
1081
+ version = "0.1.34"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1084
+ dependencies = [
1085
+ "getrandom 0.3.4",
1086
+ "libc",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "js-sys"
1091
+ version = "0.3.99"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1094
+ dependencies = [
1095
+ "cfg-if",
1096
+ "futures-util",
1097
+ "once_cell",
1098
+ "wasm-bindgen",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "json5"
1103
+ version = "0.4.1"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
1106
+ dependencies = [
1107
+ "pest",
1108
+ "pest_derive",
1109
+ "serde",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "lalrpop-util"
1114
+ version = "0.20.2"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
1117
+
1118
+ [[package]]
1119
+ name = "lazy_static"
1120
+ version = "1.5.0"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1123
+
1124
+ [[package]]
1125
+ name = "libc"
1126
+ version = "0.2.186"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1129
+
1130
+ [[package]]
1131
+ name = "libloading"
1132
+ version = "0.8.9"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1135
+ dependencies = [
1136
+ "cfg-if",
1137
+ "windows-link",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "libloading"
1142
+ version = "0.9.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1145
+ dependencies = [
1146
+ "cfg-if",
1147
+ "windows-link",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "litemap"
1152
+ version = "0.8.2"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1155
+
1156
+ [[package]]
1157
+ name = "log"
1158
+ version = "0.4.30"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1161
+
1162
+ [[package]]
1163
+ name = "lru-slab"
1164
+ version = "0.1.2"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1167
+
1168
+ [[package]]
1169
+ name = "magnus"
1170
+ version = "0.8.2"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1173
+ dependencies = [
1174
+ "magnus-macros",
1175
+ "rb-sys",
1176
+ "rb-sys-env",
1177
+ "seq-macro",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "magnus-macros"
1182
+ version = "0.8.0"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1185
+ dependencies = [
1186
+ "proc-macro2",
1187
+ "quote",
1188
+ "syn",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "maplit"
1193
+ version = "1.0.2"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1196
+
1197
+ [[package]]
1198
+ name = "matrixmultiply"
1199
+ version = "0.3.10"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1202
+ dependencies = [
1203
+ "autocfg",
1204
+ "rawpointer",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "memchr"
1209
+ version = "2.8.1"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1212
+
1213
+ [[package]]
1214
+ name = "memoffset"
1215
+ version = "0.9.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1218
+ dependencies = [
1219
+ "autocfg",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "minimal-lexical"
1224
+ version = "0.2.1"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1227
+
1228
+ [[package]]
1229
+ name = "mio"
1230
+ version = "1.2.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1233
+ dependencies = [
1234
+ "libc",
1235
+ "wasi",
1236
+ "windows-sys 0.61.2",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "napi"
1241
+ version = "3.9.0"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "f1d395473824516f38dd1071a1a37bc57daa7be65b293ebba4ead5f7abb017a2"
1244
+ dependencies = [
1245
+ "bitflags",
1246
+ "ctor",
1247
+ "futures",
1248
+ "napi-build",
1249
+ "napi-sys",
1250
+ "nohash-hasher",
1251
+ "rustc-hash 2.1.2",
1252
+ "serde",
1253
+ "serde_json",
1254
+ "tokio",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "napi-build"
1259
+ version = "2.3.2"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
1262
+
1263
+ [[package]]
1264
+ name = "napi-derive"
1265
+ version = "3.5.6"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "89b3f766e04667e6da0e181e2da4f85475d5a6513b7cf6a80bea184e224a5b42"
1268
+ dependencies = [
1269
+ "convert_case 0.11.0",
1270
+ "ctor",
1271
+ "napi-derive-backend",
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "napi-derive-backend"
1279
+ version = "5.0.4"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
1282
+ dependencies = [
1283
+ "convert_case 0.11.0",
1284
+ "proc-macro2",
1285
+ "quote",
1286
+ "semver",
1287
+ "syn",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "napi-sys"
1292
+ version = "3.2.1"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
1295
+ dependencies = [
1296
+ "libloading 0.9.0",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "ndarray"
1301
+ version = "0.17.2"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1304
+ dependencies = [
1305
+ "matrixmultiply",
1306
+ "num-complex",
1307
+ "num-integer",
1308
+ "num-traits",
1309
+ "portable-atomic",
1310
+ "portable-atomic-util",
1311
+ "rawpointer",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "nohash-hasher"
1316
+ version = "0.2.0"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1319
+
1320
+ [[package]]
1321
+ name = "nom"
1322
+ version = "7.1.3"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1325
+ dependencies = [
1326
+ "memchr",
1327
+ "minimal-lexical",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "num-bigint"
1332
+ version = "0.4.6"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1335
+ dependencies = [
1336
+ "num-integer",
1337
+ "num-traits",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "num-complex"
1342
+ version = "0.4.6"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1345
+ dependencies = [
1346
+ "num-traits",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "num-conv"
1351
+ version = "0.2.2"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1354
+
1355
+ [[package]]
1356
+ name = "num-integer"
1357
+ version = "0.1.46"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1360
+ dependencies = [
1361
+ "num-traits",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "num-traits"
1366
+ version = "0.2.19"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1369
+ dependencies = [
1370
+ "autocfg",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "num_cpus"
1375
+ version = "1.17.0"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1378
+ dependencies = [
1379
+ "hermit-abi",
1380
+ "libc",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "numpy"
1385
+ version = "0.27.1"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "7aac2e6a6e4468ffa092ad43c39b81c79196c2bb773b8db4085f695efe3bba17"
1388
+ dependencies = [
1389
+ "libc",
1390
+ "ndarray",
1391
+ "num-complex",
1392
+ "num-integer",
1393
+ "num-traits",
1394
+ "pyo3",
1395
+ "pyo3-build-config",
1396
+ "rustc-hash 2.1.2",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "once_cell"
1401
+ version = "1.21.4"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1404
+
1405
+ [[package]]
1406
+ name = "openssl-probe"
1407
+ version = "0.2.1"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1410
+
1411
+ [[package]]
1412
+ name = "ordered-float"
1413
+ version = "5.3.0"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
1416
+ dependencies = [
1417
+ "num-traits",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "ordered-multimap"
1422
+ version = "0.7.3"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
1425
+ dependencies = [
1426
+ "dlv-list",
1427
+ "hashbrown 0.14.5",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "pathdiff"
1432
+ version = "0.2.3"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1435
+
1436
+ [[package]]
1437
+ name = "percent-encoding"
1438
+ version = "2.3.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1441
+
1442
+ [[package]]
1443
+ name = "pest"
1444
+ version = "2.8.6"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
1447
+ dependencies = [
1448
+ "memchr",
1449
+ "ucd-trie",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "pest_derive"
1454
+ version = "2.8.6"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
1457
+ dependencies = [
1458
+ "pest",
1459
+ "pest_generator",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "pest_generator"
1464
+ version = "2.8.6"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
1467
+ dependencies = [
1468
+ "pest",
1469
+ "pest_meta",
1470
+ "proc-macro2",
1471
+ "quote",
1472
+ "syn",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "pest_meta"
1477
+ version = "2.8.6"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1480
+ dependencies = [
1481
+ "pest",
1482
+ "sha2",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "phf"
1487
+ version = "0.11.3"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1490
+ dependencies = [
1491
+ "phf_shared",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "phf_codegen"
1496
+ version = "0.11.3"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1499
+ dependencies = [
1500
+ "phf_generator",
1501
+ "phf_shared",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "phf_generator"
1506
+ version = "0.11.3"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1509
+ dependencies = [
1510
+ "phf_shared",
1511
+ "rand 0.8.6",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "phf_shared"
1516
+ version = "0.11.3"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1519
+ dependencies = [
1520
+ "siphasher",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "pin-project-lite"
1525
+ version = "0.2.17"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1528
+
1529
+ [[package]]
1530
+ name = "portable-atomic"
1531
+ version = "1.13.1"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1534
+
1535
+ [[package]]
1536
+ name = "portable-atomic-util"
1537
+ version = "0.2.7"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1540
+ dependencies = [
1541
+ "portable-atomic",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "potential_utf"
1546
+ version = "0.1.5"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1549
+ dependencies = [
1550
+ "zerovec",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "powerfmt"
1555
+ version = "0.2.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1558
+
1559
+ [[package]]
1560
+ name = "ppv-lite86"
1561
+ version = "0.2.21"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1564
+ dependencies = [
1565
+ "zerocopy",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "prettyplease"
1570
+ version = "0.2.37"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1573
+ dependencies = [
1574
+ "proc-macro2",
1575
+ "syn",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "proc-macro2"
1580
+ version = "1.0.106"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1583
+ dependencies = [
1584
+ "unicode-ident",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "pyo3"
1589
+ version = "0.27.2"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1592
+ dependencies = [
1593
+ "indoc",
1594
+ "libc",
1595
+ "memoffset",
1596
+ "once_cell",
1597
+ "portable-atomic",
1598
+ "pyo3-build-config",
1599
+ "pyo3-ffi",
1600
+ "pyo3-macros",
1601
+ "unindent",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "pyo3-async-runtimes"
1606
+ version = "0.27.0"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd"
1609
+ dependencies = [
1610
+ "futures",
1611
+ "once_cell",
1612
+ "pin-project-lite",
1613
+ "pyo3",
1614
+ "tokio",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "pyo3-build-config"
1619
+ version = "0.27.2"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1622
+ dependencies = [
1623
+ "target-lexicon",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "pyo3-ffi"
1628
+ version = "0.27.2"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1631
+ dependencies = [
1632
+ "libc",
1633
+ "pyo3-build-config",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "pyo3-macros"
1638
+ version = "0.27.2"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1641
+ dependencies = [
1642
+ "proc-macro2",
1643
+ "pyo3-macros-backend",
1644
+ "quote",
1645
+ "syn",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "pyo3-macros-backend"
1650
+ version = "0.27.2"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1653
+ dependencies = [
1654
+ "heck",
1655
+ "proc-macro2",
1656
+ "pyo3-build-config",
1657
+ "quote",
1658
+ "syn",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "pyo3-stub-gen"
1663
+ version = "0.19.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "b159f7704044f57d058f528a6f1f22a0a0a327dcb595c5fb38beae658e0338d6"
1666
+ dependencies = [
1667
+ "anyhow",
1668
+ "chrono",
1669
+ "either",
1670
+ "indexmap",
1671
+ "inventory",
1672
+ "itertools 0.14.0",
1673
+ "log",
1674
+ "maplit",
1675
+ "num-complex",
1676
+ "numpy",
1677
+ "ordered-float",
1678
+ "pyo3",
1679
+ "pyo3-stub-gen-derive",
1680
+ "rustpython-parser",
1681
+ "serde",
1682
+ "serde_json",
1683
+ "time",
1684
+ "toml",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "pyo3-stub-gen-derive"
1689
+ version = "0.19.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "a8c79e7c5b1fcec7c39ab186594658a971c59911eb6fbab5a5932cf2318534be"
1692
+ dependencies = [
1693
+ "heck",
1694
+ "indexmap",
1695
+ "proc-macro2",
1696
+ "quote",
1697
+ "rustpython-parser",
1698
+ "syn",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "quicknode-sdk"
1703
+ version = "0.1.0"
1704
+ dependencies = [
1705
+ "bon",
1706
+ "config",
1707
+ "magnus",
1708
+ "napi",
1709
+ "napi-derive",
1710
+ "pyo3",
1711
+ "pyo3-async-runtimes",
1712
+ "pyo3-stub-gen",
1713
+ "reqwest",
1714
+ "secrecy",
1715
+ "serde",
1716
+ "serde_json",
1717
+ "thiserror 1.0.69",
1718
+ "tokio",
1719
+ "url",
1720
+ "wiremock",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "quinn"
1725
+ version = "0.11.9"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1728
+ dependencies = [
1729
+ "bytes",
1730
+ "cfg_aliases",
1731
+ "pin-project-lite",
1732
+ "quinn-proto",
1733
+ "quinn-udp",
1734
+ "rustc-hash 2.1.2",
1735
+ "rustls",
1736
+ "socket2",
1737
+ "thiserror 2.0.18",
1738
+ "tokio",
1739
+ "tracing",
1740
+ "web-time",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "quinn-proto"
1745
+ version = "0.11.14"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1748
+ dependencies = [
1749
+ "aws-lc-rs",
1750
+ "bytes",
1751
+ "getrandom 0.3.4",
1752
+ "lru-slab",
1753
+ "rand 0.9.4",
1754
+ "ring",
1755
+ "rustc-hash 2.1.2",
1756
+ "rustls",
1757
+ "rustls-pki-types",
1758
+ "slab",
1759
+ "thiserror 2.0.18",
1760
+ "tinyvec",
1761
+ "tracing",
1762
+ "web-time",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "quinn-udp"
1767
+ version = "0.5.14"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1770
+ dependencies = [
1771
+ "cfg_aliases",
1772
+ "libc",
1773
+ "once_cell",
1774
+ "socket2",
1775
+ "tracing",
1776
+ "windows-sys 0.60.2",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "quote"
1781
+ version = "1.0.45"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1784
+ dependencies = [
1785
+ "proc-macro2",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "r-efi"
1790
+ version = "5.3.0"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1793
+
1794
+ [[package]]
1795
+ name = "rand"
1796
+ version = "0.8.6"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1799
+ dependencies = [
1800
+ "libc",
1801
+ "rand_chacha 0.3.1",
1802
+ "rand_core 0.6.4",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "rand"
1807
+ version = "0.9.4"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1810
+ dependencies = [
1811
+ "rand_chacha 0.9.0",
1812
+ "rand_core 0.9.5",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "rand_chacha"
1817
+ version = "0.3.1"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1820
+ dependencies = [
1821
+ "ppv-lite86",
1822
+ "rand_core 0.6.4",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "rand_chacha"
1827
+ version = "0.9.0"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1830
+ dependencies = [
1831
+ "ppv-lite86",
1832
+ "rand_core 0.9.5",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "rand_core"
1837
+ version = "0.6.4"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1840
+ dependencies = [
1841
+ "getrandom 0.2.17",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "rand_core"
1846
+ version = "0.9.5"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1849
+ dependencies = [
1850
+ "getrandom 0.3.4",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "rawpointer"
1855
+ version = "0.2.1"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1858
+
1859
+ [[package]]
1860
+ name = "rb-sys"
1861
+ version = "0.9.128"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
1864
+ dependencies = [
1865
+ "rb-sys-build",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "rb-sys-build"
1870
+ version = "0.9.128"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
1873
+ dependencies = [
1874
+ "bindgen",
1875
+ "lazy_static",
1876
+ "proc-macro2",
1877
+ "quote",
1878
+ "regex",
1879
+ "shell-words",
1880
+ "syn",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "rb-sys-env"
1885
+ version = "0.2.3"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
1888
+
1889
+ [[package]]
1890
+ name = "regex"
1891
+ version = "1.12.3"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1894
+ dependencies = [
1895
+ "aho-corasick",
1896
+ "memchr",
1897
+ "regex-automata",
1898
+ "regex-syntax",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "regex-automata"
1903
+ version = "0.4.14"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1906
+ dependencies = [
1907
+ "aho-corasick",
1908
+ "memchr",
1909
+ "regex-syntax",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "regex-syntax"
1914
+ version = "0.8.10"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1917
+
1918
+ [[package]]
1919
+ name = "reqwest"
1920
+ version = "0.13.4"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
1923
+ dependencies = [
1924
+ "base64",
1925
+ "bytes",
1926
+ "futures-core",
1927
+ "h2",
1928
+ "http",
1929
+ "http-body",
1930
+ "http-body-util",
1931
+ "hyper",
1932
+ "hyper-rustls",
1933
+ "hyper-util",
1934
+ "js-sys",
1935
+ "log",
1936
+ "percent-encoding",
1937
+ "pin-project-lite",
1938
+ "quinn",
1939
+ "rustls",
1940
+ "rustls-pki-types",
1941
+ "rustls-platform-verifier",
1942
+ "serde",
1943
+ "serde_json",
1944
+ "serde_urlencoded",
1945
+ "sync_wrapper",
1946
+ "tokio",
1947
+ "tokio-rustls",
1948
+ "tower",
1949
+ "tower-http",
1950
+ "tower-service",
1951
+ "url",
1952
+ "wasm-bindgen",
1953
+ "wasm-bindgen-futures",
1954
+ "web-sys",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "ring"
1959
+ version = "0.17.14"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1962
+ dependencies = [
1963
+ "cc",
1964
+ "cfg-if",
1965
+ "getrandom 0.2.17",
1966
+ "libc",
1967
+ "untrusted",
1968
+ "windows-sys 0.52.0",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "ron"
1973
+ version = "0.12.1"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "4147b952f3f819eca0e99527022f7d6a8d05f111aeb0a62960c74eb283bec8fc"
1976
+ dependencies = [
1977
+ "bitflags",
1978
+ "once_cell",
1979
+ "serde",
1980
+ "serde_derive",
1981
+ "typeid",
1982
+ "unicode-ident",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "rust-ini"
1987
+ version = "0.21.3"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7"
1990
+ dependencies = [
1991
+ "cfg-if",
1992
+ "ordered-multimap",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "rustc-hash"
1997
+ version = "1.1.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2000
+
2001
+ [[package]]
2002
+ name = "rustc-hash"
2003
+ version = "2.1.2"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2006
+
2007
+ [[package]]
2008
+ name = "rustc_version"
2009
+ version = "0.4.1"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2012
+ dependencies = [
2013
+ "semver",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "rustls"
2018
+ version = "0.23.40"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
2021
+ dependencies = [
2022
+ "aws-lc-rs",
2023
+ "once_cell",
2024
+ "rustls-pki-types",
2025
+ "rustls-webpki",
2026
+ "subtle",
2027
+ "zeroize",
2028
+ ]
2029
+
2030
+ [[package]]
2031
+ name = "rustls-native-certs"
2032
+ version = "0.8.3"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2035
+ dependencies = [
2036
+ "openssl-probe",
2037
+ "rustls-pki-types",
2038
+ "schannel",
2039
+ "security-framework",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "rustls-pki-types"
2044
+ version = "1.14.1"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2047
+ dependencies = [
2048
+ "web-time",
2049
+ "zeroize",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "rustls-platform-verifier"
2054
+ version = "0.7.0"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2057
+ dependencies = [
2058
+ "core-foundation",
2059
+ "core-foundation-sys",
2060
+ "jni",
2061
+ "log",
2062
+ "once_cell",
2063
+ "rustls",
2064
+ "rustls-native-certs",
2065
+ "rustls-platform-verifier-android",
2066
+ "rustls-webpki",
2067
+ "security-framework",
2068
+ "security-framework-sys",
2069
+ "webpki-root-certs",
2070
+ "windows-sys 0.61.2",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "rustls-platform-verifier-android"
2075
+ version = "0.1.1"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2078
+
2079
+ [[package]]
2080
+ name = "rustls-webpki"
2081
+ version = "0.103.13"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2084
+ dependencies = [
2085
+ "aws-lc-rs",
2086
+ "ring",
2087
+ "rustls-pki-types",
2088
+ "untrusted",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "rustpython-ast"
2093
+ version = "0.4.0"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
2096
+ dependencies = [
2097
+ "is-macro",
2098
+ "num-bigint",
2099
+ "rustpython-parser-core",
2100
+ "static_assertions",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "rustpython-parser"
2105
+ version = "0.4.0"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
2108
+ dependencies = [
2109
+ "anyhow",
2110
+ "is-macro",
2111
+ "itertools 0.11.0",
2112
+ "lalrpop-util",
2113
+ "log",
2114
+ "num-bigint",
2115
+ "num-traits",
2116
+ "phf",
2117
+ "phf_codegen",
2118
+ "rustc-hash 1.1.0",
2119
+ "rustpython-ast",
2120
+ "rustpython-parser-core",
2121
+ "tiny-keccak",
2122
+ "unic-emoji-char",
2123
+ "unic-ucd-ident",
2124
+ "unicode_names2",
2125
+ ]
2126
+
2127
+ [[package]]
2128
+ name = "rustpython-parser-core"
2129
+ version = "0.4.0"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
2132
+ dependencies = [
2133
+ "is-macro",
2134
+ "memchr",
2135
+ "rustpython-parser-vendored",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "rustpython-parser-vendored"
2140
+ version = "0.4.0"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
2143
+ dependencies = [
2144
+ "memchr",
2145
+ "once_cell",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "rustversion"
2150
+ version = "1.0.22"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2153
+
2154
+ [[package]]
2155
+ name = "ryu"
2156
+ version = "1.0.23"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2159
+
2160
+ [[package]]
2161
+ name = "same-file"
2162
+ version = "1.0.6"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2165
+ dependencies = [
2166
+ "winapi-util",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "schannel"
2171
+ version = "0.1.29"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2174
+ dependencies = [
2175
+ "windows-sys 0.61.2",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "sdk-node"
2180
+ version = "0.1.0"
2181
+ dependencies = [
2182
+ "napi",
2183
+ "napi-build",
2184
+ "napi-derive",
2185
+ "quicknode-sdk",
2186
+ "serde_json",
2187
+ "tokio",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "sdk-python"
2192
+ version = "0.1.0"
2193
+ dependencies = [
2194
+ "pyo3",
2195
+ "pyo3-async-runtimes",
2196
+ "pyo3-stub-gen",
2197
+ "quicknode-sdk",
2198
+ "serde_json",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "sdk-python-stubs"
2203
+ version = "0.1.0"
2204
+ dependencies = [
2205
+ "pyo3-stub-gen",
2206
+ "sdk-python",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "sdk-ruby"
2211
+ version = "0.1.0"
2212
+ dependencies = [
2213
+ "magnus",
2214
+ "quicknode-sdk",
2215
+ "rb-sys-build",
2216
+ "serde",
2217
+ "serde_json",
2218
+ "serde_magnus",
2219
+ "tokio",
2220
+ ]
2221
+
2222
+ [[package]]
2223
+ name = "secrecy"
2224
+ version = "0.8.0"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
2227
+ dependencies = [
2228
+ "zeroize",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "security-framework"
2233
+ version = "3.7.0"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2236
+ dependencies = [
2237
+ "bitflags",
2238
+ "core-foundation",
2239
+ "core-foundation-sys",
2240
+ "libc",
2241
+ "security-framework-sys",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "security-framework-sys"
2246
+ version = "2.17.0"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2249
+ dependencies = [
2250
+ "core-foundation-sys",
2251
+ "libc",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "semver"
2256
+ version = "1.0.28"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2259
+
2260
+ [[package]]
2261
+ name = "seq-macro"
2262
+ version = "0.3.6"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2265
+
2266
+ [[package]]
2267
+ name = "serde"
2268
+ version = "1.0.228"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2271
+ dependencies = [
2272
+ "serde_core",
2273
+ "serde_derive",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "serde-untagged"
2278
+ version = "0.1.9"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
2281
+ dependencies = [
2282
+ "erased-serde",
2283
+ "serde",
2284
+ "serde_core",
2285
+ "typeid",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "serde_core"
2290
+ version = "1.0.228"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2293
+ dependencies = [
2294
+ "serde_derive",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "serde_derive"
2299
+ version = "1.0.228"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2302
+ dependencies = [
2303
+ "proc-macro2",
2304
+ "quote",
2305
+ "syn",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "serde_json"
2310
+ version = "1.0.150"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2313
+ dependencies = [
2314
+ "itoa",
2315
+ "memchr",
2316
+ "serde",
2317
+ "serde_core",
2318
+ "zmij",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "serde_magnus"
2323
+ version = "0.11.0"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
2326
+ dependencies = [
2327
+ "magnus",
2328
+ "serde",
2329
+ "tap",
2330
+ ]
2331
+
2332
+ [[package]]
2333
+ name = "serde_spanned"
2334
+ version = "1.1.1"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2337
+ dependencies = [
2338
+ "serde_core",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "serde_urlencoded"
2343
+ version = "0.7.1"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2346
+ dependencies = [
2347
+ "form_urlencoded",
2348
+ "itoa",
2349
+ "ryu",
2350
+ "serde",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "sha2"
2355
+ version = "0.10.9"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2358
+ dependencies = [
2359
+ "cfg-if",
2360
+ "cpufeatures",
2361
+ "digest",
2362
+ ]
2363
+
2364
+ [[package]]
2365
+ name = "shell-words"
2366
+ version = "1.1.1"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2369
+
2370
+ [[package]]
2371
+ name = "shlex"
2372
+ version = "1.3.0"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2375
+
2376
+ [[package]]
2377
+ name = "simd_cesu8"
2378
+ version = "1.1.1"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
2381
+ dependencies = [
2382
+ "rustc_version",
2383
+ "simdutf8",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "simdutf8"
2388
+ version = "0.1.5"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2391
+
2392
+ [[package]]
2393
+ name = "siphasher"
2394
+ version = "1.0.3"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2397
+
2398
+ [[package]]
2399
+ name = "slab"
2400
+ version = "0.4.12"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2403
+
2404
+ [[package]]
2405
+ name = "smallvec"
2406
+ version = "1.15.1"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2409
+
2410
+ [[package]]
2411
+ name = "socket2"
2412
+ version = "0.6.3"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2415
+ dependencies = [
2416
+ "libc",
2417
+ "windows-sys 0.61.2",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "stable_deref_trait"
2422
+ version = "1.2.1"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2425
+
2426
+ [[package]]
2427
+ name = "static_assertions"
2428
+ version = "1.1.0"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2431
+
2432
+ [[package]]
2433
+ name = "strsim"
2434
+ version = "0.11.1"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2437
+
2438
+ [[package]]
2439
+ name = "subtle"
2440
+ version = "2.6.1"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2443
+
2444
+ [[package]]
2445
+ name = "syn"
2446
+ version = "2.0.117"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2449
+ dependencies = [
2450
+ "proc-macro2",
2451
+ "quote",
2452
+ "unicode-ident",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "sync_wrapper"
2457
+ version = "1.0.2"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2460
+ dependencies = [
2461
+ "futures-core",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "synstructure"
2466
+ version = "0.13.2"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2469
+ dependencies = [
2470
+ "proc-macro2",
2471
+ "quote",
2472
+ "syn",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "tap"
2477
+ version = "1.0.1"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2480
+
2481
+ [[package]]
2482
+ name = "target-lexicon"
2483
+ version = "0.13.5"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2486
+
2487
+ [[package]]
2488
+ name = "thiserror"
2489
+ version = "1.0.69"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2492
+ dependencies = [
2493
+ "thiserror-impl 1.0.69",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "thiserror"
2498
+ version = "2.0.18"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2501
+ dependencies = [
2502
+ "thiserror-impl 2.0.18",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "thiserror-impl"
2507
+ version = "1.0.69"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2510
+ dependencies = [
2511
+ "proc-macro2",
2512
+ "quote",
2513
+ "syn",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "thiserror-impl"
2518
+ version = "2.0.18"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2521
+ dependencies = [
2522
+ "proc-macro2",
2523
+ "quote",
2524
+ "syn",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "time"
2529
+ version = "0.3.47"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2532
+ dependencies = [
2533
+ "deranged",
2534
+ "num-conv",
2535
+ "powerfmt",
2536
+ "serde_core",
2537
+ "time-core",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "time-core"
2542
+ version = "0.1.8"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2545
+
2546
+ [[package]]
2547
+ name = "tiny-keccak"
2548
+ version = "2.0.2"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2551
+ dependencies = [
2552
+ "crunchy",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "tinystr"
2557
+ version = "0.8.3"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2560
+ dependencies = [
2561
+ "displaydoc",
2562
+ "zerovec",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "tinyvec"
2567
+ version = "1.11.0"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2570
+ dependencies = [
2571
+ "tinyvec_macros",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "tinyvec_macros"
2576
+ version = "0.1.1"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2579
+
2580
+ [[package]]
2581
+ name = "tokio"
2582
+ version = "1.52.3"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2585
+ dependencies = [
2586
+ "bytes",
2587
+ "libc",
2588
+ "mio",
2589
+ "pin-project-lite",
2590
+ "socket2",
2591
+ "tokio-macros",
2592
+ "windows-sys 0.61.2",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "tokio-macros"
2597
+ version = "2.7.0"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2600
+ dependencies = [
2601
+ "proc-macro2",
2602
+ "quote",
2603
+ "syn",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "tokio-rustls"
2608
+ version = "0.26.4"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2611
+ dependencies = [
2612
+ "rustls",
2613
+ "tokio",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "tokio-util"
2618
+ version = "0.7.18"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2621
+ dependencies = [
2622
+ "bytes",
2623
+ "futures-core",
2624
+ "futures-sink",
2625
+ "pin-project-lite",
2626
+ "tokio",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "toml"
2631
+ version = "1.1.2+spec-1.1.0"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
2634
+ dependencies = [
2635
+ "indexmap",
2636
+ "serde_core",
2637
+ "serde_spanned",
2638
+ "toml_datetime",
2639
+ "toml_parser",
2640
+ "toml_writer",
2641
+ "winnow",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "toml_datetime"
2646
+ version = "1.1.1+spec-1.1.0"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2649
+ dependencies = [
2650
+ "serde_core",
2651
+ ]
2652
+
2653
+ [[package]]
2654
+ name = "toml_parser"
2655
+ version = "1.1.2+spec-1.1.0"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2658
+ dependencies = [
2659
+ "winnow",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "toml_writer"
2664
+ version = "1.1.1+spec-1.1.0"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2667
+
2668
+ [[package]]
2669
+ name = "tower"
2670
+ version = "0.5.3"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2673
+ dependencies = [
2674
+ "futures-core",
2675
+ "futures-util",
2676
+ "pin-project-lite",
2677
+ "sync_wrapper",
2678
+ "tokio",
2679
+ "tower-layer",
2680
+ "tower-service",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "tower-http"
2685
+ version = "0.6.11"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2688
+ dependencies = [
2689
+ "bitflags",
2690
+ "bytes",
2691
+ "futures-util",
2692
+ "http",
2693
+ "http-body",
2694
+ "pin-project-lite",
2695
+ "tower",
2696
+ "tower-layer",
2697
+ "tower-service",
2698
+ "url",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "tower-layer"
2703
+ version = "0.3.3"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2706
+
2707
+ [[package]]
2708
+ name = "tower-service"
2709
+ version = "0.3.3"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2712
+
2713
+ [[package]]
2714
+ name = "tracing"
2715
+ version = "0.1.44"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2718
+ dependencies = [
2719
+ "pin-project-lite",
2720
+ "tracing-core",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "tracing-core"
2725
+ version = "0.1.36"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2728
+ dependencies = [
2729
+ "once_cell",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "try-lock"
2734
+ version = "0.2.5"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2737
+
2738
+ [[package]]
2739
+ name = "typeid"
2740
+ version = "1.0.3"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
2743
+
2744
+ [[package]]
2745
+ name = "typenum"
2746
+ version = "1.20.0"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2749
+
2750
+ [[package]]
2751
+ name = "ucd-trie"
2752
+ version = "0.1.7"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2755
+
2756
+ [[package]]
2757
+ name = "unic-char-property"
2758
+ version = "0.9.0"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
2761
+ dependencies = [
2762
+ "unic-char-range",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "unic-char-range"
2767
+ version = "0.9.0"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
2770
+
2771
+ [[package]]
2772
+ name = "unic-common"
2773
+ version = "0.9.0"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
2776
+
2777
+ [[package]]
2778
+ name = "unic-emoji-char"
2779
+ version = "0.9.0"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
2782
+ dependencies = [
2783
+ "unic-char-property",
2784
+ "unic-char-range",
2785
+ "unic-ucd-version",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "unic-ucd-ident"
2790
+ version = "0.9.0"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
2793
+ dependencies = [
2794
+ "unic-char-property",
2795
+ "unic-char-range",
2796
+ "unic-ucd-version",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "unic-ucd-version"
2801
+ version = "0.9.0"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
2804
+ dependencies = [
2805
+ "unic-common",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "unicode-ident"
2810
+ version = "1.0.24"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2813
+
2814
+ [[package]]
2815
+ name = "unicode-segmentation"
2816
+ version = "1.13.2"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2819
+
2820
+ [[package]]
2821
+ name = "unicode-width"
2822
+ version = "0.2.2"
2823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2824
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2825
+
2826
+ [[package]]
2827
+ name = "unicode_names2"
2828
+ version = "1.3.0"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
2831
+ dependencies = [
2832
+ "phf",
2833
+ "unicode_names2_generator",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "unicode_names2_generator"
2838
+ version = "1.3.0"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
2841
+ dependencies = [
2842
+ "getopts",
2843
+ "log",
2844
+ "phf_codegen",
2845
+ "rand 0.8.6",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "unindent"
2850
+ version = "0.2.4"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2853
+
2854
+ [[package]]
2855
+ name = "untrusted"
2856
+ version = "0.9.0"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2859
+
2860
+ [[package]]
2861
+ name = "url"
2862
+ version = "2.5.8"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2865
+ dependencies = [
2866
+ "form_urlencoded",
2867
+ "idna",
2868
+ "percent-encoding",
2869
+ "serde",
2870
+ ]
2871
+
2872
+ [[package]]
2873
+ name = "utf8_iter"
2874
+ version = "1.0.4"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2877
+
2878
+ [[package]]
2879
+ name = "version_check"
2880
+ version = "0.9.5"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2883
+
2884
+ [[package]]
2885
+ name = "walkdir"
2886
+ version = "2.5.0"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2889
+ dependencies = [
2890
+ "same-file",
2891
+ "winapi-util",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "want"
2896
+ version = "0.3.1"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2899
+ dependencies = [
2900
+ "try-lock",
2901
+ ]
2902
+
2903
+ [[package]]
2904
+ name = "wasi"
2905
+ version = "0.11.1+wasi-snapshot-preview1"
2906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2907
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2908
+
2909
+ [[package]]
2910
+ name = "wasip2"
2911
+ version = "1.0.3+wasi-0.2.9"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2914
+ dependencies = [
2915
+ "wit-bindgen",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "wasm-bindgen"
2920
+ version = "0.2.122"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
2923
+ dependencies = [
2924
+ "cfg-if",
2925
+ "once_cell",
2926
+ "rustversion",
2927
+ "wasm-bindgen-macro",
2928
+ "wasm-bindgen-shared",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "wasm-bindgen-futures"
2933
+ version = "0.4.72"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
2936
+ dependencies = [
2937
+ "js-sys",
2938
+ "wasm-bindgen",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "wasm-bindgen-macro"
2943
+ version = "0.2.122"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
2946
+ dependencies = [
2947
+ "quote",
2948
+ "wasm-bindgen-macro-support",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "wasm-bindgen-macro-support"
2953
+ version = "0.2.122"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
2956
+ dependencies = [
2957
+ "bumpalo",
2958
+ "proc-macro2",
2959
+ "quote",
2960
+ "syn",
2961
+ "wasm-bindgen-shared",
2962
+ ]
2963
+
2964
+ [[package]]
2965
+ name = "wasm-bindgen-shared"
2966
+ version = "0.2.122"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
2969
+ dependencies = [
2970
+ "unicode-ident",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "web-sys"
2975
+ version = "0.3.99"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
2978
+ dependencies = [
2979
+ "js-sys",
2980
+ "wasm-bindgen",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "web-time"
2985
+ version = "1.1.0"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2988
+ dependencies = [
2989
+ "js-sys",
2990
+ "wasm-bindgen",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "webpki-root-certs"
2995
+ version = "1.0.7"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
2998
+ dependencies = [
2999
+ "rustls-pki-types",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "winapi-util"
3004
+ version = "0.1.11"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3007
+ dependencies = [
3008
+ "windows-sys 0.61.2",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "windows-core"
3013
+ version = "0.62.2"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3016
+ dependencies = [
3017
+ "windows-implement",
3018
+ "windows-interface",
3019
+ "windows-link",
3020
+ "windows-result",
3021
+ "windows-strings",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "windows-implement"
3026
+ version = "0.60.2"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3029
+ dependencies = [
3030
+ "proc-macro2",
3031
+ "quote",
3032
+ "syn",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "windows-interface"
3037
+ version = "0.59.3"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3040
+ dependencies = [
3041
+ "proc-macro2",
3042
+ "quote",
3043
+ "syn",
3044
+ ]
3045
+
3046
+ [[package]]
3047
+ name = "windows-link"
3048
+ version = "0.2.1"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3051
+
3052
+ [[package]]
3053
+ name = "windows-result"
3054
+ version = "0.4.1"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3057
+ dependencies = [
3058
+ "windows-link",
3059
+ ]
3060
+
3061
+ [[package]]
3062
+ name = "windows-strings"
3063
+ version = "0.5.1"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3066
+ dependencies = [
3067
+ "windows-link",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "windows-sys"
3072
+ version = "0.52.0"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3075
+ dependencies = [
3076
+ "windows-targets 0.52.6",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "windows-sys"
3081
+ version = "0.60.2"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3084
+ dependencies = [
3085
+ "windows-targets 0.53.5",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "windows-sys"
3090
+ version = "0.61.2"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3093
+ dependencies = [
3094
+ "windows-link",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "windows-targets"
3099
+ version = "0.52.6"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3102
+ dependencies = [
3103
+ "windows_aarch64_gnullvm 0.52.6",
3104
+ "windows_aarch64_msvc 0.52.6",
3105
+ "windows_i686_gnu 0.52.6",
3106
+ "windows_i686_gnullvm 0.52.6",
3107
+ "windows_i686_msvc 0.52.6",
3108
+ "windows_x86_64_gnu 0.52.6",
3109
+ "windows_x86_64_gnullvm 0.52.6",
3110
+ "windows_x86_64_msvc 0.52.6",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "windows-targets"
3115
+ version = "0.53.5"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3118
+ dependencies = [
3119
+ "windows-link",
3120
+ "windows_aarch64_gnullvm 0.53.1",
3121
+ "windows_aarch64_msvc 0.53.1",
3122
+ "windows_i686_gnu 0.53.1",
3123
+ "windows_i686_gnullvm 0.53.1",
3124
+ "windows_i686_msvc 0.53.1",
3125
+ "windows_x86_64_gnu 0.53.1",
3126
+ "windows_x86_64_gnullvm 0.53.1",
3127
+ "windows_x86_64_msvc 0.53.1",
3128
+ ]
3129
+
3130
+ [[package]]
3131
+ name = "windows_aarch64_gnullvm"
3132
+ version = "0.52.6"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3135
+
3136
+ [[package]]
3137
+ name = "windows_aarch64_gnullvm"
3138
+ version = "0.53.1"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3141
+
3142
+ [[package]]
3143
+ name = "windows_aarch64_msvc"
3144
+ version = "0.52.6"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3147
+
3148
+ [[package]]
3149
+ name = "windows_aarch64_msvc"
3150
+ version = "0.53.1"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3153
+
3154
+ [[package]]
3155
+ name = "windows_i686_gnu"
3156
+ version = "0.52.6"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3159
+
3160
+ [[package]]
3161
+ name = "windows_i686_gnu"
3162
+ version = "0.53.1"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3165
+
3166
+ [[package]]
3167
+ name = "windows_i686_gnullvm"
3168
+ version = "0.52.6"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3171
+
3172
+ [[package]]
3173
+ name = "windows_i686_gnullvm"
3174
+ version = "0.53.1"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3177
+
3178
+ [[package]]
3179
+ name = "windows_i686_msvc"
3180
+ version = "0.52.6"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3183
+
3184
+ [[package]]
3185
+ name = "windows_i686_msvc"
3186
+ version = "0.53.1"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3189
+
3190
+ [[package]]
3191
+ name = "windows_x86_64_gnu"
3192
+ version = "0.52.6"
3193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3194
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3195
+
3196
+ [[package]]
3197
+ name = "windows_x86_64_gnu"
3198
+ version = "0.53.1"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3201
+
3202
+ [[package]]
3203
+ name = "windows_x86_64_gnullvm"
3204
+ version = "0.52.6"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3207
+
3208
+ [[package]]
3209
+ name = "windows_x86_64_gnullvm"
3210
+ version = "0.53.1"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3213
+
3214
+ [[package]]
3215
+ name = "windows_x86_64_msvc"
3216
+ version = "0.52.6"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3219
+
3220
+ [[package]]
3221
+ name = "windows_x86_64_msvc"
3222
+ version = "0.53.1"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3225
+
3226
+ [[package]]
3227
+ name = "winnow"
3228
+ version = "1.0.3"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
3231
+ dependencies = [
3232
+ "memchr",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "wiremock"
3237
+ version = "0.6.5"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
3240
+ dependencies = [
3241
+ "assert-json-diff",
3242
+ "base64",
3243
+ "deadpool",
3244
+ "futures",
3245
+ "http",
3246
+ "http-body-util",
3247
+ "hyper",
3248
+ "hyper-util",
3249
+ "log",
3250
+ "once_cell",
3251
+ "regex",
3252
+ "serde",
3253
+ "serde_json",
3254
+ "tokio",
3255
+ "url",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "wit-bindgen"
3260
+ version = "0.57.1"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3263
+
3264
+ [[package]]
3265
+ name = "writeable"
3266
+ version = "0.6.3"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3269
+
3270
+ [[package]]
3271
+ name = "yaml-rust2"
3272
+ version = "0.11.0"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e"
3275
+ dependencies = [
3276
+ "arraydeque",
3277
+ "encoding_rs",
3278
+ "hashlink",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "yoke"
3283
+ version = "0.8.2"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3286
+ dependencies = [
3287
+ "stable_deref_trait",
3288
+ "yoke-derive",
3289
+ "zerofrom",
3290
+ ]
3291
+
3292
+ [[package]]
3293
+ name = "yoke-derive"
3294
+ version = "0.8.2"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3297
+ dependencies = [
3298
+ "proc-macro2",
3299
+ "quote",
3300
+ "syn",
3301
+ "synstructure",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "zerocopy"
3306
+ version = "0.8.49"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "bce33a6288fa3f072a8c2c7d0f2fdbb90e28298f0135c1f99b96c3db2efcc60b"
3309
+ dependencies = [
3310
+ "zerocopy-derive",
3311
+ ]
3312
+
3313
+ [[package]]
3314
+ name = "zerocopy-derive"
3315
+ version = "0.8.49"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "8fd425244944f4ab65ccff928e7323354c5a018c75838362fdce749dfad2ee1e"
3318
+ dependencies = [
3319
+ "proc-macro2",
3320
+ "quote",
3321
+ "syn",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "zerofrom"
3326
+ version = "0.1.8"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3329
+ dependencies = [
3330
+ "zerofrom-derive",
3331
+ ]
3332
+
3333
+ [[package]]
3334
+ name = "zerofrom-derive"
3335
+ version = "0.1.7"
3336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3337
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3338
+ dependencies = [
3339
+ "proc-macro2",
3340
+ "quote",
3341
+ "syn",
3342
+ "synstructure",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "zeroize"
3347
+ version = "1.8.2"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3350
+
3351
+ [[package]]
3352
+ name = "zerotrie"
3353
+ version = "0.2.4"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3356
+ dependencies = [
3357
+ "displaydoc",
3358
+ "yoke",
3359
+ "zerofrom",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "zerovec"
3364
+ version = "0.11.6"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3367
+ dependencies = [
3368
+ "yoke",
3369
+ "zerofrom",
3370
+ "zerovec-derive",
3371
+ ]
3372
+
3373
+ [[package]]
3374
+ name = "zerovec-derive"
3375
+ version = "0.11.3"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3378
+ dependencies = [
3379
+ "proc-macro2",
3380
+ "quote",
3381
+ "syn",
3382
+ ]
3383
+
3384
+ [[package]]
3385
+ name = "zmij"
3386
+ version = "1.0.21"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"