wraith 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 (38) hide show
  1. wraith-0.1.0/Cargo.lock +2549 -0
  2. wraith-0.1.0/Cargo.toml +33 -0
  3. wraith-0.1.0/PKG-INFO +114 -0
  4. wraith-0.1.0/README.md +96 -0
  5. wraith-0.1.0/crates/codeguard-api-guard/Cargo.toml +14 -0
  6. wraith-0.1.0/crates/codeguard-api-guard/src/context_match.rs +66 -0
  7. wraith-0.1.0/crates/codeguard-api-guard/src/introspect.rs +193 -0
  8. wraith-0.1.0/crates/codeguard-api-guard/src/known_functions.rs +84 -0
  9. wraith-0.1.0/crates/codeguard-api-guard/src/lib.rs +440 -0
  10. wraith-0.1.0/crates/codeguard-ast/Cargo.toml +18 -0
  11. wraith-0.1.0/crates/codeguard-ast/benches/parse_bench.rs +117 -0
  12. wraith-0.1.0/crates/codeguard-ast/src/extract.rs +437 -0
  13. wraith-0.1.0/crates/codeguard-ast/src/import_graph.rs +146 -0
  14. wraith-0.1.0/crates/codeguard-ast/src/lib.rs +12 -0
  15. wraith-0.1.0/crates/codeguard-ast/src/line_index.rs +42 -0
  16. wraith-0.1.0/crates/codeguard-ast/src/parser.rs +12 -0
  17. wraith-0.1.0/crates/codeguard-ast/src/symbols.rs +561 -0
  18. wraith-0.1.0/crates/codeguard-ast/src/tests.rs +142 -0
  19. wraith-0.1.0/crates/codeguard-core/Cargo.toml +13 -0
  20. wraith-0.1.0/crates/codeguard-core/src/config.rs +90 -0
  21. wraith-0.1.0/crates/codeguard-core/src/diagnostic.rs +133 -0
  22. wraith-0.1.0/crates/codeguard-core/src/lib.rs +11 -0
  23. wraith-0.1.0/crates/codeguard-core/src/noqa.rs +132 -0
  24. wraith-0.1.0/crates/codeguard-core/src/reporter.rs +193 -0
  25. wraith-0.1.0/crates/codeguard-core/src/rules.rs +189 -0
  26. wraith-0.1.0/crates/codeguard-core/src/tests.rs +140 -0
  27. wraith-0.1.0/crates/codeguard-phantom/Cargo.toml +17 -0
  28. wraith-0.1.0/crates/codeguard-phantom/src/cache.rs +82 -0
  29. wraith-0.1.0/crates/codeguard-phantom/src/checker.rs +289 -0
  30. wraith-0.1.0/crates/codeguard-phantom/src/known_packages.rs +85 -0
  31. wraith-0.1.0/crates/codeguard-phantom/src/lib.rs +224 -0
  32. wraith-0.1.0/crates/codeguard-vibe/Cargo.toml +12 -0
  33. wraith-0.1.0/crates/codeguard-vibe/src/lib.rs +640 -0
  34. wraith-0.1.0/crates/codeguard-vibe/src/project.rs +291 -0
  35. wraith-0.1.0/crates/codeguard-vibe/src/taint.rs +341 -0
  36. wraith-0.1.0/pyproject.toml +31 -0
  37. wraith-0.1.0/python/wraith/Cargo.toml +17 -0
  38. wraith-0.1.0/python/wraith/src/lib.rs +93 -0
