flareguard 0.1.0

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 (64) hide show
  1. package/Cargo.lock +2962 -0
  2. package/Cargo.toml +66 -0
  3. package/LICENSE +21 -0
  4. package/README.md +115 -0
  5. package/bin/flareguard.js +78 -0
  6. package/package.json +50 -0
  7. package/scripts/postinstall.mjs +83 -0
  8. package/src/bindings/ast_scanner.rs +950 -0
  9. package/src/bindings/cli.rs +49 -0
  10. package/src/bindings/jsonc.rs +166 -0
  11. package/src/bindings/mod.rs +7 -0
  12. package/src/bindings/reporter.rs +328 -0
  13. package/src/bindings/types.rs +129 -0
  14. package/src/bindings/validator.rs +227 -0
  15. package/src/bindings/wrangler.rs +647 -0
  16. package/src/cli.rs +77 -0
  17. package/src/lib.rs +7 -0
  18. package/src/main.rs +451 -0
  19. package/src/origin/cli.rs +92 -0
  20. package/src/origin/cloudflare.rs +170 -0
  21. package/src/origin/confidence.rs +320 -0
  22. package/src/origin/crtsh.rs +144 -0
  23. package/src/origin/dns.rs +177 -0
  24. package/src/origin/enumerator.rs +271 -0
  25. package/src/origin/error.rs +19 -0
  26. package/src/origin/mock.rs +320 -0
  27. package/src/origin/mod.rs +19 -0
  28. package/src/origin/models.rs +167 -0
  29. package/src/origin/prober.rs +260 -0
  30. package/src/origin/remediation.rs +73 -0
  31. package/src/origin/report.rs +625 -0
  32. package/src/origin/scanner.rs +217 -0
  33. package/src/secrets/cli.rs +94 -0
  34. package/src/secrets/env_parser.rs +464 -0
  35. package/src/secrets/ignore.rs +139 -0
  36. package/src/secrets/mod.rs +14 -0
  37. package/src/secrets/report/json_format.rs +97 -0
  38. package/src/secrets/report/mod.rs +48 -0
  39. package/src/secrets/report/sarif.rs +225 -0
  40. package/src/secrets/report/text.rs +105 -0
  41. package/src/secrets/rules/builtin.rs +280 -0
  42. package/src/secrets/rules/entropy.rs +66 -0
  43. package/src/secrets/rules/mod.rs +7 -0
  44. package/src/secrets/rules/types.rs +183 -0
  45. package/src/secrets/scanner.rs +444 -0
  46. package/src/zone/cli.rs +111 -0
  47. package/src/zone/client/cf_client.rs +405 -0
  48. package/src/zone/client/mod.rs +5 -0
  49. package/src/zone/client/provider.rs +12 -0
  50. package/src/zone/mock_data.rs +481 -0
  51. package/src/zone/mod.rs +125 -0
  52. package/src/zone/models/audit.rs +194 -0
  53. package/src/zone/models/cloudflare.rs +252 -0
  54. package/src/zone/models/mod.rs +7 -0
  55. package/src/zone/models/sarif.rs +89 -0
  56. package/src/zone/reporters/html_rep.rs +345 -0
  57. package/src/zone/reporters/json_rep.rs +7 -0
  58. package/src/zone/reporters/mod.rs +9 -0
  59. package/src/zone/reporters/sarif_rep.rs +100 -0
  60. package/src/zone/reporters/terminal.rs +322 -0
  61. package/src/zone/rules/definitions.rs +201 -0
  62. package/src/zone/rules/evaluator.rs +484 -0
  63. package/src/zone/rules/mod.rs +5 -0
  64. package/src/zone/scoring.rs +104 -0