@@ -0,0 +1,2549 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anes"
37
+ version = "0.1.6"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
40
+
41
+ [[package]]
42
+ name = "anstream"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
46
+ dependencies = [
47
+ "anstyle",
48
+ "anstyle-parse",
49
+ "anstyle-query",
50
+ "anstyle-wincon",
51
+ "colorchoice",
52
+ "is_terminal_polyfill",
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle"
58
+ version = "1.0.14"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
61
+
62
+ [[package]]
63
+ name = "anstyle-parse"
64
+ version = "1.0.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
67
+ dependencies = [
68
+ "utf8parse",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle-query"
73
+ version = "1.1.5"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
76
+ dependencies = [
77
+ "windows-sys 0.61.2",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-wincon"
82
+ version = "3.0.11"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
85
+ dependencies = [
86
+ "anstyle",
87
+ "once_cell_polyfill",
88
+ "windows-sys 0.61.2",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anyhow"
93
+ version = "1.0.102"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
96
+
97
+ [[package]]
98
+ name = "atomic-waker"
99
+ version = "1.1.2"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
102
+
103
+ [[package]]
104
+ name = "autocfg"
105
+ version = "1.5.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
108
+
109
+ [[package]]
110
+ name = "base64"
111
+ version = "0.22.1"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
114
+
115
+ [[package]]
116
+ name = "bitflags"
117
+ version = "2.11.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
120
+
121
+ [[package]]
122
+ name = "bumpalo"
123
+ version = "3.20.2"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
126
+
127
+ [[package]]
128
+ name = "bytes"
129
+ version = "1.11.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
132
+
133
+ [[package]]
134
+ name = "cast"
135
+ version = "0.3.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
138
+
139
+ [[package]]
140
+ name = "cc"
141
+ version = "1.2.59"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
144
+ dependencies = [
145
+ "find-msvc-tools",
146
+ "shlex",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "cfg-if"
151
+ version = "1.0.4"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
154
+
155
+ [[package]]
156
+ name = "chrono"
157
+ version = "0.4.44"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
160
+ dependencies = [
161
+ "iana-time-zone",
162
+ "js-sys",
163
+ "num-traits",
164
+ "serde",
165
+ "wasm-bindgen",
166
+ "windows-link",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "ciborium"
171
+ version = "0.2.2"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
174
+ dependencies = [
175
+ "ciborium-io",
176
+ "ciborium-ll",
177
+ "serde",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "ciborium-io"
182
+ version = "0.2.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
185
+
186
+ [[package]]
187
+ name = "ciborium-ll"
188
+ version = "0.2.2"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
191
+ dependencies = [
192
+ "ciborium-io",
193
+ "half",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "clap"
198
+ version = "4.6.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
201
+ dependencies = [
202
+ "clap_builder",
203
+ "clap_derive",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "clap_builder"
208
+ version = "4.6.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
211
+ dependencies = [
212
+ "anstream",
213
+ "anstyle",
214
+ "clap_lex",
215
+ "strsim",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "clap_derive"
220
+ version = "4.6.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
223
+ dependencies = [
224
+ "heck",
225
+ "proc-macro2",
226
+ "quote",
227
+ "syn",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "clap_lex"
232
+ version = "1.1.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
235
+
236
+ [[package]]
237
+ name = "codeguard-api-guard"
238
+ version = "0.1.0"
239
+ dependencies = [
240
+ "anyhow",
241
+ "codeguard-ast",
242
+ "codeguard-core",
243
+ "once_cell",
244
+ "serde",
245
+ "serde_json",
246
+ "strsim",
247
+ "tree-sitter",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "codeguard-ast"
252
+ version = "0.1.0"
253
+ dependencies = [
254
+ "codeguard-core",
255
+ "codeguard-vibe",
256
+ "criterion",
257
+ "once_cell",
258
+ "tree-sitter",
259
+ "tree-sitter-python",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "codeguard-cli"
264
+ version = "0.1.0"
265
+ dependencies = [
266
+ "anyhow",
267
+ "clap",
268
+ "codeguard-api-guard",
269
+ "codeguard-ast",
270
+ "codeguard-core",
271
+ "codeguard-phantom",
272
+ "codeguard-vibe",
273
+ "colored",
274
+ "rayon",
275
+ "serde_json",
276
+ "tree-sitter",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "codeguard-core"
281
+ version = "0.1.0"
282
+ dependencies = [
283
+ "anyhow",
284
+ "colored",
285
+ "once_cell",
286
+ "regex",
287
+ "serde",
288
+ "serde_json",
289
+ "toml",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "codeguard-phantom"
294
+ version = "0.1.0"
295
+ dependencies = [
296
+ "anyhow",
297
+ "chrono",
298
+ "codeguard-ast",
299
+ "codeguard-core",
300
+ "once_cell",
301
+ "reqwest",
302
+ "rusqlite",
303
+ "serde",
304
+ "serde_json",
305
+ "strsim",
306
+ "tree-sitter",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "codeguard-python"
311
+ version = "0.1.0"
312
+ dependencies = [
313
+ "codeguard-api-guard",
314
+ "codeguard-ast",
315
+ "codeguard-core",
316
+ "codeguard-phantom",
317
+ "codeguard-vibe",
318
+ "pyo3",
319
+ "serde_json",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "codeguard-vibe"
324
+ version = "0.1.0"
325
+ dependencies = [
326
+ "codeguard-ast",
327
+ "codeguard-core",
328
+ "once_cell",
329
+ "regex",
330
+ "serde_json",
331
+ "tree-sitter",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "colorchoice"
336
+ version = "1.0.5"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
339
+
340
+ [[package]]
341
+ name = "colored"
342
+ version = "2.2.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
345
+ dependencies = [
346
+ "lazy_static",
347
+ "windows-sys 0.59.0",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "core-foundation"
352
+ version = "0.9.4"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
355
+ dependencies = [
356
+ "core-foundation-sys",
357
+ "libc",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "core-foundation"
362
+ version = "0.10.1"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
365
+ dependencies = [
366
+ "core-foundation-sys",
367
+ "libc",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "core-foundation-sys"
372
+ version = "0.8.7"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
375
+
376
+ [[package]]
377
+ name = "criterion"
378
+ version = "0.5.1"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
381
+ dependencies = [
382
+ "anes",
383
+ "cast",
384
+ "ciborium",
385
+ "clap",
386
+ "criterion-plot",
387
+ "is-terminal",
388
+ "itertools",
389
+ "num-traits",
390
+ "once_cell",
391
+ "oorandom",
392
+ "plotters",
393
+ "rayon",
394
+ "regex",
395
+ "serde",
396
+ "serde_derive",
397
+ "serde_json",
398
+ "tinytemplate",
399
+ "walkdir",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "criterion-plot"
404
+ version = "0.5.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
407
+ dependencies = [
408
+ "cast",
409
+ "itertools",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "crossbeam-deque"
414
+ version = "0.8.6"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
417
+ dependencies = [
418
+ "crossbeam-epoch",
419
+ "crossbeam-utils",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "crossbeam-epoch"
424
+ version = "0.9.18"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
427
+ dependencies = [
428
+ "crossbeam-utils",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "crossbeam-utils"
433
+ version = "0.8.21"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
436
+
437
+ [[package]]
438
+ name = "crunchy"
439
+ version = "0.2.4"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
442
+
443
+ [[package]]
444
+ name = "displaydoc"
445
+ version = "0.2.5"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
448
+ dependencies = [
449
+ "proc-macro2",
450
+ "quote",
451
+ "syn",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "either"
456
+ version = "1.15.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
459
+
460
+ [[package]]
461
+ name = "encoding_rs"
462
+ version = "0.8.35"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
465
+ dependencies = [
466
+ "cfg-if",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "equivalent"
471
+ version = "1.0.2"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
474
+
475
+ [[package]]
476
+ name = "errno"
477
+ version = "0.3.14"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
480
+ dependencies = [
481
+ "libc",
482
+ "windows-sys 0.61.2",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "fallible-iterator"
487
+ version = "0.3.0"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
490
+
491
+ [[package]]
492
+ name = "fallible-streaming-iterator"
493
+ version = "0.1.9"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
496
+
497
+ [[package]]
498
+ name = "fastrand"
499
+ version = "2.3.0"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
502
+
503
+ [[package]]
504
+ name = "find-msvc-tools"
505
+ version = "0.1.9"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
508
+
509
+ [[package]]
510
+ name = "fnv"
511
+ version = "1.0.7"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
514
+
515
+ [[package]]
516
+ name = "foldhash"
517
+ version = "0.1.5"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
520
+
521
+ [[package]]
522
+ name = "foreign-types"
523
+ version = "0.3.2"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
526
+ dependencies = [
527
+ "foreign-types-shared",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "foreign-types-shared"
532
+ version = "0.1.1"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
535
+
536
+ [[package]]
537
+ name = "form_urlencoded"
538
+ version = "1.2.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
541
+ dependencies = [
542
+ "percent-encoding",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "futures-channel"
547
+ version = "0.3.32"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
550
+ dependencies = [
551
+ "futures-core",
552
+ "futures-sink",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "futures-core"
557
+ version = "0.3.32"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
560
+
561
+ [[package]]
562
+ name = "futures-io"
563
+ version = "0.3.32"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
566
+
567
+ [[package]]
568
+ name = "futures-sink"
569
+ version = "0.3.32"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
572
+
573
+ [[package]]
574
+ name = "futures-task"
575
+ version = "0.3.32"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
578
+
579
+ [[package]]
580
+ name = "futures-util"
581
+ version = "0.3.32"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
584
+ dependencies = [
585
+ "futures-core",
586
+ "futures-io",
587
+ "futures-sink",
588
+ "futures-task",
589
+ "memchr",
590
+ "pin-project-lite",
591
+ "slab",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "getrandom"
596
+ version = "0.2.17"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
599
+ dependencies = [
600
+ "cfg-if",
601
+ "libc",
602
+ "wasi",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "getrandom"
607
+ version = "0.4.2"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
610
+ dependencies = [
611
+ "cfg-if",
612
+ "libc",
613
+ "r-efi",
614
+ "wasip2",
615
+ "wasip3",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "h2"
620
+ version = "0.4.13"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
623
+ dependencies = [
624
+ "atomic-waker",
625
+ "bytes",
626
+ "fnv",
627
+ "futures-core",
628
+ "futures-sink",
629
+ "http",
630
+ "indexmap",
631
+ "slab",
632
+ "tokio",
633
+ "tokio-util",
634
+ "tracing",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "half"
639
+ version = "2.7.1"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
642
+ dependencies = [
643
+ "cfg-if",
644
+ "crunchy",
645
+ "zerocopy",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "hashbrown"
650
+ version = "0.14.5"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
653
+ dependencies = [
654
+ "ahash",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "hashbrown"
659
+ version = "0.15.5"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
662
+ dependencies = [
663
+ "foldhash",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "hashbrown"
668
+ version = "0.16.1"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
671
+
672
+ [[package]]
673
+ name = "hashlink"
674
+ version = "0.9.1"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
677
+ dependencies = [
678
+ "hashbrown 0.14.5",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "heck"
683
+ version = "0.5.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
686
+
687
+ [[package]]
688
+ name = "hermit-abi"
689
+ version = "0.5.2"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
692
+
693
+ [[package]]
694
+ name = "http"
695
+ version = "1.4.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
698
+ dependencies = [
699
+ "bytes",
700
+ "itoa",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "http-body"
705
+ version = "1.0.1"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
708
+ dependencies = [
709
+ "bytes",
710
+ "http",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "http-body-util"
715
+ version = "0.1.3"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
718
+ dependencies = [
719
+ "bytes",
720
+ "futures-core",
721
+ "http",
722
+ "http-body",
723
+ "pin-project-lite",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "httparse"
728
+ version = "1.10.1"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
731
+
732
+ [[package]]
733
+ name = "hyper"
734
+ version = "1.9.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
737
+ dependencies = [
738
+ "atomic-waker",
739
+ "bytes",
740
+ "futures-channel",
741
+ "futures-core",
742
+ "h2",
743
+ "http",
744
+ "http-body",
745
+ "httparse",
746
+ "itoa",
747
+ "pin-project-lite",
748
+ "smallvec",
749
+ "tokio",
750
+ "want",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "hyper-rustls"
755
+ version = "0.27.7"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
758
+ dependencies = [
759
+ "http",
760
+ "hyper",
761
+ "hyper-util",
762
+ "rustls",
763
+ "rustls-pki-types",
764
+ "tokio",
765
+ "tokio-rustls",
766
+ "tower-service",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "hyper-tls"
771
+ version = "0.6.0"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
774
+ dependencies = [
775
+ "bytes",
776
+ "http-body-util",
777
+ "hyper",
778
+ "hyper-util",
779
+ "native-tls",
780
+ "tokio",
781
+ "tokio-native-tls",
782
+ "tower-service",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "hyper-util"
787
+ version = "0.1.20"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
790
+ dependencies = [
791
+ "base64",
792
+ "bytes",
793
+ "futures-channel",
794
+ "futures-util",
795
+ "http",
796
+ "http-body",
797
+ "hyper",
798
+ "ipnet",
799
+ "libc",
800
+ "percent-encoding",
801
+ "pin-project-lite",
802
+ "socket2",
803
+ "system-configuration",
804
+ "tokio",
805
+ "tower-service",
806
+ "tracing",
807
+ "windows-registry",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "iana-time-zone"
812
+ version = "0.1.65"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
815
+ dependencies = [
816
+ "android_system_properties",
817
+ "core-foundation-sys",
818
+ "iana-time-zone-haiku",
819
+ "js-sys",
820
+ "log",
821
+ "wasm-bindgen",
822
+ "windows-core",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "iana-time-zone-haiku"
827
+ version = "0.1.2"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
830
+ dependencies = [
831
+ "cc",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "icu_collections"
836
+ version = "2.2.0"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
839
+ dependencies = [
840
+ "displaydoc",
841
+ "potential_utf",
842
+ "utf8_iter",
843
+ "yoke",
844
+ "zerofrom",
845
+ "zerovec",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "icu_locale_core"
850
+ version = "2.2.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
853
+ dependencies = [
854
+ "displaydoc",
855
+ "litemap",
856
+ "tinystr",
857
+ "writeable",
858
+ "zerovec",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "icu_normalizer"
863
+ version = "2.2.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
866
+ dependencies = [
867
+ "icu_collections",
868
+ "icu_normalizer_data",
869
+ "icu_properties",
870
+ "icu_provider",
871
+ "smallvec",
872
+ "zerovec",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "icu_normalizer_data"
877
+ version = "2.2.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
880
+
881
+ [[package]]
882
+ name = "icu_properties"
883
+ version = "2.2.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
886
+ dependencies = [
887
+ "icu_collections",
888
+ "icu_locale_core",
889
+ "icu_properties_data",
890
+ "icu_provider",
891
+ "zerotrie",
892
+ "zerovec",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "icu_properties_data"
897
+ version = "2.2.0"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
900
+
901
+ [[package]]
902
+ name = "icu_provider"
903
+ version = "2.2.0"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
906
+ dependencies = [
907
+ "displaydoc",
908
+ "icu_locale_core",
909
+ "writeable",
910
+ "yoke",
911
+ "zerofrom",
912
+ "zerotrie",
913
+ "zerovec",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "id-arena"
918
+ version = "2.3.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
921
+
922
+ [[package]]
923
+ name = "idna"
924
+ version = "1.1.0"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
927
+ dependencies = [
928
+ "idna_adapter",
929
+ "smallvec",
930
+ "utf8_iter",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "idna_adapter"
935
+ version = "1.2.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
938
+ dependencies = [
939
+ "icu_normalizer",
940
+ "icu_properties",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "indexmap"
945
+ version = "2.13.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
948
+ dependencies = [
949
+ "equivalent",
950
+ "hashbrown 0.16.1",
951
+ "serde",
952
+ "serde_core",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "indoc"
957
+ version = "2.0.7"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
960
+ dependencies = [
961
+ "rustversion",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "ipnet"
966
+ version = "2.12.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
969
+
970
+ [[package]]
971
+ name = "iri-string"
972
+ version = "0.7.12"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
975
+ dependencies = [
976
+ "memchr",
977
+ "serde",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "is-terminal"
982
+ version = "0.4.17"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
985
+ dependencies = [
986
+ "hermit-abi",
987
+ "libc",
988
+ "windows-sys 0.61.2",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "is_terminal_polyfill"
993
+ version = "1.70.2"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
996
+
997
+ [[package]]
998
+ name = "itertools"
999
+ version = "0.10.5"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1002
+ dependencies = [
1003
+ "either",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "itoa"
1008
+ version = "1.0.18"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1011
+
1012
+ [[package]]
1013
+ name = "js-sys"
1014
+ version = "0.3.94"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
1017
+ dependencies = [
1018
+ "cfg-if",
1019
+ "futures-util",
1020
+ "once_cell",
1021
+ "wasm-bindgen",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "lazy_static"
1026
+ version = "1.5.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1029
+
1030
+ [[package]]
1031
+ name = "leb128fmt"
1032
+ version = "0.1.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1035
+
1036
+ [[package]]
1037
+ name = "libc"
1038
+ version = "0.2.184"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
1041
+
1042
+ [[package]]
1043
+ name = "libsqlite3-sys"
1044
+ version = "0.28.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
1047
+ dependencies = [
1048
+ "cc",
1049
+ "pkg-config",
1050
+ "vcpkg",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "linux-raw-sys"
1055
+ version = "0.12.1"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1058
+
1059
+ [[package]]
1060
+ name = "litemap"
1061
+ version = "0.8.2"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1064
+
1065
+ [[package]]
1066
+ name = "log"
1067
+ version = "0.4.29"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1070
+
1071
+ [[package]]
1072
+ name = "memchr"
1073
+ version = "2.8.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1076
+
1077
+ [[package]]
1078
+ name = "memoffset"
1079
+ version = "0.9.1"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1082
+ dependencies = [
1083
+ "autocfg",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "mime"
1088
+ version = "0.3.17"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1091
+
1092
+ [[package]]
1093
+ name = "mio"
1094
+ version = "1.2.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1097
+ dependencies = [
1098
+ "libc",
1099
+ "wasi",
1100
+ "windows-sys 0.61.2",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "native-tls"
1105
+ version = "0.2.18"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1108
+ dependencies = [
1109
+ "libc",
1110
+ "log",
1111
+ "openssl",
1112
+ "openssl-probe",
1113
+ "openssl-sys",
1114
+ "schannel",
1115
+ "security-framework",
1116
+ "security-framework-sys",
1117
+ "tempfile",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "num-traits"
1122
+ version = "0.2.19"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1125
+ dependencies = [
1126
+ "autocfg",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "once_cell"
1131
+ version = "1.21.4"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1134
+
1135
+ [[package]]
1136
+ name = "once_cell_polyfill"
1137
+ version = "1.70.2"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1140
+
1141
+ [[package]]
1142
+ name = "oorandom"
1143
+ version = "11.1.5"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1146
+
1147
+ [[package]]
1148
+ name = "openssl"
1149
+ version = "0.10.76"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
1152
+ dependencies = [
1153
+ "bitflags",
1154
+ "cfg-if",
1155
+ "foreign-types",
1156
+ "libc",
1157
+ "once_cell",
1158
+ "openssl-macros",
1159
+ "openssl-sys",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "openssl-macros"
1164
+ version = "0.1.1"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1167
+ dependencies = [
1168
+ "proc-macro2",
1169
+ "quote",
1170
+ "syn",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "openssl-probe"
1175
+ version = "0.2.1"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1178
+
1179
+ [[package]]
1180
+ name = "openssl-sys"
1181
+ version = "0.9.112"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
1184
+ dependencies = [
1185
+ "cc",
1186
+ "libc",
1187
+ "pkg-config",
1188
+ "vcpkg",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "percent-encoding"
1193
+ version = "2.3.2"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1196
+
1197
+ [[package]]
1198
+ name = "pin-project-lite"
1199
+ version = "0.2.17"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1202
+
1203
+ [[package]]
1204
+ name = "pkg-config"
1205
+ version = "0.3.32"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1208
+
1209
+ [[package]]
1210
+ name = "plotters"
1211
+ version = "0.3.7"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1214
+ dependencies = [
1215
+ "num-traits",
1216
+ "plotters-backend",
1217
+ "plotters-svg",
1218
+ "wasm-bindgen",
1219
+ "web-sys",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "plotters-backend"
1224
+ version = "0.3.7"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1227
+
1228
+ [[package]]
1229
+ name = "plotters-svg"
1230
+ version = "0.3.7"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1233
+ dependencies = [
1234
+ "plotters-backend",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "portable-atomic"
1239
+ version = "1.13.1"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1242
+
1243
+ [[package]]
1244
+ name = "potential_utf"
1245
+ version = "0.1.5"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1248
+ dependencies = [
1249
+ "zerovec",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "prettyplease"
1254
+ version = "0.2.37"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1257
+ dependencies = [
1258
+ "proc-macro2",
1259
+ "syn",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "proc-macro2"
1264
+ version = "1.0.106"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1267
+ dependencies = [
1268
+ "unicode-ident",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "pyo3"
1273
+ version = "0.22.6"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1276
+ dependencies = [
1277
+ "cfg-if",
1278
+ "indoc",
1279
+ "libc",
1280
+ "memoffset",
1281
+ "once_cell",
1282
+ "portable-atomic",
1283
+ "pyo3-build-config",
1284
+ "pyo3-ffi",
1285
+ "pyo3-macros",
1286
+ "unindent",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "pyo3-build-config"
1291
+ version = "0.22.6"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1294
+ dependencies = [
1295
+ "once_cell",
1296
+ "target-lexicon",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "pyo3-ffi"
1301
+ version = "0.22.6"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1304
+ dependencies = [
1305
+ "libc",
1306
+ "pyo3-build-config",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "pyo3-macros"
1311
+ version = "0.22.6"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1314
+ dependencies = [
1315
+ "proc-macro2",
1316
+ "pyo3-macros-backend",
1317
+ "quote",
1318
+ "syn",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "pyo3-macros-backend"
1323
+ version = "0.22.6"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1326
+ dependencies = [
1327
+ "heck",
1328
+ "proc-macro2",
1329
+ "pyo3-build-config",
1330
+ "quote",
1331
+ "syn",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "quote"
1336
+ version = "1.0.45"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1339
+ dependencies = [
1340
+ "proc-macro2",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "r-efi"
1345
+ version = "6.0.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1348
+
1349
+ [[package]]
1350
+ name = "rayon"
1351
+ version = "1.11.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1354
+ dependencies = [
1355
+ "either",
1356
+ "rayon-core",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "rayon-core"
1361
+ version = "1.13.0"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1364
+ dependencies = [
1365
+ "crossbeam-deque",
1366
+ "crossbeam-utils",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "regex"
1371
+ version = "1.12.3"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1374
+ dependencies = [
1375
+ "aho-corasick",
1376
+ "memchr",
1377
+ "regex-automata",
1378
+ "regex-syntax",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "regex-automata"
1383
+ version = "0.4.14"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1386
+ dependencies = [
1387
+ "aho-corasick",
1388
+ "memchr",
1389
+ "regex-syntax",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "regex-syntax"
1394
+ version = "0.8.10"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1397
+
1398
+ [[package]]
1399
+ name = "reqwest"
1400
+ version = "0.12.28"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1403
+ dependencies = [
1404
+ "base64",
1405
+ "bytes",
1406
+ "encoding_rs",
1407
+ "futures-channel",
1408
+ "futures-core",
1409
+ "futures-util",
1410
+ "h2",
1411
+ "http",
1412
+ "http-body",
1413
+ "http-body-util",
1414
+ "hyper",
1415
+ "hyper-rustls",
1416
+ "hyper-tls",
1417
+ "hyper-util",
1418
+ "js-sys",
1419
+ "log",
1420
+ "mime",
1421
+ "native-tls",
1422
+ "percent-encoding",
1423
+ "pin-project-lite",
1424
+ "rustls-pki-types",
1425
+ "serde",
1426
+ "serde_json",
1427
+ "serde_urlencoded",
1428
+ "sync_wrapper",
1429
+ "tokio",
1430
+ "tokio-native-tls",
1431
+ "tower",
1432
+ "tower-http",
1433
+ "tower-service",
1434
+ "url",
1435
+ "wasm-bindgen",
1436
+ "wasm-bindgen-futures",
1437
+ "web-sys",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "ring"
1442
+ version = "0.17.14"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1445
+ dependencies = [
1446
+ "cc",
1447
+ "cfg-if",
1448
+ "getrandom 0.2.17",
1449
+ "libc",
1450
+ "untrusted",
1451
+ "windows-sys 0.52.0",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "rusqlite"
1456
+ version = "0.31.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
1459
+ dependencies = [
1460
+ "bitflags",
1461
+ "fallible-iterator",
1462
+ "fallible-streaming-iterator",
1463
+ "hashlink",
1464
+ "libsqlite3-sys",
1465
+ "smallvec",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "rustix"
1470
+ version = "1.1.4"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1473
+ dependencies = [
1474
+ "bitflags",
1475
+ "errno",
1476
+ "libc",
1477
+ "linux-raw-sys",
1478
+ "windows-sys 0.61.2",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "rustls"
1483
+ version = "0.23.37"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1486
+ dependencies = [
1487
+ "once_cell",
1488
+ "rustls-pki-types",
1489
+ "rustls-webpki",
1490
+ "subtle",
1491
+ "zeroize",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "rustls-pki-types"
1496
+ version = "1.14.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1499
+ dependencies = [
1500
+ "zeroize",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "rustls-webpki"
1505
+ version = "0.103.10"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
1508
+ dependencies = [
1509
+ "ring",
1510
+ "rustls-pki-types",
1511
+ "untrusted",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "rustversion"
1516
+ version = "1.0.22"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1519
+
1520
+ [[package]]
1521
+ name = "ryu"
1522
+ version = "1.0.23"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1525
+
1526
+ [[package]]
1527
+ name = "same-file"
1528
+ version = "1.0.6"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1531
+ dependencies = [
1532
+ "winapi-util",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "schannel"
1537
+ version = "0.1.29"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1540
+ dependencies = [
1541
+ "windows-sys 0.61.2",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "security-framework"
1546
+ version = "3.7.0"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1549
+ dependencies = [
1550
+ "bitflags",
1551
+ "core-foundation 0.10.1",
1552
+ "core-foundation-sys",
1553
+ "libc",
1554
+ "security-framework-sys",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "security-framework-sys"
1559
+ version = "2.17.0"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1562
+ dependencies = [
1563
+ "core-foundation-sys",
1564
+ "libc",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "semver"
1569
+ version = "1.0.28"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1572
+
1573
+ [[package]]
1574
+ name = "serde"
1575
+ version = "1.0.228"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1578
+ dependencies = [
1579
+ "serde_core",
1580
+ "serde_derive",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "serde_core"
1585
+ version = "1.0.228"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1588
+ dependencies = [
1589
+ "serde_derive",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "serde_derive"
1594
+ version = "1.0.228"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1597
+ dependencies = [
1598
+ "proc-macro2",
1599
+ "quote",
1600
+ "syn",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "serde_json"
1605
+ version = "1.0.149"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1608
+ dependencies = [
1609
+ "itoa",
1610
+ "memchr",
1611
+ "serde",
1612
+ "serde_core",
1613
+ "zmij",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "serde_spanned"
1618
+ version = "0.6.9"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1621
+ dependencies = [
1622
+ "serde",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "serde_urlencoded"
1627
+ version = "0.7.1"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1630
+ dependencies = [
1631
+ "form_urlencoded",
1632
+ "itoa",
1633
+ "ryu",
1634
+ "serde",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "shlex"
1639
+ version = "1.3.0"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1642
+
1643
+ [[package]]
1644
+ name = "slab"
1645
+ version = "0.4.12"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1648
+
1649
+ [[package]]
1650
+ name = "smallvec"
1651
+ version = "1.15.1"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1654
+
1655
+ [[package]]
1656
+ name = "socket2"
1657
+ version = "0.6.3"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1660
+ dependencies = [
1661
+ "libc",
1662
+ "windows-sys 0.61.2",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "stable_deref_trait"
1667
+ version = "1.2.1"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1670
+
1671
+ [[package]]
1672
+ name = "streaming-iterator"
1673
+ version = "0.1.9"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
1676
+
1677
+ [[package]]
1678
+ name = "strsim"
1679
+ version = "0.11.1"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1682
+
1683
+ [[package]]
1684
+ name = "subtle"
1685
+ version = "2.6.1"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1688
+
1689
+ [[package]]
1690
+ name = "syn"
1691
+ version = "2.0.117"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1694
+ dependencies = [
1695
+ "proc-macro2",
1696
+ "quote",
1697
+ "unicode-ident",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "sync_wrapper"
1702
+ version = "1.0.2"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1705
+ dependencies = [
1706
+ "futures-core",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "synstructure"
1711
+ version = "0.13.2"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1714
+ dependencies = [
1715
+ "proc-macro2",
1716
+ "quote",
1717
+ "syn",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "system-configuration"
1722
+ version = "0.7.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
1725
+ dependencies = [
1726
+ "bitflags",
1727
+ "core-foundation 0.9.4",
1728
+ "system-configuration-sys",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "system-configuration-sys"
1733
+ version = "0.6.0"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1736
+ dependencies = [
1737
+ "core-foundation-sys",
1738
+ "libc",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "target-lexicon"
1743
+ version = "0.12.16"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1746
+
1747
+ [[package]]
1748
+ name = "tempfile"
1749
+ version = "3.27.0"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1752
+ dependencies = [
1753
+ "fastrand",
1754
+ "getrandom 0.4.2",
1755
+ "once_cell",
1756
+ "rustix",
1757
+ "windows-sys 0.61.2",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "tinystr"
1762
+ version = "0.8.3"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1765
+ dependencies = [
1766
+ "displaydoc",
1767
+ "zerovec",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "tinytemplate"
1772
+ version = "1.2.1"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1775
+ dependencies = [
1776
+ "serde",
1777
+ "serde_json",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "tokio"
1782
+ version = "1.51.0"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
1785
+ dependencies = [
1786
+ "bytes",
1787
+ "libc",
1788
+ "mio",
1789
+ "pin-project-lite",
1790
+ "socket2",
1791
+ "windows-sys 0.61.2",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "tokio-native-tls"
1796
+ version = "0.3.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1799
+ dependencies = [
1800
+ "native-tls",
1801
+ "tokio",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "tokio-rustls"
1806
+ version = "0.26.4"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1809
+ dependencies = [
1810
+ "rustls",
1811
+ "tokio",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "tokio-util"
1816
+ version = "0.7.18"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1819
+ dependencies = [
1820
+ "bytes",
1821
+ "futures-core",
1822
+ "futures-sink",
1823
+ "pin-project-lite",
1824
+ "tokio",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "toml"
1829
+ version = "0.8.23"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1832
+ dependencies = [
1833
+ "serde",
1834
+ "serde_spanned",
1835
+ "toml_datetime",
1836
+ "toml_edit",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "toml_datetime"
1841
+ version = "0.6.11"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1844
+ dependencies = [
1845
+ "serde",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "toml_edit"
1850
+ version = "0.22.27"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1853
+ dependencies = [
1854
+ "indexmap",
1855
+ "serde",
1856
+ "serde_spanned",
1857
+ "toml_datetime",
1858
+ "toml_write",
1859
+ "winnow",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "toml_write"
1864
+ version = "0.1.2"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1867
+
1868
+ [[package]]
1869
+ name = "tower"
1870
+ version = "0.5.3"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1873
+ dependencies = [
1874
+ "futures-core",
1875
+ "futures-util",
1876
+ "pin-project-lite",
1877
+ "sync_wrapper",
1878
+ "tokio",
1879
+ "tower-layer",
1880
+ "tower-service",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "tower-http"
1885
+ version = "0.6.8"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1888
+ dependencies = [
1889
+ "bitflags",
1890
+ "bytes",
1891
+ "futures-util",
1892
+ "http",
1893
+ "http-body",
1894
+ "iri-string",
1895
+ "pin-project-lite",
1896
+ "tower",
1897
+ "tower-layer",
1898
+ "tower-service",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "tower-layer"
1903
+ version = "0.3.3"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1906
+
1907
+ [[package]]
1908
+ name = "tower-service"
1909
+ version = "0.3.3"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1912
+
1913
+ [[package]]
1914
+ name = "tracing"
1915
+ version = "0.1.44"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1918
+ dependencies = [
1919
+ "pin-project-lite",
1920
+ "tracing-core",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "tracing-core"
1925
+ version = "0.1.36"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1928
+ dependencies = [
1929
+ "once_cell",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "tree-sitter"
1934
+ version = "0.24.7"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "a5387dffa7ffc7d2dae12b50c6f7aab8ff79d6210147c6613561fc3d474c6f75"
1937
+ dependencies = [
1938
+ "cc",
1939
+ "regex",
1940
+ "regex-syntax",
1941
+ "streaming-iterator",
1942
+ "tree-sitter-language",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "tree-sitter-language"
1947
+ version = "0.1.7"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
1950
+
1951
+ [[package]]
1952
+ name = "tree-sitter-python"
1953
+ version = "0.23.6"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "3d065aaa27f3aaceaf60c1f0e0ac09e1cb9eb8ed28e7bcdaa52129cffc7f4b04"
1956
+ dependencies = [
1957
+ "cc",
1958
+ "tree-sitter-language",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "try-lock"
1963
+ version = "0.2.5"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1966
+
1967
+ [[package]]
1968
+ name = "unicode-ident"
1969
+ version = "1.0.24"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1972
+
1973
+ [[package]]
1974
+ name = "unicode-xid"
1975
+ version = "0.2.6"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1978
+
1979
+ [[package]]
1980
+ name = "unindent"
1981
+ version = "0.2.4"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1984
+
1985
+ [[package]]
1986
+ name = "untrusted"
1987
+ version = "0.9.0"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1990
+
1991
+ [[package]]
1992
+ name = "url"
1993
+ version = "2.5.8"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1996
+ dependencies = [
1997
+ "form_urlencoded",
1998
+ "idna",
1999
+ "percent-encoding",
2000
+ "serde",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "utf8_iter"
2005
+ version = "1.0.4"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2008
+
2009
+ [[package]]
2010
+ name = "utf8parse"
2011
+ version = "0.2.2"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2014
+
2015
+ [[package]]
2016
+ name = "vcpkg"
2017
+ version = "0.2.15"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020
+
2021
+ [[package]]
2022
+ name = "version_check"
2023
+ version = "0.9.5"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2026
+
2027
+ [[package]]
2028
+ name = "walkdir"
2029
+ version = "2.5.0"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2032
+ dependencies = [
2033
+ "same-file",
2034
+ "winapi-util",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "want"
2039
+ version = "0.3.1"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2042
+ dependencies = [
2043
+ "try-lock",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "wasi"
2048
+ version = "0.11.1+wasi-snapshot-preview1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2051
+
2052
+ [[package]]
2053
+ name = "wasip2"
2054
+ version = "1.0.2+wasi-0.2.9"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2057
+ dependencies = [
2058
+ "wit-bindgen",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "wasip3"
2063
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2066
+ dependencies = [
2067
+ "wit-bindgen",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "wasm-bindgen"
2072
+ version = "0.2.117"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
2075
+ dependencies = [
2076
+ "cfg-if",
2077
+ "once_cell",
2078
+ "rustversion",
2079
+ "wasm-bindgen-macro",
2080
+ "wasm-bindgen-shared",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "wasm-bindgen-futures"
2085
+ version = "0.4.67"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
2088
+ dependencies = [
2089
+ "js-sys",
2090
+ "wasm-bindgen",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "wasm-bindgen-macro"
2095
+ version = "0.2.117"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
2098
+ dependencies = [
2099
+ "quote",
2100
+ "wasm-bindgen-macro-support",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "wasm-bindgen-macro-support"
2105
+ version = "0.2.117"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
2108
+ dependencies = [
2109
+ "bumpalo",
2110
+ "proc-macro2",
2111
+ "quote",
2112
+ "syn",
2113
+ "wasm-bindgen-shared",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "wasm-bindgen-shared"
2118
+ version = "0.2.117"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
2121
+ dependencies = [
2122
+ "unicode-ident",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "wasm-encoder"
2127
+ version = "0.244.0"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2130
+ dependencies = [
2131
+ "leb128fmt",
2132
+ "wasmparser",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "wasm-metadata"
2137
+ version = "0.244.0"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2140
+ dependencies = [
2141
+ "anyhow",
2142
+ "indexmap",
2143
+ "wasm-encoder",
2144
+ "wasmparser",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "wasmparser"
2149
+ version = "0.244.0"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2152
+ dependencies = [
2153
+ "bitflags",
2154
+ "hashbrown 0.15.5",
2155
+ "indexmap",
2156
+ "semver",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "web-sys"
2161
+ version = "0.3.94"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
2164
+ dependencies = [
2165
+ "js-sys",
2166
+ "wasm-bindgen",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "winapi-util"
2171
+ version = "0.1.11"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2174
+ dependencies = [
2175
+ "windows-sys 0.61.2",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "windows-core"
2180
+ version = "0.62.2"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2183
+ dependencies = [
2184
+ "windows-implement",
2185
+ "windows-interface",
2186
+ "windows-link",
2187
+ "windows-result",
2188
+ "windows-strings",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "windows-implement"
2193
+ version = "0.60.2"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2196
+ dependencies = [
2197
+ "proc-macro2",
2198
+ "quote",
2199
+ "syn",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "windows-interface"
2204
+ version = "0.59.3"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2207
+ dependencies = [
2208
+ "proc-macro2",
2209
+ "quote",
2210
+ "syn",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "windows-link"
2215
+ version = "0.2.1"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2218
+
2219
+ [[package]]
2220
+ name = "windows-registry"
2221
+ version = "0.6.1"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2224
+ dependencies = [
2225
+ "windows-link",
2226
+ "windows-result",
2227
+ "windows-strings",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "windows-result"
2232
+ version = "0.4.1"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2235
+ dependencies = [
2236
+ "windows-link",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "windows-strings"
2241
+ version = "0.5.1"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2244
+ dependencies = [
2245
+ "windows-link",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "windows-sys"
2250
+ version = "0.52.0"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2253
+ dependencies = [
2254
+ "windows-targets",
2255
+ ]
2256
+
2257
+ [[package]]
2258
+ name = "windows-sys"
2259
+ version = "0.59.0"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2262
+ dependencies = [
2263
+ "windows-targets",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "windows-sys"
2268
+ version = "0.61.2"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2271
+ dependencies = [
2272
+ "windows-link",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "windows-targets"
2277
+ version = "0.52.6"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2280
+ dependencies = [
2281
+ "windows_aarch64_gnullvm",
2282
+ "windows_aarch64_msvc",
2283
+ "windows_i686_gnu",
2284
+ "windows_i686_gnullvm",
2285
+ "windows_i686_msvc",
2286
+ "windows_x86_64_gnu",
2287
+ "windows_x86_64_gnullvm",
2288
+ "windows_x86_64_msvc",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "windows_aarch64_gnullvm"
2293
+ version = "0.52.6"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2296
+
2297
+ [[package]]
2298
+ name = "windows_aarch64_msvc"
2299
+ version = "0.52.6"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2302
+
2303
+ [[package]]
2304
+ name = "windows_i686_gnu"
2305
+ version = "0.52.6"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2308
+
2309
+ [[package]]
2310
+ name = "windows_i686_gnullvm"
2311
+ version = "0.52.6"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2314
+
2315
+ [[package]]
2316
+ name = "windows_i686_msvc"
2317
+ version = "0.52.6"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2320
+
2321
+ [[package]]
2322
+ name = "windows_x86_64_gnu"
2323
+ version = "0.52.6"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2326
+
2327
+ [[package]]
2328
+ name = "windows_x86_64_gnullvm"
2329
+ version = "0.52.6"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2332
+
2333
+ [[package]]
2334
+ name = "windows_x86_64_msvc"
2335
+ version = "0.52.6"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2338
+
2339
+ [[package]]
2340
+ name = "winnow"
2341
+ version = "0.7.15"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2344
+ dependencies = [
2345
+ "memchr",
2346
+ ]
2347
+
2348
+ [[package]]
2349
+ name = "wit-bindgen"
2350
+ version = "0.51.0"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2353
+ dependencies = [
2354
+ "wit-bindgen-rust-macro",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "wit-bindgen-core"
2359
+ version = "0.51.0"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2362
+ dependencies = [
2363
+ "anyhow",
2364
+ "heck",
2365
+ "wit-parser",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "wit-bindgen-rust"
2370
+ version = "0.51.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2373
+ dependencies = [
2374
+ "anyhow",
2375
+ "heck",
2376
+ "indexmap",
2377
+ "prettyplease",
2378
+ "syn",
2379
+ "wasm-metadata",
2380
+ "wit-bindgen-core",
2381
+ "wit-component",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "wit-bindgen-rust-macro"
2386
+ version = "0.51.0"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2389
+ dependencies = [
2390
+ "anyhow",
2391
+ "prettyplease",
2392
+ "proc-macro2",
2393
+ "quote",
2394
+ "syn",
2395
+ "wit-bindgen-core",
2396
+ "wit-bindgen-rust",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "wit-component"
2401
+ version = "0.244.0"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2404
+ dependencies = [
2405
+ "anyhow",
2406
+ "bitflags",
2407
+ "indexmap",
2408
+ "log",
2409
+ "serde",
2410
+ "serde_derive",
2411
+ "serde_json",
2412
+ "wasm-encoder",
2413
+ "wasm-metadata",
2414
+ "wasmparser",
2415
+ "wit-parser",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "wit-parser"
2420
+ version = "0.244.0"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2423
+ dependencies = [
2424
+ "anyhow",
2425
+ "id-arena",
2426
+ "indexmap",
2427
+ "log",
2428
+ "semver",
2429
+ "serde",
2430
+ "serde_derive",
2431
+ "serde_json",
2432
+ "unicode-xid",
2433
+ "wasmparser",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "writeable"
2438
+ version = "0.6.3"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2441
+
2442
+ [[package]]
2443
+ name = "yoke"
2444
+ version = "0.8.2"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2447
+ dependencies = [
2448
+ "stable_deref_trait",
2449
+ "yoke-derive",
2450
+ "zerofrom",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "yoke-derive"
2455
+ version = "0.8.2"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2458
+ dependencies = [
2459
+ "proc-macro2",
2460
+ "quote",
2461
+ "syn",
2462
+ "synstructure",
2463
+ ]
2464
+
2465
+ [[package]]
2466
+ name = "zerocopy"
2467
+ version = "0.8.48"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2470
+ dependencies = [
2471
+ "zerocopy-derive",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "zerocopy-derive"
2476
+ version = "0.8.48"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2479
+ dependencies = [
2480
+ "proc-macro2",
2481
+ "quote",
2482
+ "syn",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "zerofrom"
2487
+ version = "0.1.7"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
2490
+ dependencies = [
2491
+ "zerofrom-derive",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "zerofrom-derive"
2496
+ version = "0.1.7"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2499
+ dependencies = [
2500
+ "proc-macro2",
2501
+ "quote",
2502
+ "syn",
2503
+ "synstructure",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "zeroize"
2508
+ version = "1.8.2"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2511
+
2512
+ [[package]]
2513
+ name = "zerotrie"
2514
+ version = "0.2.4"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2517
+ dependencies = [
2518
+ "displaydoc",
2519
+ "yoke",
2520
+ "zerofrom",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "zerovec"
2525
+ version = "0.11.6"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2528
+ dependencies = [
2529
+ "yoke",
2530
+ "zerofrom",
2531
+ "zerovec-derive",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "zerovec-derive"
2536
+ version = "0.11.3"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2539
+ dependencies = [
2540
+ "proc-macro2",
2541
+ "quote",
2542
+ "syn",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "zmij"
2547
+ version = "1.0.21"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"