package/Cargo.lock ADDED
@@ -0,0 +1,2962 @@
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.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "ansi-str"
31
+ version = "0.9.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "060de1453b69f46304b28274f382132f4e72c55637cf362920926a70d090890d"
34
+ dependencies = [
35
+ "ansitok",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "ansitok"
40
+ version = "0.3.0"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "c0a8acea8c2f1c60f0a92a8cd26bf96ca97db56f10bbcab238bbe0cceba659ee"
43
+ dependencies = [
44
+ "nom",
45
+ "vte",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "anstream"
50
+ version = "1.0.0"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
53
+ dependencies = [
54
+ "anstyle",
55
+ "anstyle-parse",
56
+ "anstyle-query",
57
+ "anstyle-wincon",
58
+ "colorchoice",
59
+ "is_terminal_polyfill",
60
+ "utf8parse",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "anstyle"
65
+ version = "1.0.14"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
68
+
69
+ [[package]]
70
+ name = "anstyle-parse"
71
+ version = "1.0.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
74
+ dependencies = [
75
+ "utf8parse",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle-query"
80
+ version = "1.1.5"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
83
+ dependencies = [
84
+ "windows-sys 0.61.2",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-wincon"
89
+ version = "3.0.11"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
92
+ dependencies = [
93
+ "anstyle",
94
+ "once_cell_polyfill",
95
+ "windows-sys 0.61.2",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anyhow"
100
+ version = "1.0.104"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
103
+
104
+ [[package]]
105
+ name = "arrayvec"
106
+ version = "0.7.8"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
109
+
110
+ [[package]]
111
+ name = "async-trait"
112
+ version = "0.1.92"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
115
+ dependencies = [
116
+ "proc-macro2",
117
+ "quote",
118
+ "syn 3.0.3",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "atomic-waker"
123
+ version = "1.1.2"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
126
+
127
+ [[package]]
128
+ name = "autocfg"
129
+ version = "1.5.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
132
+
133
+ [[package]]
134
+ name = "base64"
135
+ version = "0.22.1"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
138
+
139
+ [[package]]
140
+ name = "bitflags"
141
+ version = "2.13.1"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
144
+
145
+ [[package]]
146
+ name = "block-buffer"
147
+ version = "0.10.4"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
150
+ dependencies = [
151
+ "generic-array",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "bumpalo"
156
+ version = "3.20.3"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
159
+
160
+ [[package]]
161
+ name = "bytecount"
162
+ version = "0.6.9"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
165
+
166
+ [[package]]
167
+ name = "bytes"
168
+ version = "1.12.1"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
171
+
172
+ [[package]]
173
+ name = "castaway"
174
+ version = "0.2.4"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
177
+ dependencies = [
178
+ "rustversion",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "cc"
183
+ version = "1.4.4"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
186
+ dependencies = [
187
+ "find-msvc-tools",
188
+ "shlex",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "cfg-if"
193
+ version = "1.0.4"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
196
+
197
+ [[package]]
198
+ name = "chacha20"
199
+ version = "0.10.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
202
+ dependencies = [
203
+ "cfg-if",
204
+ "cpufeatures 0.3.0",
205
+ "rand_core",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "chrono"
210
+ version = "0.4.45"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
213
+ dependencies = [
214
+ "iana-time-zone",
215
+ "js-sys",
216
+ "num-traits",
217
+ "serde",
218
+ "wasm-bindgen",
219
+ "windows-link",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap"
224
+ version = "4.6.6"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
227
+ dependencies = [
228
+ "clap_builder",
229
+ "clap_derive",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "clap_builder"
234
+ version = "4.6.6"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
237
+ dependencies = [
238
+ "anstream",
239
+ "anstyle",
240
+ "clap_lex",
241
+ "strsim",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "clap_complete"
246
+ version = "4.6.9"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "3be2ad0423bdbbb0e25bc89add796f3559706d4a95e1bc98e4d9662a957b6a19"
249
+ dependencies = [
250
+ "clap",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "clap_derive"
255
+ version = "4.6.4"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
258
+ dependencies = [
259
+ "heck",
260
+ "proc-macro2",
261
+ "quote",
262
+ "syn 3.0.3",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "clap_lex"
267
+ version = "1.1.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
270
+
271
+ [[package]]
272
+ name = "colorchoice"
273
+ version = "1.0.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
276
+
277
+ [[package]]
278
+ name = "colored"
279
+ version = "3.1.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
282
+ dependencies = [
283
+ "windows-sys 0.61.2",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "combine"
288
+ version = "4.6.7"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
291
+ dependencies = [
292
+ "bytes",
293
+ "memchr",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "comfy-table"
298
+ version = "7.2.2"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
301
+ dependencies = [
302
+ "ansi-str",
303
+ "console",
304
+ "crossterm",
305
+ "unicode-segmentation",
306
+ "unicode-width",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "compact_str"
311
+ version = "0.10.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "79fcda08c33bb58b97008b2cdada6622500e949e060f5913361763121abd2416"
314
+ dependencies = [
315
+ "castaway",
316
+ "cfg-if",
317
+ "itoa",
318
+ "static_assertions",
319
+ "zmij",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "console"
324
+ version = "0.16.4"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
327
+ dependencies = [
328
+ "encode_unicode",
329
+ "libc",
330
+ "unicode-width",
331
+ "windows-sys 0.61.2",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "core-foundation"
336
+ version = "0.9.4"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
339
+ dependencies = [
340
+ "core-foundation-sys",
341
+ "libc",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "core-foundation"
346
+ version = "0.10.1"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
349
+ dependencies = [
350
+ "core-foundation-sys",
351
+ "libc",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "core-foundation-sys"
356
+ version = "0.8.7"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
359
+
360
+ [[package]]
361
+ name = "cow-utils"
362
+ version = "0.1.3"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
365
+
366
+ [[package]]
367
+ name = "cpufeatures"
368
+ version = "0.2.17"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
371
+ dependencies = [
372
+ "libc",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "cpufeatures"
377
+ version = "0.3.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
380
+ dependencies = [
381
+ "libc",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "critical-section"
386
+ version = "1.2.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
389
+
390
+ [[package]]
391
+ name = "crossbeam-channel"
392
+ version = "0.5.16"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
395
+ dependencies = [
396
+ "crossbeam-utils",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "crossbeam-deque"
401
+ version = "0.8.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
404
+ dependencies = [
405
+ "crossbeam-epoch",
406
+ "crossbeam-utils",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "crossbeam-epoch"
411
+ version = "0.9.20"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
414
+ dependencies = [
415
+ "crossbeam-utils",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "crossbeam-utils"
420
+ version = "0.8.22"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
423
+
424
+ [[package]]
425
+ name = "crossterm"
426
+ version = "0.29.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
429
+ dependencies = [
430
+ "bitflags",
431
+ "crossterm_winapi",
432
+ "document-features",
433
+ "parking_lot",
434
+ "rustix",
435
+ "winapi",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "crossterm_winapi"
440
+ version = "0.9.1"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
443
+ dependencies = [
444
+ "winapi",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "crypto-common"
449
+ version = "0.1.7"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
452
+ dependencies = [
453
+ "generic-array",
454
+ "typenum",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "data-encoding"
459
+ version = "2.11.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
462
+
463
+ [[package]]
464
+ name = "digest"
465
+ version = "0.10.7"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
468
+ dependencies = [
469
+ "block-buffer",
470
+ "crypto-common",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "displaydoc"
475
+ version = "0.2.7"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
478
+ dependencies = [
479
+ "proc-macro2",
480
+ "quote",
481
+ "syn 3.0.3",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "document-features"
486
+ version = "0.2.12"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
489
+ dependencies = [
490
+ "litrs",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "dragonbox_ecma"
495
+ version = "0.1.12"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
498
+
499
+ [[package]]
500
+ name = "either"
501
+ version = "1.18.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
504
+
505
+ [[package]]
506
+ name = "encode_unicode"
507
+ version = "1.0.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
510
+
511
+ [[package]]
512
+ name = "encoding_rs"
513
+ version = "0.8.35"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
516
+ dependencies = [
517
+ "cfg-if",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "equivalent"
522
+ version = "1.0.2"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
525
+
526
+ [[package]]
527
+ name = "errno"
528
+ version = "0.3.14"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
531
+ dependencies = [
532
+ "libc",
533
+ "windows-sys 0.61.2",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "fastrand"
538
+ version = "2.5.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
541
+
542
+ [[package]]
543
+ name = "find-msvc-tools"
544
+ version = "0.1.11"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
547
+
548
+ [[package]]
549
+ name = "flareguard"
550
+ version = "0.1.0"
551
+ dependencies = [
552
+ "anyhow",
553
+ "chrono",
554
+ "clap",
555
+ "clap_complete",
556
+ "colored",
557
+ "comfy-table",
558
+ "futures",
559
+ "glob",
560
+ "hex",
561
+ "hickory-resolver",
562
+ "ipnet",
563
+ "memmap2",
564
+ "oxc_allocator",
565
+ "oxc_ast",
566
+ "oxc_parser",
567
+ "oxc_span",
568
+ "rayon",
569
+ "regex",
570
+ "reqwest",
571
+ "serde",
572
+ "serde_json",
573
+ "sha2",
574
+ "tempfile",
575
+ "thiserror",
576
+ "tokio",
577
+ "toml",
578
+ "walkdir",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "fnv"
583
+ version = "1.0.7"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
586
+
587
+ [[package]]
588
+ name = "foreign-types"
589
+ version = "0.3.2"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
592
+ dependencies = [
593
+ "foreign-types-shared",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "foreign-types-shared"
598
+ version = "0.1.1"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
601
+
602
+ [[package]]
603
+ name = "form_urlencoded"
604
+ version = "1.2.2"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
607
+ dependencies = [
608
+ "percent-encoding",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "futures"
613
+ version = "0.3.34"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
616
+ dependencies = [
617
+ "futures-channel",
618
+ "futures-core",
619
+ "futures-executor",
620
+ "futures-io",
621
+ "futures-sink",
622
+ "futures-task",
623
+ "futures-util",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "futures-channel"
628
+ version = "0.3.34"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
631
+ dependencies = [
632
+ "futures-core",
633
+ "futures-sink",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "futures-core"
638
+ version = "0.3.34"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
641
+
642
+ [[package]]
643
+ name = "futures-executor"
644
+ version = "0.3.34"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
647
+ dependencies = [
648
+ "futures-core",
649
+ "futures-task",
650
+ "futures-util",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "futures-io"
655
+ version = "0.3.34"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
658
+
659
+ [[package]]
660
+ name = "futures-macro"
661
+ version = "0.3.34"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
664
+ dependencies = [
665
+ "proc-macro2",
666
+ "quote",
667
+ "syn 3.0.3",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "futures-sink"
672
+ version = "0.3.34"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
675
+
676
+ [[package]]
677
+ name = "futures-task"
678
+ version = "0.3.34"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
681
+
682
+ [[package]]
683
+ name = "futures-util"
684
+ version = "0.3.34"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
687
+ dependencies = [
688
+ "futures-channel",
689
+ "futures-core",
690
+ "futures-io",
691
+ "futures-macro",
692
+ "futures-sink",
693
+ "futures-task",
694
+ "memchr",
695
+ "pin-project-lite",
696
+ "slab",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "generic-array"
701
+ version = "0.14.7"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
704
+ dependencies = [
705
+ "typenum",
706
+ "version_check",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "getrandom"
711
+ version = "0.2.17"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
714
+ dependencies = [
715
+ "cfg-if",
716
+ "libc",
717
+ "wasi",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "getrandom"
722
+ version = "0.4.3"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
725
+ dependencies = [
726
+ "cfg-if",
727
+ "libc",
728
+ "r-efi",
729
+ "rand_core",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "glob"
734
+ version = "0.3.4"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
737
+
738
+ [[package]]
739
+ name = "h2"
740
+ version = "0.4.18"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "839c0e8a181239723652be9062bb56ca5bf5f64011f73b623f6f4fc59086a228"
743
+ dependencies = [
744
+ "atomic-waker",
745
+ "bytes",
746
+ "fnv",
747
+ "futures-core",
748
+ "futures-sink",
749
+ "http",
750
+ "indexmap",
751
+ "slab",
752
+ "tokio",
753
+ "tokio-util",
754
+ "tracing",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "hashbrown"
759
+ version = "0.17.1"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
762
+ dependencies = [
763
+ "allocator-api2",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "heck"
768
+ version = "0.5.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
771
+
772
+ [[package]]
773
+ name = "hex"
774
+ version = "0.4.3"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
777
+
778
+ [[package]]
779
+ name = "hickory-net"
780
+ version = "0.26.1"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "e2295ed2f9c31e471e1428a8f88a3f0e1f4b27c15049592138d1eebe9c35b183"
783
+ dependencies = [
784
+ "async-trait",
785
+ "cfg-if",
786
+ "data-encoding",
787
+ "futures-channel",
788
+ "futures-io",
789
+ "futures-util",
790
+ "hickory-proto",
791
+ "idna",
792
+ "ipnet",
793
+ "jni",
794
+ "rand",
795
+ "thiserror",
796
+ "tinyvec",
797
+ "tokio",
798
+ "tracing",
799
+ "url",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "hickory-proto"
804
+ version = "0.26.1"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "0bab31817bfb44672a252e97fe81cd0c18d1b2cf892108922f6818820df8c643"
807
+ dependencies = [
808
+ "data-encoding",
809
+ "idna",
810
+ "ipnet",
811
+ "jni",
812
+ "once_cell",
813
+ "prefix-trie",
814
+ "rand",
815
+ "ring",
816
+ "thiserror",
817
+ "tinyvec",
818
+ "tracing",
819
+ "url",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "hickory-resolver"
824
+ version = "0.26.1"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "f0d58d28879ceecde6607729660c2667a081ccdc082e082675042793960f178c"
827
+ dependencies = [
828
+ "cfg-if",
829
+ "futures-util",
830
+ "hickory-net",
831
+ "hickory-proto",
832
+ "ipconfig",
833
+ "ipnet",
834
+ "jni",
835
+ "moka",
836
+ "ndk-context",
837
+ "once_cell",
838
+ "parking_lot",
839
+ "rand",
840
+ "resolv-conf",
841
+ "smallvec",
842
+ "system-configuration",
843
+ "thiserror",
844
+ "tokio",
845
+ "tracing",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "http"
850
+ version = "1.5.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
853
+ dependencies = [
854
+ "bytes",
855
+ "itoa",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "http-body"
860
+ version = "1.1.0"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
863
+ dependencies = [
864
+ "bytes",
865
+ "http",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "http-body-util"
870
+ version = "0.1.5"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
873
+ dependencies = [
874
+ "bytes",
875
+ "futures-core",
876
+ "http",
877
+ "http-body",
878
+ "pin-project-lite",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "httparse"
883
+ version = "1.10.1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
886
+
887
+ [[package]]
888
+ name = "hyper"
889
+ version = "1.11.0"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
892
+ dependencies = [
893
+ "atomic-waker",
894
+ "bytes",
895
+ "futures-channel",
896
+ "futures-core",
897
+ "h2",
898
+ "http",
899
+ "http-body",
900
+ "httparse",
901
+ "itoa",
902
+ "pin-project-lite",
903
+ "smallvec",
904
+ "tokio",
905
+ "want",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "hyper-rustls"
910
+ version = "0.27.9"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
913
+ dependencies = [
914
+ "http",
915
+ "hyper",
916
+ "hyper-util",
917
+ "rustls",
918
+ "tokio",
919
+ "tokio-rustls",
920
+ "tower-service",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "hyper-tls"
925
+ version = "0.6.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
928
+ dependencies = [
929
+ "bytes",
930
+ "http-body-util",
931
+ "hyper",
932
+ "hyper-util",
933
+ "native-tls",
934
+ "tokio",
935
+ "tokio-native-tls",
936
+ "tower-service",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "hyper-util"
941
+ version = "0.1.20"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
944
+ dependencies = [
945
+ "base64",
946
+ "bytes",
947
+ "futures-channel",
948
+ "futures-util",
949
+ "http",
950
+ "http-body",
951
+ "hyper",
952
+ "ipnet",
953
+ "libc",
954
+ "percent-encoding",
955
+ "pin-project-lite",
956
+ "socket2",
957
+ "system-configuration",
958
+ "tokio",
959
+ "tower-service",
960
+ "tracing",
961
+ "windows-registry",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "iana-time-zone"
966
+ version = "0.1.65"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
969
+ dependencies = [
970
+ "android_system_properties",
971
+ "core-foundation-sys",
972
+ "iana-time-zone-haiku",
973
+ "js-sys",
974
+ "log",
975
+ "wasm-bindgen",
976
+ "windows-core",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "iana-time-zone-haiku"
981
+ version = "0.1.2"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
984
+ dependencies = [
985
+ "cc",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "icu_collections"
990
+ version = "2.3.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
993
+ dependencies = [
994
+ "displaydoc",
995
+ "potential_utf",
996
+ "utf8_iter",
997
+ "yoke",
998
+ "zerofrom",
999
+ "zerovec",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "icu_locale_core"
1004
+ version = "2.3.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
1007
+ dependencies = [
1008
+ "displaydoc",
1009
+ "litemap",
1010
+ "tinystr",
1011
+ "writeable",
1012
+ "zerovec",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "icu_normalizer"
1017
+ version = "2.3.0"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
1020
+ dependencies = [
1021
+ "icu_collections",
1022
+ "icu_normalizer_data",
1023
+ "icu_properties",
1024
+ "icu_provider",
1025
+ "smallvec",
1026
+ "zerovec",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "icu_normalizer_data"
1031
+ version = "2.3.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
1034
+
1035
+ [[package]]
1036
+ name = "icu_properties"
1037
+ version = "2.3.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
1040
+ dependencies = [
1041
+ "displaydoc",
1042
+ "icu_collections",
1043
+ "icu_locale_core",
1044
+ "icu_properties_data",
1045
+ "icu_provider",
1046
+ "zerotrie",
1047
+ "zerovec",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "icu_properties_data"
1052
+ version = "2.3.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
1055
+
1056
+ [[package]]
1057
+ name = "icu_provider"
1058
+ version = "2.3.1"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
1061
+ dependencies = [
1062
+ "displaydoc",
1063
+ "icu_locale_core",
1064
+ "writeable",
1065
+ "yoke",
1066
+ "zerofrom",
1067
+ "zerotrie",
1068
+ "zerovec",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "idna"
1073
+ version = "1.1.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1076
+ dependencies = [
1077
+ "idna_adapter",
1078
+ "smallvec",
1079
+ "utf8_iter",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "idna_adapter"
1084
+ version = "1.2.2"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1087
+ dependencies = [
1088
+ "icu_normalizer",
1089
+ "icu_properties",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "indexmap"
1094
+ version = "2.14.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1097
+ dependencies = [
1098
+ "equivalent",
1099
+ "hashbrown",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "ipconfig"
1104
+ version = "0.3.4"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
1107
+ dependencies = [
1108
+ "socket2",
1109
+ "widestring",
1110
+ "windows-registry",
1111
+ "windows-result",
1112
+ "windows-sys 0.61.2",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "ipnet"
1117
+ version = "2.12.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
1120
+ dependencies = [
1121
+ "serde",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "is_terminal_polyfill"
1126
+ version = "1.70.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1129
+
1130
+ [[package]]
1131
+ name = "itoa"
1132
+ version = "1.0.18"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1135
+
1136
+ [[package]]
1137
+ name = "jni"
1138
+ version = "0.22.4"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1141
+ dependencies = [
1142
+ "cfg-if",
1143
+ "combine",
1144
+ "jni-macros",
1145
+ "jni-sys",
1146
+ "log",
1147
+ "simd_cesu8",
1148
+ "thiserror",
1149
+ "walkdir",
1150
+ "windows-link",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "jni-macros"
1155
+ version = "0.22.4"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1158
+ dependencies = [
1159
+ "proc-macro2",
1160
+ "quote",
1161
+ "rustc_version",
1162
+ "simd_cesu8",
1163
+ "syn 2.0.119",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "jni-sys"
1168
+ version = "0.4.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1171
+ dependencies = [
1172
+ "jni-sys-macros",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "jni-sys-macros"
1177
+ version = "0.4.1"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1180
+ dependencies = [
1181
+ "quote",
1182
+ "syn 2.0.119",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "js-sys"
1187
+ version = "0.3.104"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
1190
+ dependencies = [
1191
+ "cfg-if",
1192
+ "futures-util",
1193
+ "wasm-bindgen",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "libc"
1198
+ version = "0.2.189"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1201
+
1202
+ [[package]]
1203
+ name = "linux-raw-sys"
1204
+ version = "0.12.1"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1207
+
1208
+ [[package]]
1209
+ name = "litemap"
1210
+ version = "0.8.3"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
1213
+
1214
+ [[package]]
1215
+ name = "litrs"
1216
+ version = "1.0.0"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1219
+
1220
+ [[package]]
1221
+ name = "lock_api"
1222
+ version = "0.4.14"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1225
+ dependencies = [
1226
+ "scopeguard",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "log"
1231
+ version = "0.4.34"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
1234
+
1235
+ [[package]]
1236
+ name = "memchr"
1237
+ version = "2.8.3"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1240
+
1241
+ [[package]]
1242
+ name = "memmap2"
1243
+ version = "0.9.11"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1246
+ dependencies = [
1247
+ "libc",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "mime"
1252
+ version = "0.3.17"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1255
+
1256
+ [[package]]
1257
+ name = "minimal-lexical"
1258
+ version = "0.2.1"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1261
+
1262
+ [[package]]
1263
+ name = "mio"
1264
+ version = "1.2.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1267
+ dependencies = [
1268
+ "libc",
1269
+ "wasi",
1270
+ "windows-sys 0.61.2",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "moka"
1275
+ version = "0.12.16"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9"
1278
+ dependencies = [
1279
+ "crossbeam-channel",
1280
+ "crossbeam-epoch",
1281
+ "crossbeam-utils",
1282
+ "equivalent",
1283
+ "parking_lot",
1284
+ "portable-atomic",
1285
+ "smallvec",
1286
+ "tagptr",
1287
+ "uuid",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "native-tls"
1292
+ version = "0.2.18"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1295
+ dependencies = [
1296
+ "libc",
1297
+ "log",
1298
+ "openssl",
1299
+ "openssl-probe",
1300
+ "openssl-sys",
1301
+ "schannel",
1302
+ "security-framework",
1303
+ "security-framework-sys",
1304
+ "tempfile",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "ndk-context"
1309
+ version = "0.1.1"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1312
+
1313
+ [[package]]
1314
+ name = "nom"
1315
+ version = "7.1.3"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1318
+ dependencies = [
1319
+ "memchr",
1320
+ "minimal-lexical",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "nonmax"
1325
+ version = "0.5.5"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
1328
+
1329
+ [[package]]
1330
+ name = "num-bigint"
1331
+ version = "0.5.1"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
1334
+ dependencies = [
1335
+ "num-integer",
1336
+ "num-traits",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "num-integer"
1341
+ version = "0.1.47"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
1344
+ dependencies = [
1345
+ "num-traits",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "num-traits"
1350
+ version = "0.2.19"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1353
+ dependencies = [
1354
+ "autocfg",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "once_cell"
1359
+ version = "1.21.4"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1362
+ dependencies = [
1363
+ "critical-section",
1364
+ "portable-atomic",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "once_cell_polyfill"
1369
+ version = "1.70.2"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1372
+
1373
+ [[package]]
1374
+ name = "openssl"
1375
+ version = "0.10.81"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
1378
+ dependencies = [
1379
+ "bitflags",
1380
+ "cfg-if",
1381
+ "foreign-types",
1382
+ "libc",
1383
+ "openssl-macros",
1384
+ "openssl-sys",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "openssl-macros"
1389
+ version = "0.1.1"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1392
+ dependencies = [
1393
+ "proc-macro2",
1394
+ "quote",
1395
+ "syn 2.0.119",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "openssl-probe"
1400
+ version = "0.2.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1403
+
1404
+ [[package]]
1405
+ name = "openssl-sys"
1406
+ version = "0.9.117"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
1409
+ dependencies = [
1410
+ "cc",
1411
+ "libc",
1412
+ "pkg-config",
1413
+ "vcpkg",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "owo-colors"
1418
+ version = "4.3.0"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
1421
+
1422
+ [[package]]
1423
+ name = "oxc_allocator"
1424
+ version = "0.146.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "064fce871c5cb07e557049ed27c8ca2aa530db797f73424c67e4bb8cfe61175e"
1427
+ dependencies = [
1428
+ "allocator-api2",
1429
+ "hashbrown",
1430
+ "oxc_data_structures",
1431
+ "rustc-hash",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "oxc_ast"
1436
+ version = "0.146.0"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "a999fd4494b604fc0328fc43443bc1298722500587d87d7e993118bd82c65d7b"
1439
+ dependencies = [
1440
+ "bitflags",
1441
+ "oxc_allocator",
1442
+ "oxc_ast_macros",
1443
+ "oxc_data_structures",
1444
+ "oxc_diagnostics",
1445
+ "oxc_estree",
1446
+ "oxc_regular_expression",
1447
+ "oxc_span",
1448
+ "oxc_str",
1449
+ "oxc_syntax",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "oxc_ast_macros"
1454
+ version = "0.146.0"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "d715e3c300c95b1d797b05526567161fd86fcac2ac68235101c61b736f216cde"
1457
+ dependencies = [
1458
+ "phf",
1459
+ "proc-macro2",
1460
+ "quote",
1461
+ "syn 3.0.3",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "oxc_data_structures"
1466
+ version = "0.146.0"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "d15a23b57a931fda6bc9a4fdc3fbabcac6a2edfd0b7216cb7c81432f0e9f54d9"
1469
+
1470
+ [[package]]
1471
+ name = "oxc_diagnostics"
1472
+ version = "0.146.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "f2d0ce1ec51b07b6501eecedd5ab50835b7ebe5c8463cada3b2e6d984d0943af"
1475
+ dependencies = [
1476
+ "bytecount",
1477
+ "cow-utils",
1478
+ "itoa",
1479
+ "memchr",
1480
+ "owo-colors",
1481
+ "oxc_span",
1482
+ "percent-encoding",
1483
+ "smallvec",
1484
+ "textwrap",
1485
+ "unicode-segmentation",
1486
+ "unicode-width",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "oxc_ecmascript"
1491
+ version = "0.146.0"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "8b5d3d07165b7aadcd021f62cd95fb7d62cb6977b8bbfb42fa12adbfb7e75257"
1494
+ dependencies = [
1495
+ "dragonbox_ecma",
1496
+ "itoa",
1497
+ "num-bigint",
1498
+ "num-traits",
1499
+ "oxc_ast",
1500
+ "oxc_data_structures",
1501
+ "oxc_span",
1502
+ "oxc_syntax",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "oxc_estree"
1507
+ version = "0.146.0"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "fc7af86a59b7aeb2845ffea2cc21ae259053865b175e9ac936a7d72f2744abe5"
1510
+
1511
+ [[package]]
1512
+ name = "oxc_index"
1513
+ version = "5.0.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "191884bee6c3744909a51acc7d78d4ae370d817b25875b10642f632327b6296e"
1516
+ dependencies = [
1517
+ "nonmax",
1518
+ "serde",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "oxc_parser"
1523
+ version = "0.146.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "311c29dfdf55ea8bf065cf300b3d0dca5fe1c0fb8059c9ba70a6c98cce75306e"
1526
+ dependencies = [
1527
+ "bitflags",
1528
+ "cow-utils",
1529
+ "memchr",
1530
+ "num-bigint",
1531
+ "num-traits",
1532
+ "oxc_allocator",
1533
+ "oxc_ast",
1534
+ "oxc_data_structures",
1535
+ "oxc_diagnostics",
1536
+ "oxc_ecmascript",
1537
+ "oxc_regular_expression",
1538
+ "oxc_span",
1539
+ "oxc_str",
1540
+ "oxc_syntax",
1541
+ "rustc-hash",
1542
+ "seq-macro",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "oxc_regular_expression"
1547
+ version = "0.146.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "31839a373ad02a37fad54244a3eb710f9a94b5e2e16ca0e1d28a37b4c75b8ebc"
1550
+ dependencies = [
1551
+ "bitflags",
1552
+ "oxc_allocator",
1553
+ "oxc_ast_macros",
1554
+ "oxc_diagnostics",
1555
+ "oxc_span",
1556
+ "oxc_str",
1557
+ "phf",
1558
+ "rustc-hash",
1559
+ "unicode-id-start",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "oxc_span"
1564
+ version = "0.146.0"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "c355ae1fa3e865c28cb8a85735ecafd1bb6340a5b880c638d127c1f2d61a98a5"
1567
+ dependencies = [
1568
+ "compact_str",
1569
+ "oxc_allocator",
1570
+ "oxc_ast_macros",
1571
+ "oxc_estree",
1572
+ "oxc_str",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "oxc_str"
1577
+ version = "0.146.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "7ba45ef9efa8296e647aa37b2b21936cb520953031edc1ef6352281bbea22faa"
1580
+ dependencies = [
1581
+ "compact_str",
1582
+ "hashbrown",
1583
+ "oxc_allocator",
1584
+ "oxc_estree",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "oxc_syntax"
1589
+ version = "0.146.0"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "0970d9be099a082711b574d58add258549580a70fe6546b99a067bbd7ad4a264"
1592
+ dependencies = [
1593
+ "bitflags",
1594
+ "cow-utils",
1595
+ "dragonbox_ecma",
1596
+ "nonmax",
1597
+ "oxc_allocator",
1598
+ "oxc_ast_macros",
1599
+ "oxc_estree",
1600
+ "oxc_index",
1601
+ "oxc_span",
1602
+ "oxc_str",
1603
+ "phf",
1604
+ "unicode-id-start",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "parking_lot"
1609
+ version = "0.12.5"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1612
+ dependencies = [
1613
+ "lock_api",
1614
+ "parking_lot_core",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "parking_lot_core"
1619
+ version = "0.9.12"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1622
+ dependencies = [
1623
+ "cfg-if",
1624
+ "libc",
1625
+ "redox_syscall",
1626
+ "smallvec",
1627
+ "windows-link",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "percent-encoding"
1632
+ version = "2.3.2"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1635
+
1636
+ [[package]]
1637
+ name = "phf"
1638
+ version = "0.14.0"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6"
1641
+ dependencies = [
1642
+ "phf_macros",
1643
+ "phf_shared",
1644
+ "serde",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "phf_generator"
1649
+ version = "0.14.0"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100"
1652
+ dependencies = [
1653
+ "fastrand",
1654
+ "phf_shared",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "phf_macros"
1659
+ version = "0.14.0"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "5fa8d0ca26d424d27630da600c6624696e7dec8bf7b3b492b383c5dc49e5e085"
1662
+ dependencies = [
1663
+ "phf_generator",
1664
+ "phf_shared",
1665
+ "proc-macro2",
1666
+ "quote",
1667
+ "syn 2.0.119",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "phf_shared"
1672
+ version = "0.14.0"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89"
1675
+ dependencies = [
1676
+ "siphasher",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "pin-project-lite"
1681
+ version = "0.2.17"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1684
+
1685
+ [[package]]
1686
+ name = "pkg-config"
1687
+ version = "0.3.34"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
1690
+
1691
+ [[package]]
1692
+ name = "portable-atomic"
1693
+ version = "1.15.0"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1696
+
1697
+ [[package]]
1698
+ name = "potential_utf"
1699
+ version = "0.1.6"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1702
+ dependencies = [
1703
+ "zerovec",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "prefix-trie"
1708
+ version = "0.8.4"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7"
1711
+ dependencies = [
1712
+ "either",
1713
+ "ipnet",
1714
+ "num-traits",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "proc-macro2"
1719
+ version = "1.0.107"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1722
+ dependencies = [
1723
+ "unicode-ident",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "quote"
1728
+ version = "1.0.47"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1731
+ dependencies = [
1732
+ "proc-macro2",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "r-efi"
1737
+ version = "6.0.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1740
+
1741
+ [[package]]
1742
+ name = "rand"
1743
+ version = "0.10.2"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1746
+ dependencies = [
1747
+ "chacha20",
1748
+ "getrandom 0.4.3",
1749
+ "rand_core",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "rand_core"
1754
+ version = "0.10.1"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1757
+
1758
+ [[package]]
1759
+ name = "rayon"
1760
+ version = "1.12.0"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1763
+ dependencies = [
1764
+ "either",
1765
+ "rayon-core",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "rayon-core"
1770
+ version = "1.13.0"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1773
+ dependencies = [
1774
+ "crossbeam-deque",
1775
+ "crossbeam-utils",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "redox_syscall"
1780
+ version = "0.5.18"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1783
+ dependencies = [
1784
+ "bitflags",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "regex"
1789
+ version = "1.13.1"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1792
+ dependencies = [
1793
+ "aho-corasick",
1794
+ "memchr",
1795
+ "regex-automata",
1796
+ "regex-syntax",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "regex-automata"
1801
+ version = "0.4.18"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1804
+ dependencies = [
1805
+ "aho-corasick",
1806
+ "memchr",
1807
+ "regex-syntax",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "regex-syntax"
1812
+ version = "0.8.11"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1815
+
1816
+ [[package]]
1817
+ name = "reqwest"
1818
+ version = "0.12.28"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1821
+ dependencies = [
1822
+ "base64",
1823
+ "bytes",
1824
+ "encoding_rs",
1825
+ "futures-core",
1826
+ "h2",
1827
+ "http",
1828
+ "http-body",
1829
+ "http-body-util",
1830
+ "hyper",
1831
+ "hyper-rustls",
1832
+ "hyper-tls",
1833
+ "hyper-util",
1834
+ "js-sys",
1835
+ "log",
1836
+ "mime",
1837
+ "native-tls",
1838
+ "percent-encoding",
1839
+ "pin-project-lite",
1840
+ "rustls-pki-types",
1841
+ "serde",
1842
+ "serde_json",
1843
+ "serde_urlencoded",
1844
+ "sync_wrapper",
1845
+ "tokio",
1846
+ "tokio-native-tls",
1847
+ "tower",
1848
+ "tower-http",
1849
+ "tower-service",
1850
+ "url",
1851
+ "wasm-bindgen",
1852
+ "wasm-bindgen-futures",
1853
+ "web-sys",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "resolv-conf"
1858
+ version = "0.7.6"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
1861
+
1862
+ [[package]]
1863
+ name = "ring"
1864
+ version = "0.17.14"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1867
+ dependencies = [
1868
+ "cc",
1869
+ "cfg-if",
1870
+ "getrandom 0.2.17",
1871
+ "libc",
1872
+ "untrusted",
1873
+ "windows-sys 0.52.0",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "rustc-hash"
1878
+ version = "2.1.3"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1881
+
1882
+ [[package]]
1883
+ name = "rustc_version"
1884
+ version = "0.4.1"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1887
+ dependencies = [
1888
+ "semver",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "rustix"
1893
+ version = "1.1.4"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1896
+ dependencies = [
1897
+ "bitflags",
1898
+ "errno",
1899
+ "libc",
1900
+ "linux-raw-sys",
1901
+ "windows-sys 0.61.2",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "rustls"
1906
+ version = "0.23.43"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
1909
+ dependencies = [
1910
+ "once_cell",
1911
+ "rustls-pki-types",
1912
+ "rustls-webpki",
1913
+ "subtle",
1914
+ "zeroize",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "rustls-pki-types"
1919
+ version = "1.15.1"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
1922
+ dependencies = [
1923
+ "zeroize",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "rustls-webpki"
1928
+ version = "0.103.15"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
1931
+ dependencies = [
1932
+ "ring",
1933
+ "rustls-pki-types",
1934
+ "untrusted",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "rustversion"
1939
+ version = "1.0.23"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1942
+
1943
+ [[package]]
1944
+ name = "ryu"
1945
+ version = "1.0.23"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1948
+
1949
+ [[package]]
1950
+ name = "same-file"
1951
+ version = "1.0.6"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1954
+ dependencies = [
1955
+ "winapi-util",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "schannel"
1960
+ version = "0.1.29"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1963
+ dependencies = [
1964
+ "windows-sys 0.61.2",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "scopeguard"
1969
+ version = "1.2.0"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1972
+
1973
+ [[package]]
1974
+ name = "security-framework"
1975
+ version = "3.7.0"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1978
+ dependencies = [
1979
+ "bitflags",
1980
+ "core-foundation 0.10.1",
1981
+ "core-foundation-sys",
1982
+ "libc",
1983
+ "security-framework-sys",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "security-framework-sys"
1988
+ version = "2.17.0"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1991
+ dependencies = [
1992
+ "core-foundation-sys",
1993
+ "libc",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "semver"
1998
+ version = "1.0.28"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2001
+
2002
+ [[package]]
2003
+ name = "seq-macro"
2004
+ version = "0.3.6"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2007
+
2008
+ [[package]]
2009
+ name = "serde"
2010
+ version = "1.0.229"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
2013
+ dependencies = [
2014
+ "serde_core",
2015
+ "serde_derive",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "serde_core"
2020
+ version = "1.0.229"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
2023
+ dependencies = [
2024
+ "serde_derive",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "serde_derive"
2029
+ version = "1.0.229"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
2032
+ dependencies = [
2033
+ "proc-macro2",
2034
+ "quote",
2035
+ "syn 3.0.3",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "serde_json"
2040
+ version = "1.0.151"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
2043
+ dependencies = [
2044
+ "itoa",
2045
+ "memchr",
2046
+ "serde",
2047
+ "serde_core",
2048
+ "zmij",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "serde_spanned"
2053
+ version = "1.1.1"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2056
+ dependencies = [
2057
+ "serde_core",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "serde_urlencoded"
2062
+ version = "0.7.1"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2065
+ dependencies = [
2066
+ "form_urlencoded",
2067
+ "itoa",
2068
+ "ryu",
2069
+ "serde",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "sha2"
2074
+ version = "0.10.9"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2077
+ dependencies = [
2078
+ "cfg-if",
2079
+ "cpufeatures 0.2.17",
2080
+ "digest",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "shlex"
2085
+ version = "2.0.1"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2088
+
2089
+ [[package]]
2090
+ name = "signal-hook-registry"
2091
+ version = "1.4.8"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2094
+ dependencies = [
2095
+ "errno",
2096
+ "libc",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "simd_cesu8"
2101
+ version = "1.2.0"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
2104
+ dependencies = [
2105
+ "rustc_version",
2106
+ "simdutf8",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "simdutf8"
2111
+ version = "0.1.5"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2114
+
2115
+ [[package]]
2116
+ name = "siphasher"
2117
+ version = "1.0.3"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2120
+
2121
+ [[package]]
2122
+ name = "slab"
2123
+ version = "0.4.12"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2126
+
2127
+ [[package]]
2128
+ name = "smallvec"
2129
+ version = "1.15.2"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2132
+ dependencies = [
2133
+ "serde",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "smawk"
2138
+ version = "0.3.3"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
2141
+
2142
+ [[package]]
2143
+ name = "socket2"
2144
+ version = "0.6.5"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
2147
+ dependencies = [
2148
+ "libc",
2149
+ "windows-sys 0.61.2",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "stable_deref_trait"
2154
+ version = "1.2.1"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2157
+
2158
+ [[package]]
2159
+ name = "static_assertions"
2160
+ version = "1.1.0"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2163
+
2164
+ [[package]]
2165
+ name = "strsim"
2166
+ version = "0.11.1"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2169
+
2170
+ [[package]]
2171
+ name = "subtle"
2172
+ version = "2.6.1"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2175
+
2176
+ [[package]]
2177
+ name = "syn"
2178
+ version = "2.0.119"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2181
+ dependencies = [
2182
+ "proc-macro2",
2183
+ "quote",
2184
+ "unicode-ident",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "syn"
2189
+ version = "3.0.3"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2192
+ dependencies = [
2193
+ "proc-macro2",
2194
+ "quote",
2195
+ "unicode-ident",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "sync_wrapper"
2200
+ version = "1.0.2"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2203
+ dependencies = [
2204
+ "futures-core",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "synstructure"
2209
+ version = "0.13.2"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2212
+ dependencies = [
2213
+ "proc-macro2",
2214
+ "quote",
2215
+ "syn 2.0.119",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "system-configuration"
2220
+ version = "0.7.0"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2223
+ dependencies = [
2224
+ "bitflags",
2225
+ "core-foundation 0.9.4",
2226
+ "system-configuration-sys",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "system-configuration-sys"
2231
+ version = "0.6.0"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2234
+ dependencies = [
2235
+ "core-foundation-sys",
2236
+ "libc",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "tagptr"
2241
+ version = "0.2.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2244
+
2245
+ [[package]]
2246
+ name = "tempfile"
2247
+ version = "3.27.0"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2250
+ dependencies = [
2251
+ "fastrand",
2252
+ "getrandom 0.4.3",
2253
+ "once_cell",
2254
+ "rustix",
2255
+ "windows-sys 0.61.2",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "textwrap"
2260
+ version = "0.16.2"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
2263
+ dependencies = [
2264
+ "smawk",
2265
+ "unicode-linebreak",
2266
+ "unicode-width",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "thiserror"
2271
+ version = "2.0.20"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
2274
+ dependencies = [
2275
+ "thiserror-impl",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "thiserror-impl"
2280
+ version = "2.0.20"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
2283
+ dependencies = [
2284
+ "proc-macro2",
2285
+ "quote",
2286
+ "syn 3.0.3",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "tinystr"
2291
+ version = "0.8.4"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
2294
+ dependencies = [
2295
+ "displaydoc",
2296
+ "zerovec",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "tinyvec"
2301
+ version = "1.12.0"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2304
+ dependencies = [
2305
+ "tinyvec_macros",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "tinyvec_macros"
2310
+ version = "0.1.1"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2313
+
2314
+ [[package]]
2315
+ name = "tokio"
2316
+ version = "1.53.1"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
2319
+ dependencies = [
2320
+ "bytes",
2321
+ "libc",
2322
+ "mio",
2323
+ "parking_lot",
2324
+ "pin-project-lite",
2325
+ "signal-hook-registry",
2326
+ "socket2",
2327
+ "tokio-macros",
2328
+ "windows-sys 0.61.2",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "tokio-macros"
2333
+ version = "2.7.2"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
2336
+ dependencies = [
2337
+ "proc-macro2",
2338
+ "quote",
2339
+ "syn 3.0.3",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "tokio-native-tls"
2344
+ version = "0.3.1"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2347
+ dependencies = [
2348
+ "native-tls",
2349
+ "tokio",
2350
+ ]
2351
+
2352
+ [[package]]
2353
+ name = "tokio-rustls"
2354
+ version = "0.26.4"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2357
+ dependencies = [
2358
+ "rustls",
2359
+ "tokio",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "tokio-util"
2364
+ version = "0.7.19"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
2367
+ dependencies = [
2368
+ "bytes",
2369
+ "futures-core",
2370
+ "futures-sink",
2371
+ "libc",
2372
+ "pin-project-lite",
2373
+ "tokio",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "toml"
2378
+ version = "1.1.4+spec-1.1.0"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
2381
+ dependencies = [
2382
+ "indexmap",
2383
+ "serde_core",
2384
+ "serde_spanned",
2385
+ "toml_datetime",
2386
+ "toml_parser",
2387
+ "toml_writer",
2388
+ "winnow",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "toml_datetime"
2393
+ version = "1.1.1+spec-1.1.0"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2396
+ dependencies = [
2397
+ "serde_core",
2398
+ ]
2399
+
2400
+ [[package]]
2401
+ name = "toml_parser"
2402
+ version = "1.1.3+spec-1.1.0"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
2405
+ dependencies = [
2406
+ "winnow",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "toml_writer"
2411
+ version = "1.1.2+spec-1.1.0"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
2414
+
2415
+ [[package]]
2416
+ name = "tower"
2417
+ version = "0.5.3"
2418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2419
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2420
+ dependencies = [
2421
+ "futures-core",
2422
+ "futures-util",
2423
+ "pin-project-lite",
2424
+ "sync_wrapper",
2425
+ "tokio",
2426
+ "tower-layer",
2427
+ "tower-service",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "tower-http"
2432
+ version = "0.6.11"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2435
+ dependencies = [
2436
+ "bitflags",
2437
+ "bytes",
2438
+ "futures-util",
2439
+ "http",
2440
+ "http-body",
2441
+ "pin-project-lite",
2442
+ "tower",
2443
+ "tower-layer",
2444
+ "tower-service",
2445
+ "url",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "tower-layer"
2450
+ version = "0.3.3"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2453
+
2454
+ [[package]]
2455
+ name = "tower-service"
2456
+ version = "0.3.3"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2459
+
2460
+ [[package]]
2461
+ name = "tracing"
2462
+ version = "0.1.44"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2465
+ dependencies = [
2466
+ "pin-project-lite",
2467
+ "tracing-core",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "tracing-core"
2472
+ version = "0.1.36"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2475
+ dependencies = [
2476
+ "once_cell",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "try-lock"
2481
+ version = "0.2.5"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2484
+
2485
+ [[package]]
2486
+ name = "typenum"
2487
+ version = "1.20.1"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2490
+
2491
+ [[package]]
2492
+ name = "unicode-id-start"
2493
+ version = "1.4.0"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
2496
+
2497
+ [[package]]
2498
+ name = "unicode-ident"
2499
+ version = "1.0.24"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2502
+
2503
+ [[package]]
2504
+ name = "unicode-linebreak"
2505
+ version = "0.1.5"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
2508
+
2509
+ [[package]]
2510
+ name = "unicode-segmentation"
2511
+ version = "1.13.3"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2514
+
2515
+ [[package]]
2516
+ name = "unicode-width"
2517
+ version = "0.2.2"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2520
+
2521
+ [[package]]
2522
+ name = "untrusted"
2523
+ version = "0.9.0"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2526
+
2527
+ [[package]]
2528
+ name = "url"
2529
+ version = "2.5.8"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2532
+ dependencies = [
2533
+ "form_urlencoded",
2534
+ "idna",
2535
+ "percent-encoding",
2536
+ "serde",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "utf8_iter"
2541
+ version = "1.0.4"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2544
+
2545
+ [[package]]
2546
+ name = "utf8parse"
2547
+ version = "0.2.2"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2550
+
2551
+ [[package]]
2552
+ name = "uuid"
2553
+ version = "1.25.0"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "f053576934f05a761a402421fbbe3d425d9366f75f978806a037b3ca481abecc"
2556
+ dependencies = [
2557
+ "getrandom 0.4.3",
2558
+ "js-sys",
2559
+ "wasm-bindgen",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "vcpkg"
2564
+ version = "0.2.15"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2567
+
2568
+ [[package]]
2569
+ name = "version_check"
2570
+ version = "0.9.5"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2573
+
2574
+ [[package]]
2575
+ name = "vte"
2576
+ version = "0.14.1"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
2579
+ dependencies = [
2580
+ "arrayvec",
2581
+ "memchr",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "walkdir"
2586
+ version = "2.5.0"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2589
+ dependencies = [
2590
+ "same-file",
2591
+ "winapi-util",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "want"
2596
+ version = "0.3.1"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2599
+ dependencies = [
2600
+ "try-lock",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "wasi"
2605
+ version = "0.11.1+wasi-snapshot-preview1"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2608
+
2609
+ [[package]]
2610
+ name = "wasm-bindgen"
2611
+ version = "0.2.127"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
2614
+ dependencies = [
2615
+ "cfg-if",
2616
+ "once_cell",
2617
+ "rustversion",
2618
+ "wasm-bindgen-macro",
2619
+ "wasm-bindgen-shared",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "wasm-bindgen-futures"
2624
+ version = "0.4.77"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
2627
+ dependencies = [
2628
+ "js-sys",
2629
+ "wasm-bindgen",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "wasm-bindgen-macro"
2634
+ version = "0.2.127"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
2637
+ dependencies = [
2638
+ "quote",
2639
+ "wasm-bindgen-macro-support",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "wasm-bindgen-macro-support"
2644
+ version = "0.2.127"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
2647
+ dependencies = [
2648
+ "bumpalo",
2649
+ "proc-macro2",
2650
+ "quote",
2651
+ "syn 2.0.119",
2652
+ "wasm-bindgen-shared",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "wasm-bindgen-shared"
2657
+ version = "0.2.127"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
2660
+ dependencies = [
2661
+ "unicode-ident",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "web-sys"
2666
+ version = "0.3.104"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
2669
+ dependencies = [
2670
+ "js-sys",
2671
+ "wasm-bindgen",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "widestring"
2676
+ version = "1.2.1"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
2679
+
2680
+ [[package]]
2681
+ name = "winapi"
2682
+ version = "0.3.9"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2685
+ dependencies = [
2686
+ "winapi-i686-pc-windows-gnu",
2687
+ "winapi-x86_64-pc-windows-gnu",
2688
+ ]
2689
+
2690
+ [[package]]
2691
+ name = "winapi-i686-pc-windows-gnu"
2692
+ version = "0.4.0"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2695
+
2696
+ [[package]]
2697
+ name = "winapi-util"
2698
+ version = "0.1.11"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2701
+ dependencies = [
2702
+ "windows-sys 0.61.2",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "winapi-x86_64-pc-windows-gnu"
2707
+ version = "0.4.0"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2710
+
2711
+ [[package]]
2712
+ name = "windows-core"
2713
+ version = "0.62.2"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2716
+ dependencies = [
2717
+ "windows-implement",
2718
+ "windows-interface",
2719
+ "windows-link",
2720
+ "windows-result",
2721
+ "windows-strings",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "windows-implement"
2726
+ version = "0.60.2"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2729
+ dependencies = [
2730
+ "proc-macro2",
2731
+ "quote",
2732
+ "syn 2.0.119",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "windows-interface"
2737
+ version = "0.59.3"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2740
+ dependencies = [
2741
+ "proc-macro2",
2742
+ "quote",
2743
+ "syn 2.0.119",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "windows-link"
2748
+ version = "0.2.1"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2751
+
2752
+ [[package]]
2753
+ name = "windows-registry"
2754
+ version = "0.6.1"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2757
+ dependencies = [
2758
+ "windows-link",
2759
+ "windows-result",
2760
+ "windows-strings",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "windows-result"
2765
+ version = "0.4.1"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2768
+ dependencies = [
2769
+ "windows-link",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "windows-strings"
2774
+ version = "0.5.1"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2777
+ dependencies = [
2778
+ "windows-link",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "windows-sys"
2783
+ version = "0.52.0"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2786
+ dependencies = [
2787
+ "windows-targets",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "windows-sys"
2792
+ version = "0.61.2"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2795
+ dependencies = [
2796
+ "windows-link",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "windows-targets"
2801
+ version = "0.52.6"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2804
+ dependencies = [
2805
+ "windows_aarch64_gnullvm",
2806
+ "windows_aarch64_msvc",
2807
+ "windows_i686_gnu",
2808
+ "windows_i686_gnullvm",
2809
+ "windows_i686_msvc",
2810
+ "windows_x86_64_gnu",
2811
+ "windows_x86_64_gnullvm",
2812
+ "windows_x86_64_msvc",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "windows_aarch64_gnullvm"
2817
+ version = "0.52.6"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2820
+
2821
+ [[package]]
2822
+ name = "windows_aarch64_msvc"
2823
+ version = "0.52.6"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2826
+
2827
+ [[package]]
2828
+ name = "windows_i686_gnu"
2829
+ version = "0.52.6"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2832
+
2833
+ [[package]]
2834
+ name = "windows_i686_gnullvm"
2835
+ version = "0.52.6"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2838
+
2839
+ [[package]]
2840
+ name = "windows_i686_msvc"
2841
+ version = "0.52.6"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2844
+
2845
+ [[package]]
2846
+ name = "windows_x86_64_gnu"
2847
+ version = "0.52.6"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2850
+
2851
+ [[package]]
2852
+ name = "windows_x86_64_gnullvm"
2853
+ version = "0.52.6"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2856
+
2857
+ [[package]]
2858
+ name = "windows_x86_64_msvc"
2859
+ version = "0.52.6"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2862
+
2863
+ [[package]]
2864
+ name = "winnow"
2865
+ version = "1.0.4"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2868
+
2869
+ [[package]]
2870
+ name = "writeable"
2871
+ version = "0.6.4"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2874
+
2875
+ [[package]]
2876
+ name = "yoke"
2877
+ version = "0.8.3"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2880
+ dependencies = [
2881
+ "stable_deref_trait",
2882
+ "yoke-derive",
2883
+ "zerofrom",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "yoke-derive"
2888
+ version = "0.8.2"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2891
+ dependencies = [
2892
+ "proc-macro2",
2893
+ "quote",
2894
+ "syn 2.0.119",
2895
+ "synstructure",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "zerofrom"
2900
+ version = "0.1.8"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2903
+ dependencies = [
2904
+ "zerofrom-derive",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "zerofrom-derive"
2909
+ version = "0.1.7"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2912
+ dependencies = [
2913
+ "proc-macro2",
2914
+ "quote",
2915
+ "syn 2.0.119",
2916
+ "synstructure",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "zeroize"
2921
+ version = "1.9.0"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2924
+
2925
+ [[package]]
2926
+ name = "zerotrie"
2927
+ version = "0.2.5"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2930
+ dependencies = [
2931
+ "displaydoc",
2932
+ "yoke",
2933
+ "zerofrom",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "zerovec"
2938
+ version = "0.11.8"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
2941
+ dependencies = [
2942
+ "yoke",
2943
+ "zerofrom",
2944
+ "zerovec-derive",
2945
+ ]
2946
+
2947
+ [[package]]
2948
+ name = "zerovec-derive"
2949
+ version = "0.11.6"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
2952
+ dependencies = [
2953
+ "proc-macro2",
2954
+ "quote",
2955
+ "syn 3.0.3",
2956
+ ]
2957
+
2958
+ [[package]]
2959
+ name = "zmij"
2960
+ version = "1.0.23"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"