forge-openclaw-plugin 0.2.60 → 0.2.65

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 (59) hide show
  1. package/README.md +121 -51
  2. package/dist/assets/{board-B1V3M__K.js → board-DUwMfZvN.js} +1 -1
  3. package/dist/assets/index-B9VOpR7r.css +1 -0
  4. package/dist/assets/index-DoHjjze2.js +90 -0
  5. package/dist/assets/{motion-CltSTItx.js → motion-Crg3QyXD.js} +1 -1
  6. package/dist/assets/{table-B-VrSFx8.js → table-CTlDeYRs.js} +1 -1
  7. package/dist/assets/{ui-DUqM4jkt.js → ui-CJPaElbj.js} +1 -1
  8. package/dist/assets/{vendor-C0otBhgu.js → vendor-BdrT2htV.js} +217 -207
  9. package/dist/companion-iroh/darwin-arm64/forge-companion-iroh +0 -0
  10. package/dist/companion-iroh/darwin-x64/forge-companion-iroh +0 -0
  11. package/dist/companion-iroh/linux-x64/forge-companion-iroh +0 -0
  12. package/dist/companion-iroh-src/Cargo.lock +4559 -0
  13. package/dist/companion-iroh-src/Cargo.toml +37 -0
  14. package/dist/companion-iroh-src/src/lib.rs +279 -0
  15. package/dist/companion-iroh-src/src/main.rs +478 -0
  16. package/dist/companion-iroh-src/src/protocol.rs +129 -0
  17. package/dist/gamification-previews/dark-fantasy-item-trophy-tasks-anvil-marathon.webp +0 -0
  18. package/dist/gamification-previews/dark-fantasy-item-trophy-xp-levels-the-first-heat.webp +0 -0
  19. package/dist/gamification-previews/dark-fantasy-item-unlock-streaks-molten-crown-fire.webp +0 -0
  20. package/dist/gamification-previews/dark-fantasy-mascot.webp +0 -0
  21. package/dist/gamification-previews/dramatic-smithie-item-trophy-tasks-anvil-marathon.webp +0 -0
  22. package/dist/gamification-previews/dramatic-smithie-item-trophy-xp-levels-the-first-heat.webp +0 -0
  23. package/dist/gamification-previews/dramatic-smithie-item-unlock-streaks-molten-crown-fire.webp +0 -0
  24. package/dist/gamification-previews/dramatic-smithie-mascot.webp +0 -0
  25. package/dist/gamification-previews/mind-locksmith-item-trophy-tasks-anvil-marathon.webp +0 -0
  26. package/dist/gamification-previews/mind-locksmith-item-trophy-xp-levels-the-first-heat.webp +0 -0
  27. package/dist/gamification-previews/mind-locksmith-item-unlock-streaks-molten-crown-fire.webp +0 -0
  28. package/dist/gamification-previews/mind-locksmith-mascot.webp +0 -0
  29. package/dist/index.html +7 -7
  30. package/dist/openclaw/parity.js +27 -0
  31. package/dist/openclaw/plugin-entry-shared.js +2 -2
  32. package/dist/openclaw/plugin-sdk-types.d.ts +2 -1
  33. package/dist/openclaw/routes.d.ts +4 -0
  34. package/dist/openclaw/routes.js +112 -3
  35. package/dist/openclaw/tools.js +32 -4
  36. package/dist/server/server/migrations/059_data_backup_retention.sql +2 -0
  37. package/dist/server/server/src/app.js +288 -61
  38. package/dist/server/server/src/data-management-types.js +2 -0
  39. package/dist/server/server/src/discovery-advertiser.js +13 -0
  40. package/dist/server/server/src/health.js +58 -3
  41. package/dist/server/server/src/movement.js +16 -1
  42. package/dist/server/server/src/openapi.js +410 -9
  43. package/dist/server/server/src/repositories/rewards.js +60 -0
  44. package/dist/server/server/src/services/companion-iroh.js +425 -0
  45. package/dist/server/server/src/services/data-management.js +32 -2
  46. package/dist/server/server/src/services/doctor.js +762 -0
  47. package/dist/server/server/src/services/gamification.js +75 -3
  48. package/dist/server/server/src/services/life-force.js +166 -25
  49. package/dist/server/server/src/web.js +88 -12
  50. package/dist/server/src/lib/api.js +9 -0
  51. package/dist/server/src/lib/gamification-catalog.js +1 -1
  52. package/openclaw.plugin.json +85 -3
  53. package/package.json +10 -6
  54. package/server/migrations/059_data_backup_retention.sql +2 -0
  55. package/skills/forge-openclaw/SKILL.md +80 -19
  56. package/skills/forge-openclaw/entity_conversation_playbooks.md +283 -25
  57. package/skills/forge-openclaw/psyche_entity_playbooks.md +82 -0
  58. package/dist/assets/index-BwKAPo98.css +0 -1
  59. package/dist/assets/index-Dy7c-dRY.js +0 -90
@@ -0,0 +1,4559 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common 0.1.7",
12
+ "generic-array",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "aes"
17
+ version = "0.8.4"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
20
+ dependencies = [
21
+ "cfg-if",
22
+ "cipher",
23
+ "cpufeatures 0.2.17",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm"
28
+ version = "0.10.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "ghash",
37
+ "subtle",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "aho-corasick"
42
+ version = "1.1.4"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
45
+ dependencies = [
46
+ "memchr",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "allocator-api2"
51
+ version = "0.2.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
54
+
55
+ [[package]]
56
+ name = "android_system_properties"
57
+ version = "0.1.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
60
+ dependencies = [
61
+ "libc",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstream"
66
+ version = "1.0.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
69
+ dependencies = [
70
+ "anstyle",
71
+ "anstyle-parse",
72
+ "anstyle-query",
73
+ "anstyle-wincon",
74
+ "colorchoice",
75
+ "is_terminal_polyfill",
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle"
81
+ version = "1.0.14"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
84
+
85
+ [[package]]
86
+ name = "anstyle-parse"
87
+ version = "1.0.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
90
+ dependencies = [
91
+ "utf8parse",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anstyle-query"
96
+ version = "1.1.5"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
99
+ dependencies = [
100
+ "windows-sys 0.61.2",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle-wincon"
105
+ version = "3.0.11"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
108
+ dependencies = [
109
+ "anstyle",
110
+ "once_cell_polyfill",
111
+ "windows-sys 0.61.2",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "anyhow"
116
+ version = "1.0.102"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
119
+
120
+ [[package]]
121
+ name = "arrayref"
122
+ version = "0.3.9"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
125
+
126
+ [[package]]
127
+ name = "arrayvec"
128
+ version = "0.7.6"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
131
+
132
+ [[package]]
133
+ name = "async-trait"
134
+ version = "0.1.89"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
137
+ dependencies = [
138
+ "proc-macro2",
139
+ "quote",
140
+ "syn",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "async_io_stream"
145
+ version = "0.3.3"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
148
+ dependencies = [
149
+ "futures",
150
+ "pharos",
151
+ "rustc_version",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "atomic-polyfill"
156
+ version = "1.0.3"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
159
+ dependencies = [
160
+ "critical-section",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "atomic-waker"
165
+ version = "1.1.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
168
+
169
+ [[package]]
170
+ name = "attohttpc"
171
+ version = "0.30.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9"
174
+ dependencies = [
175
+ "base64",
176
+ "http",
177
+ "log",
178
+ "url",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "autocfg"
183
+ version = "1.5.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
186
+
187
+ [[package]]
188
+ name = "backon"
189
+ version = "1.6.0"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
192
+ dependencies = [
193
+ "fastrand",
194
+ "gloo-timers",
195
+ "tokio",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "base64"
200
+ version = "0.22.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
203
+
204
+ [[package]]
205
+ name = "base64ct"
206
+ version = "1.8.3"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
209
+
210
+ [[package]]
211
+ name = "bitflags"
212
+ version = "2.11.1"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
215
+
216
+ [[package]]
217
+ name = "blake3"
218
+ version = "1.8.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
221
+ dependencies = [
222
+ "arrayref",
223
+ "arrayvec",
224
+ "cc",
225
+ "cfg-if",
226
+ "constant_time_eq",
227
+ "cpufeatures 0.3.0",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "block-buffer"
232
+ version = "0.12.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
235
+ dependencies = [
236
+ "hybrid-array",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "block2"
241
+ version = "0.6.2"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
244
+ dependencies = [
245
+ "objc2",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "bumpalo"
250
+ version = "3.20.2"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
253
+
254
+ [[package]]
255
+ name = "byteorder"
256
+ version = "1.5.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
259
+
260
+ [[package]]
261
+ name = "bytes"
262
+ version = "1.11.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
265
+
266
+ [[package]]
267
+ name = "cc"
268
+ version = "1.2.62"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
271
+ dependencies = [
272
+ "find-msvc-tools",
273
+ "shlex",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "cfg-if"
278
+ version = "1.0.4"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
281
+
282
+ [[package]]
283
+ name = "cfg_aliases"
284
+ version = "0.2.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
287
+
288
+ [[package]]
289
+ name = "chacha20"
290
+ version = "0.10.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
293
+ dependencies = [
294
+ "cfg-if",
295
+ "cpufeatures 0.3.0",
296
+ "rand_core 0.10.1",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "chrono"
301
+ version = "0.4.44"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
304
+ dependencies = [
305
+ "iana-time-zone",
306
+ "num-traits",
307
+ "serde",
308
+ "windows-link",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "cipher"
313
+ version = "0.4.4"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
316
+ dependencies = [
317
+ "crypto-common 0.1.7",
318
+ "inout",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "clap"
323
+ version = "4.6.1"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
326
+ dependencies = [
327
+ "clap_builder",
328
+ "clap_derive",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "clap_builder"
333
+ version = "4.6.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
336
+ dependencies = [
337
+ "anstream",
338
+ "anstyle",
339
+ "clap_lex",
340
+ "strsim",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "clap_derive"
345
+ version = "4.6.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
348
+ dependencies = [
349
+ "heck",
350
+ "proc-macro2",
351
+ "quote",
352
+ "syn",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "clap_lex"
357
+ version = "1.1.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
360
+
361
+ [[package]]
362
+ name = "cmov"
363
+ version = "0.5.3"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
366
+
367
+ [[package]]
368
+ name = "cobs"
369
+ version = "0.3.0"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
372
+ dependencies = [
373
+ "thiserror",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "colorchoice"
378
+ version = "1.0.5"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
381
+
382
+ [[package]]
383
+ name = "combine"
384
+ version = "4.6.7"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
387
+ dependencies = [
388
+ "bytes",
389
+ "memchr",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "const-oid"
394
+ version = "0.10.2"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
397
+
398
+ [[package]]
399
+ name = "constant_time_eq"
400
+ version = "0.4.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
403
+
404
+ [[package]]
405
+ name = "convert_case"
406
+ version = "0.10.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
409
+ dependencies = [
410
+ "unicode-segmentation",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "cordyceps"
415
+ version = "0.3.4"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a"
418
+ dependencies = [
419
+ "loom",
420
+ "tracing",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "core-foundation"
425
+ version = "0.9.4"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
428
+ dependencies = [
429
+ "core-foundation-sys",
430
+ "libc",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "core-foundation"
435
+ version = "0.10.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
438
+ dependencies = [
439
+ "core-foundation-sys",
440
+ "libc",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "core-foundation-sys"
445
+ version = "0.8.7"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
448
+
449
+ [[package]]
450
+ name = "cpufeatures"
451
+ version = "0.2.17"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
454
+ dependencies = [
455
+ "libc",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "cpufeatures"
460
+ version = "0.3.0"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
463
+ dependencies = [
464
+ "libc",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "critical-section"
469
+ version = "1.2.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
472
+
473
+ [[package]]
474
+ name = "crossbeam-channel"
475
+ version = "0.5.15"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
478
+ dependencies = [
479
+ "crossbeam-utils",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "crossbeam-epoch"
484
+ version = "0.9.18"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
487
+ dependencies = [
488
+ "crossbeam-utils",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "crossbeam-utils"
493
+ version = "0.8.21"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
496
+
497
+ [[package]]
498
+ name = "crypto-common"
499
+ version = "0.1.7"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
502
+ dependencies = [
503
+ "generic-array",
504
+ "typenum",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "crypto-common"
509
+ version = "0.2.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
512
+ dependencies = [
513
+ "hybrid-array",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "ctr"
518
+ version = "0.9.2"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
521
+ dependencies = [
522
+ "cipher",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "ctutils"
527
+ version = "0.4.2"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
530
+ dependencies = [
531
+ "cmov",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "curve25519-dalek"
536
+ version = "5.0.0-pre.6"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3"
539
+ dependencies = [
540
+ "cfg-if",
541
+ "cpufeatures 0.2.17",
542
+ "curve25519-dalek-derive",
543
+ "digest",
544
+ "fiat-crypto",
545
+ "rand_core 0.10.1",
546
+ "rustc_version",
547
+ "serde",
548
+ "subtle",
549
+ "zeroize",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "curve25519-dalek-derive"
554
+ version = "0.1.1"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
557
+ dependencies = [
558
+ "proc-macro2",
559
+ "quote",
560
+ "syn",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "darling"
565
+ version = "0.20.11"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
568
+ dependencies = [
569
+ "darling_core",
570
+ "darling_macro",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "darling_core"
575
+ version = "0.20.11"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
578
+ dependencies = [
579
+ "fnv",
580
+ "ident_case",
581
+ "proc-macro2",
582
+ "quote",
583
+ "strsim",
584
+ "syn",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "darling_macro"
589
+ version = "0.20.11"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
592
+ dependencies = [
593
+ "darling_core",
594
+ "quote",
595
+ "syn",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "data-encoding"
600
+ version = "2.11.0"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
603
+
604
+ [[package]]
605
+ name = "data-encoding-macro"
606
+ version = "0.1.20"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c"
609
+ dependencies = [
610
+ "data-encoding",
611
+ "data-encoding-macro-internal",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "data-encoding-macro-internal"
616
+ version = "0.1.18"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090"
619
+ dependencies = [
620
+ "data-encoding",
621
+ "syn",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "der"
626
+ version = "0.8.0-rc.10"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "02c1d73e9668ea6b6a28172aa55f3ebec38507131ce179051c8033b5c6037653"
629
+ dependencies = [
630
+ "const-oid",
631
+ "pem-rfc7468",
632
+ "zeroize",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "deranged"
637
+ version = "0.5.8"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
640
+ dependencies = [
641
+ "powerfmt",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "derive_builder"
646
+ version = "0.20.2"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
649
+ dependencies = [
650
+ "derive_builder_macro",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "derive_builder_core"
655
+ version = "0.20.2"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
658
+ dependencies = [
659
+ "darling",
660
+ "proc-macro2",
661
+ "quote",
662
+ "syn",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "derive_builder_macro"
667
+ version = "0.20.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
670
+ dependencies = [
671
+ "derive_builder_core",
672
+ "syn",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "derive_more"
677
+ version = "2.1.1"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
680
+ dependencies = [
681
+ "derive_more-impl",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "derive_more-impl"
686
+ version = "2.1.1"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
689
+ dependencies = [
690
+ "convert_case",
691
+ "proc-macro2",
692
+ "quote",
693
+ "rustc_version",
694
+ "syn",
695
+ "unicode-xid",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "diatomic-waker"
700
+ version = "0.2.3"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c"
703
+
704
+ [[package]]
705
+ name = "digest"
706
+ version = "0.11.3"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
709
+ dependencies = [
710
+ "block-buffer",
711
+ "const-oid",
712
+ "crypto-common 0.2.1",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "dispatch2"
717
+ version = "0.3.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
720
+ dependencies = [
721
+ "bitflags",
722
+ "block2",
723
+ "libc",
724
+ "objc2",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "displaydoc"
729
+ version = "0.2.5"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
732
+ dependencies = [
733
+ "proc-macro2",
734
+ "quote",
735
+ "syn",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "dlopen2"
740
+ version = "0.8.2"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
743
+ dependencies = [
744
+ "libc",
745
+ "once_cell",
746
+ "winapi",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "ed25519"
751
+ version = "3.0.0-rc.4"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
754
+ dependencies = [
755
+ "pkcs8",
756
+ "serde",
757
+ "signature",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "ed25519-dalek"
762
+ version = "3.0.0-pre.6"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "053618a4c3d3bc24f188aa660ae75a46eeab74ef07fb415c61431e5e7cd4749b"
765
+ dependencies = [
766
+ "curve25519-dalek",
767
+ "ed25519",
768
+ "rand_core 0.10.1",
769
+ "serde",
770
+ "sha2",
771
+ "signature",
772
+ "subtle",
773
+ "zeroize",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "either"
778
+ version = "1.15.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
781
+
782
+ [[package]]
783
+ name = "embedded-io"
784
+ version = "0.4.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
787
+
788
+ [[package]]
789
+ name = "embedded-io"
790
+ version = "0.6.1"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
793
+
794
+ [[package]]
795
+ name = "enum-assoc"
796
+ version = "1.3.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7"
799
+ dependencies = [
800
+ "proc-macro2",
801
+ "quote",
802
+ "syn",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "equivalent"
807
+ version = "1.0.2"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
810
+
811
+ [[package]]
812
+ name = "errno"
813
+ version = "0.3.14"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
816
+ dependencies = [
817
+ "libc",
818
+ "windows-sys 0.61.2",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "fastrand"
823
+ version = "2.4.1"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
826
+
827
+ [[package]]
828
+ name = "fiat-crypto"
829
+ version = "0.3.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
832
+
833
+ [[package]]
834
+ name = "find-msvc-tools"
835
+ version = "0.1.9"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
838
+
839
+ [[package]]
840
+ name = "fnv"
841
+ version = "1.0.7"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
844
+
845
+ [[package]]
846
+ name = "foldhash"
847
+ version = "0.1.5"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
850
+
851
+ [[package]]
852
+ name = "foldhash"
853
+ version = "0.2.0"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
856
+
857
+ [[package]]
858
+ name = "forge-companion-iroh"
859
+ version = "0.1.0"
860
+ dependencies = [
861
+ "anyhow",
862
+ "base64",
863
+ "clap",
864
+ "der",
865
+ "ed25519",
866
+ "hex",
867
+ "hostname",
868
+ "iroh",
869
+ "pkcs8",
870
+ "reqwest 0.12.28",
871
+ "serde",
872
+ "serde_json",
873
+ "signature",
874
+ "spki",
875
+ "tempfile",
876
+ "tokio",
877
+ "tracing",
878
+ "tracing-subscriber",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "form_urlencoded"
883
+ version = "1.2.2"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
886
+ dependencies = [
887
+ "percent-encoding",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "futures"
892
+ version = "0.3.32"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
895
+ dependencies = [
896
+ "futures-channel",
897
+ "futures-core",
898
+ "futures-executor",
899
+ "futures-io",
900
+ "futures-sink",
901
+ "futures-task",
902
+ "futures-util",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "futures-buffered"
907
+ version = "0.2.13"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5"
910
+ dependencies = [
911
+ "cordyceps",
912
+ "diatomic-waker",
913
+ "futures-core",
914
+ "pin-project-lite",
915
+ "spin 0.10.0",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "futures-channel"
920
+ version = "0.3.32"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
923
+ dependencies = [
924
+ "futures-core",
925
+ "futures-sink",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "futures-core"
930
+ version = "0.3.32"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
933
+
934
+ [[package]]
935
+ name = "futures-executor"
936
+ version = "0.3.32"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
939
+ dependencies = [
940
+ "futures-core",
941
+ "futures-task",
942
+ "futures-util",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "futures-io"
947
+ version = "0.3.32"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
950
+
951
+ [[package]]
952
+ name = "futures-lite"
953
+ version = "2.6.1"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
956
+ dependencies = [
957
+ "fastrand",
958
+ "futures-core",
959
+ "futures-io",
960
+ "parking",
961
+ "pin-project-lite",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "futures-macro"
966
+ version = "0.3.32"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
969
+ dependencies = [
970
+ "proc-macro2",
971
+ "quote",
972
+ "syn",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "futures-sink"
977
+ version = "0.3.32"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
980
+
981
+ [[package]]
982
+ name = "futures-task"
983
+ version = "0.3.32"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
986
+
987
+ [[package]]
988
+ name = "futures-util"
989
+ version = "0.3.32"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
992
+ dependencies = [
993
+ "futures-channel",
994
+ "futures-core",
995
+ "futures-io",
996
+ "futures-macro",
997
+ "futures-sink",
998
+ "futures-task",
999
+ "memchr",
1000
+ "pin-project-lite",
1001
+ "slab",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "generator"
1006
+ version = "0.8.8"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
1009
+ dependencies = [
1010
+ "cc",
1011
+ "cfg-if",
1012
+ "libc",
1013
+ "log",
1014
+ "rustversion",
1015
+ "windows-link",
1016
+ "windows-result",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "generic-array"
1021
+ version = "0.14.7"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1024
+ dependencies = [
1025
+ "typenum",
1026
+ "version_check",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "getrandom"
1031
+ version = "0.2.17"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1034
+ dependencies = [
1035
+ "cfg-if",
1036
+ "js-sys",
1037
+ "libc",
1038
+ "wasi",
1039
+ "wasm-bindgen",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "getrandom"
1044
+ version = "0.3.4"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1047
+ dependencies = [
1048
+ "cfg-if",
1049
+ "js-sys",
1050
+ "libc",
1051
+ "r-efi 5.3.0",
1052
+ "wasip2",
1053
+ "wasm-bindgen",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "getrandom"
1058
+ version = "0.4.2"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1061
+ dependencies = [
1062
+ "cfg-if",
1063
+ "js-sys",
1064
+ "libc",
1065
+ "r-efi 6.0.0",
1066
+ "rand_core 0.10.1",
1067
+ "wasip2",
1068
+ "wasip3",
1069
+ "wasm-bindgen",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "ghash"
1074
+ version = "0.5.1"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1077
+ dependencies = [
1078
+ "opaque-debug",
1079
+ "polyval",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "gloo-timers"
1084
+ version = "0.3.0"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
1087
+ dependencies = [
1088
+ "futures-channel",
1089
+ "futures-core",
1090
+ "js-sys",
1091
+ "wasm-bindgen",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "h2"
1096
+ version = "0.4.14"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
1099
+ dependencies = [
1100
+ "atomic-waker",
1101
+ "bytes",
1102
+ "fnv",
1103
+ "futures-core",
1104
+ "futures-sink",
1105
+ "http",
1106
+ "indexmap",
1107
+ "slab",
1108
+ "tokio",
1109
+ "tokio-util",
1110
+ "tracing",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "hash32"
1115
+ version = "0.2.1"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
1118
+ dependencies = [
1119
+ "byteorder",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "hashbrown"
1124
+ version = "0.15.5"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1127
+ dependencies = [
1128
+ "foldhash 0.1.5",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "hashbrown"
1133
+ version = "0.16.1"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1136
+ dependencies = [
1137
+ "allocator-api2",
1138
+ "equivalent",
1139
+ "foldhash 0.2.0",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "hashbrown"
1144
+ version = "0.17.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1147
+
1148
+ [[package]]
1149
+ name = "heapless"
1150
+ version = "0.7.17"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
1153
+ dependencies = [
1154
+ "atomic-polyfill",
1155
+ "hash32",
1156
+ "rustc_version",
1157
+ "serde",
1158
+ "spin 0.9.8",
1159
+ "stable_deref_trait",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "heck"
1164
+ version = "0.5.0"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1167
+
1168
+ [[package]]
1169
+ name = "hex"
1170
+ version = "0.4.3"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1173
+
1174
+ [[package]]
1175
+ name = "hickory-net"
1176
+ version = "0.26.0-beta.4"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "1e232f503c4cfe3f4ea6594971255ecab9f6a0080c4c8e0e17630cc701322aa4"
1179
+ dependencies = [
1180
+ "async-trait",
1181
+ "bytes",
1182
+ "cfg-if",
1183
+ "data-encoding",
1184
+ "futures-channel",
1185
+ "futures-io",
1186
+ "futures-util",
1187
+ "h2",
1188
+ "hickory-proto",
1189
+ "http",
1190
+ "idna",
1191
+ "ipnet",
1192
+ "jni",
1193
+ "rand 0.10.1",
1194
+ "rustls",
1195
+ "thiserror",
1196
+ "tinyvec",
1197
+ "tokio",
1198
+ "tokio-rustls",
1199
+ "tracing",
1200
+ "url",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "hickory-proto"
1205
+ version = "0.26.0-beta.4"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "fcca12171ce774c549f35510be702f4da00ef12ca486f0f2acb2ee96f2f5ca0f"
1208
+ dependencies = [
1209
+ "data-encoding",
1210
+ "idna",
1211
+ "ipnet",
1212
+ "jni",
1213
+ "once_cell",
1214
+ "prefix-trie",
1215
+ "rand 0.10.1",
1216
+ "ring",
1217
+ "thiserror",
1218
+ "tinyvec",
1219
+ "tracing",
1220
+ "url",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "hickory-resolver"
1225
+ version = "0.26.0-beta.4"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "1e7d2c928fa078e6640f26cf1b537b212e1688829c3944780025c7084e8bbbf6"
1228
+ dependencies = [
1229
+ "cfg-if",
1230
+ "futures-util",
1231
+ "hickory-net",
1232
+ "hickory-proto",
1233
+ "ipconfig",
1234
+ "ipnet",
1235
+ "jni",
1236
+ "moka",
1237
+ "ndk-context",
1238
+ "once_cell",
1239
+ "parking_lot",
1240
+ "rand 0.10.1",
1241
+ "resolv-conf",
1242
+ "rustls",
1243
+ "smallvec",
1244
+ "system-configuration",
1245
+ "thiserror",
1246
+ "tokio",
1247
+ "tokio-rustls",
1248
+ "tracing",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "hostname"
1253
+ version = "0.4.2"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
1256
+ dependencies = [
1257
+ "cfg-if",
1258
+ "libc",
1259
+ "windows-link",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "http"
1264
+ version = "1.4.0"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1267
+ dependencies = [
1268
+ "bytes",
1269
+ "itoa",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "http-body"
1274
+ version = "1.0.1"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1277
+ dependencies = [
1278
+ "bytes",
1279
+ "http",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "http-body-util"
1284
+ version = "0.1.3"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1287
+ dependencies = [
1288
+ "bytes",
1289
+ "futures-core",
1290
+ "http",
1291
+ "http-body",
1292
+ "pin-project-lite",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "httparse"
1297
+ version = "1.10.1"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1300
+
1301
+ [[package]]
1302
+ name = "httpdate"
1303
+ version = "1.0.3"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1306
+
1307
+ [[package]]
1308
+ name = "hybrid-array"
1309
+ version = "0.4.12"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
1312
+ dependencies = [
1313
+ "typenum",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "hyper"
1318
+ version = "1.9.0"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1321
+ dependencies = [
1322
+ "atomic-waker",
1323
+ "bytes",
1324
+ "futures-channel",
1325
+ "futures-core",
1326
+ "h2",
1327
+ "http",
1328
+ "http-body",
1329
+ "httparse",
1330
+ "httpdate",
1331
+ "itoa",
1332
+ "pin-project-lite",
1333
+ "smallvec",
1334
+ "tokio",
1335
+ "want",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "hyper-rustls"
1340
+ version = "0.27.9"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1343
+ dependencies = [
1344
+ "http",
1345
+ "hyper",
1346
+ "hyper-util",
1347
+ "rustls",
1348
+ "tokio",
1349
+ "tokio-rustls",
1350
+ "tower-service",
1351
+ "webpki-roots",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "hyper-util"
1356
+ version = "0.1.20"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1359
+ dependencies = [
1360
+ "base64",
1361
+ "bytes",
1362
+ "futures-channel",
1363
+ "futures-util",
1364
+ "http",
1365
+ "http-body",
1366
+ "hyper",
1367
+ "ipnet",
1368
+ "libc",
1369
+ "percent-encoding",
1370
+ "pin-project-lite",
1371
+ "socket2",
1372
+ "tokio",
1373
+ "tower-service",
1374
+ "tracing",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "iana-time-zone"
1379
+ version = "0.1.65"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1382
+ dependencies = [
1383
+ "android_system_properties",
1384
+ "core-foundation-sys",
1385
+ "iana-time-zone-haiku",
1386
+ "js-sys",
1387
+ "log",
1388
+ "wasm-bindgen",
1389
+ "windows-core",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "iana-time-zone-haiku"
1394
+ version = "0.1.2"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1397
+ dependencies = [
1398
+ "cc",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "icu_collections"
1403
+ version = "2.2.0"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1406
+ dependencies = [
1407
+ "displaydoc",
1408
+ "potential_utf",
1409
+ "utf8_iter",
1410
+ "yoke",
1411
+ "zerofrom",
1412
+ "zerovec",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "icu_locale_core"
1417
+ version = "2.2.0"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1420
+ dependencies = [
1421
+ "displaydoc",
1422
+ "litemap",
1423
+ "tinystr",
1424
+ "writeable",
1425
+ "zerovec",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "icu_normalizer"
1430
+ version = "2.2.0"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1433
+ dependencies = [
1434
+ "icu_collections",
1435
+ "icu_normalizer_data",
1436
+ "icu_properties",
1437
+ "icu_provider",
1438
+ "smallvec",
1439
+ "zerovec",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "icu_normalizer_data"
1444
+ version = "2.2.0"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1447
+
1448
+ [[package]]
1449
+ name = "icu_properties"
1450
+ version = "2.2.0"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1453
+ dependencies = [
1454
+ "icu_collections",
1455
+ "icu_locale_core",
1456
+ "icu_properties_data",
1457
+ "icu_provider",
1458
+ "zerotrie",
1459
+ "zerovec",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "icu_properties_data"
1464
+ version = "2.2.0"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1467
+
1468
+ [[package]]
1469
+ name = "icu_provider"
1470
+ version = "2.2.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1473
+ dependencies = [
1474
+ "displaydoc",
1475
+ "icu_locale_core",
1476
+ "writeable",
1477
+ "yoke",
1478
+ "zerofrom",
1479
+ "zerotrie",
1480
+ "zerovec",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "id-arena"
1485
+ version = "2.3.0"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1488
+
1489
+ [[package]]
1490
+ name = "ident_case"
1491
+ version = "1.0.1"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1494
+
1495
+ [[package]]
1496
+ name = "identity-hash"
1497
+ version = "0.1.0"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "dfdd7caa900436d8f13b2346fe10257e0c05c1f1f9e351f4f5d57c03bd5f45da"
1500
+
1501
+ [[package]]
1502
+ name = "idna"
1503
+ version = "1.1.0"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1506
+ dependencies = [
1507
+ "idna_adapter",
1508
+ "smallvec",
1509
+ "utf8_iter",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "idna_adapter"
1514
+ version = "1.2.2"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1517
+ dependencies = [
1518
+ "icu_normalizer",
1519
+ "icu_properties",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "igd-next"
1524
+ version = "0.17.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "bac9a3c8278f43b4cd8463380f4a25653ac843e5b177e1d3eaf849cc9ba10d4d"
1527
+ dependencies = [
1528
+ "attohttpc",
1529
+ "bytes",
1530
+ "futures",
1531
+ "http",
1532
+ "http-body-util",
1533
+ "hyper",
1534
+ "hyper-util",
1535
+ "log",
1536
+ "rand 0.10.1",
1537
+ "tokio",
1538
+ "url",
1539
+ "xmltree",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "indexmap"
1544
+ version = "2.14.0"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1547
+ dependencies = [
1548
+ "equivalent",
1549
+ "hashbrown 0.17.1",
1550
+ "serde",
1551
+ "serde_core",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "inout"
1556
+ version = "0.1.4"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1559
+ dependencies = [
1560
+ "generic-array",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "ipconfig"
1565
+ version = "0.3.4"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
1568
+ dependencies = [
1569
+ "socket2",
1570
+ "widestring",
1571
+ "windows-registry",
1572
+ "windows-result",
1573
+ "windows-sys 0.61.2",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "ipnet"
1578
+ version = "2.12.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1581
+ dependencies = [
1582
+ "serde",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "iroh"
1587
+ version = "0.98.1"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "9382a37668c84823e94b52eee462b3133ca7252a28de5f619a989d48b69cb30b"
1590
+ dependencies = [
1591
+ "backon",
1592
+ "blake3",
1593
+ "bytes",
1594
+ "cfg_aliases",
1595
+ "ctutils",
1596
+ "data-encoding",
1597
+ "derive_more",
1598
+ "ed25519-dalek",
1599
+ "futures-util",
1600
+ "getrandom 0.4.2",
1601
+ "hickory-resolver",
1602
+ "http",
1603
+ "ipnet",
1604
+ "iroh-base",
1605
+ "iroh-dns",
1606
+ "iroh-metrics",
1607
+ "iroh-relay",
1608
+ "n0-error",
1609
+ "n0-future",
1610
+ "n0-watcher",
1611
+ "netwatch",
1612
+ "noq",
1613
+ "noq-proto",
1614
+ "noq-udp",
1615
+ "papaya",
1616
+ "pin-project",
1617
+ "pkcs8",
1618
+ "portable-atomic",
1619
+ "portmapper",
1620
+ "rand 0.10.1",
1621
+ "reqwest 0.13.3",
1622
+ "rustc-hash",
1623
+ "rustls",
1624
+ "rustls-pki-types",
1625
+ "rustls-webpki",
1626
+ "serde",
1627
+ "smallvec",
1628
+ "strum",
1629
+ "time",
1630
+ "tokio",
1631
+ "tokio-stream",
1632
+ "tokio-util",
1633
+ "tracing",
1634
+ "url",
1635
+ "wasm-bindgen-futures",
1636
+ "webpki-roots",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "iroh-base"
1641
+ version = "0.98.0"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "738865784637830fb14204ebd3047922db83bc1816a59027af29579b9c27bd99"
1644
+ dependencies = [
1645
+ "curve25519-dalek",
1646
+ "data-encoding",
1647
+ "data-encoding-macro",
1648
+ "derive_more",
1649
+ "digest",
1650
+ "ed25519-dalek",
1651
+ "getrandom 0.4.2",
1652
+ "n0-error",
1653
+ "rand 0.10.1",
1654
+ "serde",
1655
+ "sha2",
1656
+ "url",
1657
+ "zeroize",
1658
+ "zeroize_derive",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "iroh-dns"
1663
+ version = "0.98.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "ca474630d1e62ddef83149db6babe6a1055d901df9054349d31b22df99811b92"
1666
+ dependencies = [
1667
+ "derive_more",
1668
+ "iroh-base",
1669
+ "n0-error",
1670
+ "n0-future",
1671
+ "simple-dns",
1672
+ "strum",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "iroh-metrics"
1677
+ version = "0.38.3"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "761b45ba046134b11eb3e432fa501616b45c4bf3a30c21717578bc07aa6461dd"
1680
+ dependencies = [
1681
+ "iroh-metrics-derive",
1682
+ "itoa",
1683
+ "n0-error",
1684
+ "portable-atomic",
1685
+ "postcard",
1686
+ "ryu",
1687
+ "serde",
1688
+ "tracing",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "iroh-metrics-derive"
1693
+ version = "0.4.1"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "cab063c2bfd6c3d5a33a913d4fdb5252f140db29ec67c704f20f3da7e8f92dbf"
1696
+ dependencies = [
1697
+ "heck",
1698
+ "proc-macro2",
1699
+ "quote",
1700
+ "syn",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "iroh-relay"
1705
+ version = "0.98.0"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "4aa6e9a7277bfbb439739c52b57eb5f9288030983928412022b8e94a43d4d838"
1708
+ dependencies = [
1709
+ "blake3",
1710
+ "bytes",
1711
+ "cfg_aliases",
1712
+ "data-encoding",
1713
+ "derive_more",
1714
+ "getrandom 0.4.2",
1715
+ "hickory-resolver",
1716
+ "http",
1717
+ "http-body-util",
1718
+ "hyper",
1719
+ "hyper-util",
1720
+ "iroh-base",
1721
+ "iroh-dns",
1722
+ "iroh-metrics",
1723
+ "lru",
1724
+ "n0-error",
1725
+ "n0-future",
1726
+ "noq",
1727
+ "noq-proto",
1728
+ "num_enum",
1729
+ "pin-project",
1730
+ "postcard",
1731
+ "rand 0.10.1",
1732
+ "reqwest 0.13.3",
1733
+ "rustls",
1734
+ "rustls-pki-types",
1735
+ "serde",
1736
+ "serde_bytes",
1737
+ "strum",
1738
+ "tokio",
1739
+ "tokio-rustls",
1740
+ "tokio-util",
1741
+ "tokio-websockets",
1742
+ "tracing",
1743
+ "url",
1744
+ "vergen-gitcl",
1745
+ "webpki-roots",
1746
+ "ws_stream_wasm",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "is_terminal_polyfill"
1751
+ version = "1.70.2"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1754
+
1755
+ [[package]]
1756
+ name = "itoa"
1757
+ version = "1.0.18"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1760
+
1761
+ [[package]]
1762
+ name = "jni"
1763
+ version = "0.22.4"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1766
+ dependencies = [
1767
+ "cfg-if",
1768
+ "combine",
1769
+ "jni-macros",
1770
+ "jni-sys",
1771
+ "log",
1772
+ "simd_cesu8",
1773
+ "thiserror",
1774
+ "walkdir",
1775
+ "windows-link",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "jni-macros"
1780
+ version = "0.22.4"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1783
+ dependencies = [
1784
+ "proc-macro2",
1785
+ "quote",
1786
+ "rustc_version",
1787
+ "simd_cesu8",
1788
+ "syn",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "jni-sys"
1793
+ version = "0.4.1"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1796
+ dependencies = [
1797
+ "jni-sys-macros",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "jni-sys-macros"
1802
+ version = "0.4.1"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1805
+ dependencies = [
1806
+ "quote",
1807
+ "syn",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "js-sys"
1812
+ version = "0.3.98"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
1815
+ dependencies = [
1816
+ "cfg-if",
1817
+ "futures-util",
1818
+ "once_cell",
1819
+ "wasm-bindgen",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "lazy_static"
1824
+ version = "1.5.0"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1827
+
1828
+ [[package]]
1829
+ name = "leb128fmt"
1830
+ version = "0.1.0"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1833
+
1834
+ [[package]]
1835
+ name = "libc"
1836
+ version = "0.2.186"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1839
+
1840
+ [[package]]
1841
+ name = "linux-raw-sys"
1842
+ version = "0.12.1"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1845
+
1846
+ [[package]]
1847
+ name = "litemap"
1848
+ version = "0.8.2"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1851
+
1852
+ [[package]]
1853
+ name = "lock_api"
1854
+ version = "0.4.14"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1857
+ dependencies = [
1858
+ "scopeguard",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "log"
1863
+ version = "0.4.29"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1866
+
1867
+ [[package]]
1868
+ name = "loom"
1869
+ version = "0.7.2"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1872
+ dependencies = [
1873
+ "cfg-if",
1874
+ "generator",
1875
+ "scoped-tls",
1876
+ "tracing",
1877
+ "tracing-subscriber",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "lru"
1882
+ version = "0.16.4"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
1885
+ dependencies = [
1886
+ "hashbrown 0.16.1",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "lru-slab"
1891
+ version = "0.1.2"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1894
+
1895
+ [[package]]
1896
+ name = "mac-addr"
1897
+ version = "0.3.0"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f"
1900
+
1901
+ [[package]]
1902
+ name = "matchers"
1903
+ version = "0.2.0"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1906
+ dependencies = [
1907
+ "regex-automata",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "memchr"
1912
+ version = "2.8.0"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1915
+
1916
+ [[package]]
1917
+ name = "mio"
1918
+ version = "1.2.0"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1921
+ dependencies = [
1922
+ "libc",
1923
+ "wasi",
1924
+ "windows-sys 0.61.2",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "moka"
1929
+ version = "0.12.15"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
1932
+ dependencies = [
1933
+ "crossbeam-channel",
1934
+ "crossbeam-epoch",
1935
+ "crossbeam-utils",
1936
+ "equivalent",
1937
+ "parking_lot",
1938
+ "portable-atomic",
1939
+ "smallvec",
1940
+ "tagptr",
1941
+ "uuid",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "n0-error"
1946
+ version = "0.1.3"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "af4782b4baf92d686d161c15460c83d16ebcfd215918763903e9619842665cae"
1949
+ dependencies = [
1950
+ "n0-error-macros",
1951
+ "spez",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "n0-error-macros"
1956
+ version = "0.1.3"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "03755949235714b2b307e5ae89dd8c1c2531fb127d9b8b7b4adf9c876cd3ed18"
1959
+ dependencies = [
1960
+ "proc-macro2",
1961
+ "quote",
1962
+ "syn",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "n0-future"
1967
+ version = "0.3.2"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe"
1970
+ dependencies = [
1971
+ "cfg_aliases",
1972
+ "derive_more",
1973
+ "futures-buffered",
1974
+ "futures-lite",
1975
+ "futures-util",
1976
+ "js-sys",
1977
+ "pin-project",
1978
+ "send_wrapper",
1979
+ "tokio",
1980
+ "tokio-util",
1981
+ "wasm-bindgen",
1982
+ "wasm-bindgen-futures",
1983
+ "web-time",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "n0-watcher"
1988
+ version = "0.6.1"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "38795f7932e6e9d1c6e989270ef5b3ff24ebb910e2c9d4bed2d28d8bae3007dc"
1991
+ dependencies = [
1992
+ "derive_more",
1993
+ "n0-error",
1994
+ "n0-future",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "ndk-context"
1999
+ version = "0.1.1"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
2002
+
2003
+ [[package]]
2004
+ name = "netdev"
2005
+ version = "0.42.0"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "e30af1a5073b82356d9317c18226826370b4288eba2f71c7e84e18bae51b3847"
2008
+ dependencies = [
2009
+ "block2",
2010
+ "dispatch2",
2011
+ "dlopen2",
2012
+ "ipnet",
2013
+ "libc",
2014
+ "mac-addr",
2015
+ "netlink-packet-core",
2016
+ "netlink-packet-route 0.29.0",
2017
+ "netlink-sys",
2018
+ "objc2-core-foundation",
2019
+ "objc2-system-configuration",
2020
+ "once_cell",
2021
+ "plist",
2022
+ "windows-sys 0.61.2",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "netlink-packet-core"
2027
+ version = "0.8.1"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4"
2030
+ dependencies = [
2031
+ "paste",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "netlink-packet-route"
2036
+ version = "0.29.0"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "df9854ea6ad14e3f4698a7f03b65bce0833dd2d81d594a0e4a984170537146b6"
2039
+ dependencies = [
2040
+ "bitflags",
2041
+ "libc",
2042
+ "log",
2043
+ "netlink-packet-core",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "netlink-packet-route"
2048
+ version = "0.30.0"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "be8919612f6028ab4eacbbfe1234a9a43e3722c6e0915e7ff519066991905092"
2051
+ dependencies = [
2052
+ "bitflags",
2053
+ "libc",
2054
+ "log",
2055
+ "netlink-packet-core",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "netlink-proto"
2060
+ version = "0.12.0"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128"
2063
+ dependencies = [
2064
+ "bytes",
2065
+ "futures",
2066
+ "log",
2067
+ "netlink-packet-core",
2068
+ "netlink-sys",
2069
+ "thiserror",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "netlink-sys"
2074
+ version = "0.8.8"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae"
2077
+ dependencies = [
2078
+ "bytes",
2079
+ "futures-util",
2080
+ "libc",
2081
+ "log",
2082
+ "tokio",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "netwatch"
2087
+ version = "0.16.0"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "6fc0d4b4134425d9834e591b1a6f807ea365c6d941d738942215564af5f28a97"
2090
+ dependencies = [
2091
+ "atomic-waker",
2092
+ "bytes",
2093
+ "cfg_aliases",
2094
+ "derive_more",
2095
+ "js-sys",
2096
+ "libc",
2097
+ "n0-error",
2098
+ "n0-future",
2099
+ "n0-watcher",
2100
+ "netdev",
2101
+ "netlink-packet-core",
2102
+ "netlink-packet-route 0.30.0",
2103
+ "netlink-proto",
2104
+ "netlink-sys",
2105
+ "noq-udp",
2106
+ "objc2-core-foundation",
2107
+ "objc2-system-configuration",
2108
+ "pin-project-lite",
2109
+ "serde",
2110
+ "socket2",
2111
+ "time",
2112
+ "tokio",
2113
+ "tokio-util",
2114
+ "tracing",
2115
+ "web-sys",
2116
+ "windows",
2117
+ "windows-result",
2118
+ "wmi",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "noq"
2123
+ version = "0.18.0"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "4b969bd157c3bd3bab239a1a8b14f67f2033fa012770367fcbd5b42d71ae3548"
2126
+ dependencies = [
2127
+ "bytes",
2128
+ "cfg_aliases",
2129
+ "derive_more",
2130
+ "noq-proto",
2131
+ "noq-udp",
2132
+ "pin-project-lite",
2133
+ "rustc-hash",
2134
+ "rustls",
2135
+ "socket2",
2136
+ "thiserror",
2137
+ "tokio",
2138
+ "tokio-stream",
2139
+ "tracing",
2140
+ "web-time",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "noq-proto"
2145
+ version = "0.17.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "cdec6f5039d98ee5377b2f532d495a555eb664c53161b1b5780dcaeac678b60e"
2148
+ dependencies = [
2149
+ "aes-gcm",
2150
+ "bytes",
2151
+ "derive_more",
2152
+ "enum-assoc",
2153
+ "getrandom 0.4.2",
2154
+ "identity-hash",
2155
+ "lru-slab",
2156
+ "rand 0.10.1",
2157
+ "ring",
2158
+ "rustc-hash",
2159
+ "rustls",
2160
+ "rustls-pki-types",
2161
+ "slab",
2162
+ "sorted-index-buffer",
2163
+ "thiserror",
2164
+ "tinyvec",
2165
+ "tracing",
2166
+ "web-time",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "noq-udp"
2171
+ version = "0.10.0"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "ee91b05f4f3353290936ba1f3233518868fb4e2da99cb4c90d1f8cebb064e527"
2174
+ dependencies = [
2175
+ "cfg_aliases",
2176
+ "libc",
2177
+ "socket2",
2178
+ "tracing",
2179
+ "windows-sys 0.61.2",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "nu-ansi-term"
2184
+ version = "0.50.3"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2187
+ dependencies = [
2188
+ "windows-sys 0.61.2",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "num-conv"
2193
+ version = "0.2.1"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
2196
+
2197
+ [[package]]
2198
+ name = "num-traits"
2199
+ version = "0.2.19"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2202
+ dependencies = [
2203
+ "autocfg",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "num_enum"
2208
+ version = "0.7.6"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
2211
+ dependencies = [
2212
+ "num_enum_derive",
2213
+ "rustversion",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "num_enum_derive"
2218
+ version = "0.7.6"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
2221
+ dependencies = [
2222
+ "proc-macro-crate",
2223
+ "proc-macro2",
2224
+ "quote",
2225
+ "syn",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "num_threads"
2230
+ version = "0.1.7"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2233
+ dependencies = [
2234
+ "libc",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "objc2"
2239
+ version = "0.6.4"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
2242
+ dependencies = [
2243
+ "objc2-encode",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "objc2-core-foundation"
2248
+ version = "0.3.2"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
2251
+ dependencies = [
2252
+ "bitflags",
2253
+ "block2",
2254
+ "dispatch2",
2255
+ "libc",
2256
+ "objc2",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "objc2-encode"
2261
+ version = "4.1.0"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
2264
+
2265
+ [[package]]
2266
+ name = "objc2-security"
2267
+ version = "0.3.2"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a"
2270
+ dependencies = [
2271
+ "bitflags",
2272
+ "objc2",
2273
+ "objc2-core-foundation",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "objc2-system-configuration"
2278
+ version = "0.3.2"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
2281
+ dependencies = [
2282
+ "bitflags",
2283
+ "dispatch2",
2284
+ "libc",
2285
+ "objc2",
2286
+ "objc2-core-foundation",
2287
+ "objc2-security",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "once_cell"
2292
+ version = "1.21.4"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2295
+ dependencies = [
2296
+ "critical-section",
2297
+ "portable-atomic",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "once_cell_polyfill"
2302
+ version = "1.70.2"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2305
+
2306
+ [[package]]
2307
+ name = "opaque-debug"
2308
+ version = "0.3.1"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
2311
+
2312
+ [[package]]
2313
+ name = "openssl-probe"
2314
+ version = "0.2.1"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2317
+
2318
+ [[package]]
2319
+ name = "papaya"
2320
+ version = "0.2.4"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7"
2323
+ dependencies = [
2324
+ "equivalent",
2325
+ "seize",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "parking"
2330
+ version = "2.2.1"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2333
+
2334
+ [[package]]
2335
+ name = "parking_lot"
2336
+ version = "0.12.5"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2339
+ dependencies = [
2340
+ "lock_api",
2341
+ "parking_lot_core",
2342
+ ]
2343
+
2344
+ [[package]]
2345
+ name = "parking_lot_core"
2346
+ version = "0.9.12"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2349
+ dependencies = [
2350
+ "cfg-if",
2351
+ "libc",
2352
+ "redox_syscall",
2353
+ "smallvec",
2354
+ "windows-link",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "paste"
2359
+ version = "1.0.15"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2362
+
2363
+ [[package]]
2364
+ name = "pem-rfc7468"
2365
+ version = "1.0.0"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
2368
+ dependencies = [
2369
+ "base64ct",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "percent-encoding"
2374
+ version = "2.3.2"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2377
+
2378
+ [[package]]
2379
+ name = "pharos"
2380
+ version = "0.5.3"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
2383
+ dependencies = [
2384
+ "futures",
2385
+ "rustc_version",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "pin-project"
2390
+ version = "1.1.12"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "cbf0d9e68100b3a7989b4901972f265cd542e560a3a8a724e1e20322f4d06ce9"
2393
+ dependencies = [
2394
+ "pin-project-internal",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "pin-project-internal"
2399
+ version = "1.1.12"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "a990e22f43e84855daf260dded30524ef4a9021cc7541c26540500a50b624389"
2402
+ dependencies = [
2403
+ "proc-macro2",
2404
+ "quote",
2405
+ "syn",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "pin-project-lite"
2410
+ version = "0.2.17"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2413
+
2414
+ [[package]]
2415
+ name = "pkcs8"
2416
+ version = "0.11.0-rc.10"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "b226d2cc389763951db8869584fd800cbbe2962bf454e2edeb5172b31ee99774"
2419
+ dependencies = [
2420
+ "der",
2421
+ "spki",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "plist"
2426
+ version = "1.9.0"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
2429
+ dependencies = [
2430
+ "base64",
2431
+ "indexmap",
2432
+ "quick-xml",
2433
+ "serde",
2434
+ "time",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "polyval"
2439
+ version = "0.6.2"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
2442
+ dependencies = [
2443
+ "cfg-if",
2444
+ "cpufeatures 0.2.17",
2445
+ "opaque-debug",
2446
+ "universal-hash",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "portable-atomic"
2451
+ version = "1.13.1"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2454
+ dependencies = [
2455
+ "serde",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "portmapper"
2460
+ version = "0.16.0"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "a145e62ddd9aecc9c7b1a3c84cea2a803386c7f4da7795bf9f0d50d90dc52549"
2463
+ dependencies = [
2464
+ "base64",
2465
+ "bytes",
2466
+ "derive_more",
2467
+ "futures-lite",
2468
+ "futures-util",
2469
+ "hyper-util",
2470
+ "igd-next",
2471
+ "iroh-metrics",
2472
+ "libc",
2473
+ "n0-error",
2474
+ "netwatch",
2475
+ "num_enum",
2476
+ "rand 0.10.1",
2477
+ "serde",
2478
+ "smallvec",
2479
+ "socket2",
2480
+ "time",
2481
+ "tokio",
2482
+ "tokio-util",
2483
+ "tower-layer",
2484
+ "tracing",
2485
+ "url",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "postcard"
2490
+ version = "1.1.3"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
2493
+ dependencies = [
2494
+ "cobs",
2495
+ "embedded-io 0.4.0",
2496
+ "embedded-io 0.6.1",
2497
+ "heapless",
2498
+ "postcard-derive",
2499
+ "serde",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "postcard-derive"
2504
+ version = "0.2.2"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb"
2507
+ dependencies = [
2508
+ "proc-macro2",
2509
+ "quote",
2510
+ "syn",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "potential_utf"
2515
+ version = "0.1.5"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2518
+ dependencies = [
2519
+ "zerovec",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "powerfmt"
2524
+ version = "0.2.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2527
+
2528
+ [[package]]
2529
+ name = "ppv-lite86"
2530
+ version = "0.2.21"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2533
+ dependencies = [
2534
+ "zerocopy",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "prefix-trie"
2539
+ version = "0.8.4"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7"
2542
+ dependencies = [
2543
+ "either",
2544
+ "ipnet",
2545
+ "num-traits",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "prettyplease"
2550
+ version = "0.2.37"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2553
+ dependencies = [
2554
+ "proc-macro2",
2555
+ "syn",
2556
+ ]
2557
+
2558
+ [[package]]
2559
+ name = "proc-macro-crate"
2560
+ version = "3.5.0"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2563
+ dependencies = [
2564
+ "toml_edit",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "proc-macro2"
2569
+ version = "1.0.106"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2572
+ dependencies = [
2573
+ "unicode-ident",
2574
+ ]
2575
+
2576
+ [[package]]
2577
+ name = "quick-xml"
2578
+ version = "0.39.4"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
2581
+ dependencies = [
2582
+ "memchr",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "quinn"
2587
+ version = "0.11.9"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2590
+ dependencies = [
2591
+ "bytes",
2592
+ "cfg_aliases",
2593
+ "pin-project-lite",
2594
+ "quinn-proto",
2595
+ "quinn-udp",
2596
+ "rustc-hash",
2597
+ "rustls",
2598
+ "socket2",
2599
+ "thiserror",
2600
+ "tokio",
2601
+ "tracing",
2602
+ "web-time",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "quinn-proto"
2607
+ version = "0.11.14"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2610
+ dependencies = [
2611
+ "bytes",
2612
+ "getrandom 0.3.4",
2613
+ "lru-slab",
2614
+ "rand 0.9.4",
2615
+ "ring",
2616
+ "rustc-hash",
2617
+ "rustls",
2618
+ "rustls-pki-types",
2619
+ "slab",
2620
+ "thiserror",
2621
+ "tinyvec",
2622
+ "tracing",
2623
+ "web-time",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "quinn-udp"
2628
+ version = "0.5.14"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2631
+ dependencies = [
2632
+ "cfg_aliases",
2633
+ "libc",
2634
+ "once_cell",
2635
+ "socket2",
2636
+ "tracing",
2637
+ "windows-sys 0.60.2",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "quote"
2642
+ version = "1.0.45"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2645
+ dependencies = [
2646
+ "proc-macro2",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "r-efi"
2651
+ version = "5.3.0"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2654
+
2655
+ [[package]]
2656
+ name = "r-efi"
2657
+ version = "6.0.0"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2660
+
2661
+ [[package]]
2662
+ name = "rand"
2663
+ version = "0.9.4"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2666
+ dependencies = [
2667
+ "rand_chacha",
2668
+ "rand_core 0.9.5",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "rand"
2673
+ version = "0.10.1"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
2676
+ dependencies = [
2677
+ "chacha20",
2678
+ "getrandom 0.4.2",
2679
+ "rand_core 0.10.1",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "rand_chacha"
2684
+ version = "0.9.0"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2687
+ dependencies = [
2688
+ "ppv-lite86",
2689
+ "rand_core 0.9.5",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "rand_core"
2694
+ version = "0.9.5"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2697
+ dependencies = [
2698
+ "getrandom 0.3.4",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "rand_core"
2703
+ version = "0.10.1"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2706
+
2707
+ [[package]]
2708
+ name = "redox_syscall"
2709
+ version = "0.5.18"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2712
+ dependencies = [
2713
+ "bitflags",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "regex-automata"
2718
+ version = "0.4.14"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2721
+ dependencies = [
2722
+ "aho-corasick",
2723
+ "memchr",
2724
+ "regex-syntax",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "regex-syntax"
2729
+ version = "0.8.10"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2732
+
2733
+ [[package]]
2734
+ name = "reqwest"
2735
+ version = "0.12.28"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2738
+ dependencies = [
2739
+ "base64",
2740
+ "bytes",
2741
+ "futures-core",
2742
+ "http",
2743
+ "http-body",
2744
+ "http-body-util",
2745
+ "hyper",
2746
+ "hyper-rustls",
2747
+ "hyper-util",
2748
+ "js-sys",
2749
+ "log",
2750
+ "percent-encoding",
2751
+ "pin-project-lite",
2752
+ "quinn",
2753
+ "rustls",
2754
+ "rustls-pki-types",
2755
+ "serde",
2756
+ "serde_json",
2757
+ "serde_urlencoded",
2758
+ "sync_wrapper",
2759
+ "tokio",
2760
+ "tokio-rustls",
2761
+ "tower",
2762
+ "tower-http",
2763
+ "tower-service",
2764
+ "url",
2765
+ "wasm-bindgen",
2766
+ "wasm-bindgen-futures",
2767
+ "web-sys",
2768
+ "webpki-roots",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "reqwest"
2773
+ version = "0.13.3"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
2776
+ dependencies = [
2777
+ "base64",
2778
+ "bytes",
2779
+ "futures-core",
2780
+ "futures-util",
2781
+ "http",
2782
+ "http-body",
2783
+ "http-body-util",
2784
+ "hyper",
2785
+ "hyper-rustls",
2786
+ "hyper-util",
2787
+ "js-sys",
2788
+ "log",
2789
+ "percent-encoding",
2790
+ "pin-project-lite",
2791
+ "rustls",
2792
+ "rustls-pki-types",
2793
+ "rustls-platform-verifier",
2794
+ "sync_wrapper",
2795
+ "tokio",
2796
+ "tokio-rustls",
2797
+ "tokio-util",
2798
+ "tower",
2799
+ "tower-http",
2800
+ "tower-service",
2801
+ "url",
2802
+ "wasm-bindgen",
2803
+ "wasm-bindgen-futures",
2804
+ "wasm-streams",
2805
+ "web-sys",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "resolv-conf"
2810
+ version = "0.7.6"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
2813
+
2814
+ [[package]]
2815
+ name = "ring"
2816
+ version = "0.17.14"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2819
+ dependencies = [
2820
+ "cc",
2821
+ "cfg-if",
2822
+ "getrandom 0.2.17",
2823
+ "libc",
2824
+ "untrusted",
2825
+ "windows-sys 0.52.0",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "rustc-hash"
2830
+ version = "2.1.2"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2833
+
2834
+ [[package]]
2835
+ name = "rustc_version"
2836
+ version = "0.4.1"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2839
+ dependencies = [
2840
+ "semver",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "rustix"
2845
+ version = "1.1.4"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2848
+ dependencies = [
2849
+ "bitflags",
2850
+ "errno",
2851
+ "libc",
2852
+ "linux-raw-sys",
2853
+ "windows-sys 0.61.2",
2854
+ ]
2855
+
2856
+ [[package]]
2857
+ name = "rustls"
2858
+ version = "0.23.40"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
2861
+ dependencies = [
2862
+ "log",
2863
+ "once_cell",
2864
+ "ring",
2865
+ "rustls-pki-types",
2866
+ "rustls-webpki",
2867
+ "subtle",
2868
+ "zeroize",
2869
+ ]
2870
+
2871
+ [[package]]
2872
+ name = "rustls-native-certs"
2873
+ version = "0.8.3"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2876
+ dependencies = [
2877
+ "openssl-probe",
2878
+ "rustls-pki-types",
2879
+ "schannel",
2880
+ "security-framework",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "rustls-pki-types"
2885
+ version = "1.14.1"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2888
+ dependencies = [
2889
+ "web-time",
2890
+ "zeroize",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "rustls-platform-verifier"
2895
+ version = "0.7.0"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2898
+ dependencies = [
2899
+ "core-foundation 0.10.1",
2900
+ "core-foundation-sys",
2901
+ "jni",
2902
+ "log",
2903
+ "once_cell",
2904
+ "rustls",
2905
+ "rustls-native-certs",
2906
+ "rustls-platform-verifier-android",
2907
+ "rustls-webpki",
2908
+ "security-framework",
2909
+ "security-framework-sys",
2910
+ "webpki-root-certs",
2911
+ "windows-sys 0.61.2",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "rustls-platform-verifier-android"
2916
+ version = "0.1.1"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2919
+
2920
+ [[package]]
2921
+ name = "rustls-webpki"
2922
+ version = "0.103.13"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2925
+ dependencies = [
2926
+ "ring",
2927
+ "rustls-pki-types",
2928
+ "untrusted",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "rustversion"
2933
+ version = "1.0.22"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2936
+
2937
+ [[package]]
2938
+ name = "ryu"
2939
+ version = "1.0.23"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2942
+
2943
+ [[package]]
2944
+ name = "same-file"
2945
+ version = "1.0.6"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2948
+ dependencies = [
2949
+ "winapi-util",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "schannel"
2954
+ version = "0.1.29"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2957
+ dependencies = [
2958
+ "windows-sys 0.61.2",
2959
+ ]
2960
+
2961
+ [[package]]
2962
+ name = "scoped-tls"
2963
+ version = "1.0.1"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2966
+
2967
+ [[package]]
2968
+ name = "scopeguard"
2969
+ version = "1.2.0"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2972
+
2973
+ [[package]]
2974
+ name = "security-framework"
2975
+ version = "3.7.0"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2978
+ dependencies = [
2979
+ "bitflags",
2980
+ "core-foundation 0.10.1",
2981
+ "core-foundation-sys",
2982
+ "libc",
2983
+ "security-framework-sys",
2984
+ ]
2985
+
2986
+ [[package]]
2987
+ name = "security-framework-sys"
2988
+ version = "2.17.0"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2991
+ dependencies = [
2992
+ "core-foundation-sys",
2993
+ "libc",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "seize"
2998
+ version = "0.5.1"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
3001
+ dependencies = [
3002
+ "libc",
3003
+ "windows-sys 0.61.2",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "semver"
3008
+ version = "1.0.28"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3011
+
3012
+ [[package]]
3013
+ name = "send_wrapper"
3014
+ version = "0.6.0"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
3017
+
3018
+ [[package]]
3019
+ name = "serde"
3020
+ version = "1.0.228"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3023
+ dependencies = [
3024
+ "serde_core",
3025
+ "serde_derive",
3026
+ ]
3027
+
3028
+ [[package]]
3029
+ name = "serde_bytes"
3030
+ version = "0.11.19"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
3033
+ dependencies = [
3034
+ "serde",
3035
+ "serde_core",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "serde_core"
3040
+ version = "1.0.228"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3043
+ dependencies = [
3044
+ "serde_derive",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "serde_derive"
3049
+ version = "1.0.228"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3052
+ dependencies = [
3053
+ "proc-macro2",
3054
+ "quote",
3055
+ "syn",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "serde_json"
3060
+ version = "1.0.149"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3063
+ dependencies = [
3064
+ "itoa",
3065
+ "memchr",
3066
+ "serde",
3067
+ "serde_core",
3068
+ "zmij",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "serde_urlencoded"
3073
+ version = "0.7.1"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3076
+ dependencies = [
3077
+ "form_urlencoded",
3078
+ "itoa",
3079
+ "ryu",
3080
+ "serde",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "sha1_smol"
3085
+ version = "1.0.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
3088
+
3089
+ [[package]]
3090
+ name = "sha2"
3091
+ version = "0.11.0-rc.5"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "7c5f3b1e2dc8aad28310d8410bd4d7e180eca65fca176c52ab00d364475d0024"
3094
+ dependencies = [
3095
+ "cfg-if",
3096
+ "cpufeatures 0.2.17",
3097
+ "digest",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "sharded-slab"
3102
+ version = "0.1.7"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3105
+ dependencies = [
3106
+ "lazy_static",
3107
+ ]
3108
+
3109
+ [[package]]
3110
+ name = "shlex"
3111
+ version = "1.3.0"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3114
+
3115
+ [[package]]
3116
+ name = "signal-hook-registry"
3117
+ version = "1.4.8"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3120
+ dependencies = [
3121
+ "errno",
3122
+ "libc",
3123
+ ]
3124
+
3125
+ [[package]]
3126
+ name = "signature"
3127
+ version = "3.0.0-rc.10"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
3130
+
3131
+ [[package]]
3132
+ name = "simd_cesu8"
3133
+ version = "1.1.1"
3134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3135
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
3136
+ dependencies = [
3137
+ "rustc_version",
3138
+ "simdutf8",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "simdutf8"
3143
+ version = "0.1.5"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3146
+
3147
+ [[package]]
3148
+ name = "simple-dns"
3149
+ version = "0.9.3"
3150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3151
+ checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a"
3152
+ dependencies = [
3153
+ "bitflags",
3154
+ ]
3155
+
3156
+ [[package]]
3157
+ name = "slab"
3158
+ version = "0.4.12"
3159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3160
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3161
+
3162
+ [[package]]
3163
+ name = "smallvec"
3164
+ version = "1.15.1"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3167
+
3168
+ [[package]]
3169
+ name = "socket2"
3170
+ version = "0.6.3"
3171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3172
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3173
+ dependencies = [
3174
+ "libc",
3175
+ "windows-sys 0.61.2",
3176
+ ]
3177
+
3178
+ [[package]]
3179
+ name = "sorted-index-buffer"
3180
+ version = "0.2.1"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06"
3183
+
3184
+ [[package]]
3185
+ name = "spez"
3186
+ version = "0.1.2"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8"
3189
+ dependencies = [
3190
+ "proc-macro2",
3191
+ "quote",
3192
+ "syn",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "spin"
3197
+ version = "0.9.8"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3200
+ dependencies = [
3201
+ "lock_api",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "spin"
3206
+ version = "0.10.0"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3209
+
3210
+ [[package]]
3211
+ name = "spki"
3212
+ version = "0.8.0-rc.4"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
3215
+ dependencies = [
3216
+ "base64ct",
3217
+ "der",
3218
+ ]
3219
+
3220
+ [[package]]
3221
+ name = "stable_deref_trait"
3222
+ version = "1.2.1"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3225
+
3226
+ [[package]]
3227
+ name = "strsim"
3228
+ version = "0.11.1"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3231
+
3232
+ [[package]]
3233
+ name = "strum"
3234
+ version = "0.28.0"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
3237
+ dependencies = [
3238
+ "strum_macros",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "strum_macros"
3243
+ version = "0.28.0"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
3246
+ dependencies = [
3247
+ "heck",
3248
+ "proc-macro2",
3249
+ "quote",
3250
+ "syn",
3251
+ ]
3252
+
3253
+ [[package]]
3254
+ name = "subtle"
3255
+ version = "2.6.1"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3258
+
3259
+ [[package]]
3260
+ name = "syn"
3261
+ version = "2.0.117"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3264
+ dependencies = [
3265
+ "proc-macro2",
3266
+ "quote",
3267
+ "unicode-ident",
3268
+ ]
3269
+
3270
+ [[package]]
3271
+ name = "sync_wrapper"
3272
+ version = "1.0.2"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3275
+ dependencies = [
3276
+ "futures-core",
3277
+ ]
3278
+
3279
+ [[package]]
3280
+ name = "synstructure"
3281
+ version = "0.13.2"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3284
+ dependencies = [
3285
+ "proc-macro2",
3286
+ "quote",
3287
+ "syn",
3288
+ ]
3289
+
3290
+ [[package]]
3291
+ name = "system-configuration"
3292
+ version = "0.7.0"
3293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3294
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
3295
+ dependencies = [
3296
+ "bitflags",
3297
+ "core-foundation 0.9.4",
3298
+ "system-configuration-sys",
3299
+ ]
3300
+
3301
+ [[package]]
3302
+ name = "system-configuration-sys"
3303
+ version = "0.6.0"
3304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3306
+ dependencies = [
3307
+ "core-foundation-sys",
3308
+ "libc",
3309
+ ]
3310
+
3311
+ [[package]]
3312
+ name = "tagptr"
3313
+ version = "0.2.0"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
3316
+
3317
+ [[package]]
3318
+ name = "tempfile"
3319
+ version = "3.27.0"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3322
+ dependencies = [
3323
+ "fastrand",
3324
+ "getrandom 0.4.2",
3325
+ "once_cell",
3326
+ "rustix",
3327
+ "windows-sys 0.61.2",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "thiserror"
3332
+ version = "2.0.18"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3335
+ dependencies = [
3336
+ "thiserror-impl",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "thiserror-impl"
3341
+ version = "2.0.18"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3344
+ dependencies = [
3345
+ "proc-macro2",
3346
+ "quote",
3347
+ "syn",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "thread_local"
3352
+ version = "1.1.9"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3355
+ dependencies = [
3356
+ "cfg-if",
3357
+ ]
3358
+
3359
+ [[package]]
3360
+ name = "time"
3361
+ version = "0.3.47"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3364
+ dependencies = [
3365
+ "deranged",
3366
+ "itoa",
3367
+ "js-sys",
3368
+ "libc",
3369
+ "num-conv",
3370
+ "num_threads",
3371
+ "powerfmt",
3372
+ "serde_core",
3373
+ "time-core",
3374
+ "time-macros",
3375
+ ]
3376
+
3377
+ [[package]]
3378
+ name = "time-core"
3379
+ version = "0.1.8"
3380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3381
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3382
+
3383
+ [[package]]
3384
+ name = "time-macros"
3385
+ version = "0.2.27"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3388
+ dependencies = [
3389
+ "num-conv",
3390
+ "time-core",
3391
+ ]
3392
+
3393
+ [[package]]
3394
+ name = "tinystr"
3395
+ version = "0.8.3"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3398
+ dependencies = [
3399
+ "displaydoc",
3400
+ "zerovec",
3401
+ ]
3402
+
3403
+ [[package]]
3404
+ name = "tinyvec"
3405
+ version = "1.11.0"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3408
+ dependencies = [
3409
+ "tinyvec_macros",
3410
+ ]
3411
+
3412
+ [[package]]
3413
+ name = "tinyvec_macros"
3414
+ version = "0.1.1"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3417
+
3418
+ [[package]]
3419
+ name = "tokio"
3420
+ version = "1.52.3"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3423
+ dependencies = [
3424
+ "bytes",
3425
+ "libc",
3426
+ "mio",
3427
+ "pin-project-lite",
3428
+ "signal-hook-registry",
3429
+ "socket2",
3430
+ "tokio-macros",
3431
+ "windows-sys 0.61.2",
3432
+ ]
3433
+
3434
+ [[package]]
3435
+ name = "tokio-macros"
3436
+ version = "2.7.0"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3439
+ dependencies = [
3440
+ "proc-macro2",
3441
+ "quote",
3442
+ "syn",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "tokio-rustls"
3447
+ version = "0.26.4"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3450
+ dependencies = [
3451
+ "rustls",
3452
+ "tokio",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "tokio-stream"
3457
+ version = "0.1.18"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3460
+ dependencies = [
3461
+ "futures-core",
3462
+ "pin-project-lite",
3463
+ "tokio",
3464
+ "tokio-util",
3465
+ ]
3466
+
3467
+ [[package]]
3468
+ name = "tokio-util"
3469
+ version = "0.7.18"
3470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3471
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3472
+ dependencies = [
3473
+ "bytes",
3474
+ "futures-core",
3475
+ "futures-sink",
3476
+ "futures-util",
3477
+ "pin-project-lite",
3478
+ "tokio",
3479
+ ]
3480
+
3481
+ [[package]]
3482
+ name = "tokio-websockets"
3483
+ version = "0.13.2"
3484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3485
+ checksum = "dad543404f98bfc969aeb71994105c592acfc6c43323fddcd016bb208d1c65cb"
3486
+ dependencies = [
3487
+ "base64",
3488
+ "bytes",
3489
+ "futures-core",
3490
+ "futures-sink",
3491
+ "getrandom 0.4.2",
3492
+ "http",
3493
+ "httparse",
3494
+ "rand 0.10.1",
3495
+ "ring",
3496
+ "rustls-pki-types",
3497
+ "sha1_smol",
3498
+ "simdutf8",
3499
+ "tokio",
3500
+ "tokio-rustls",
3501
+ "tokio-util",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "toml_datetime"
3506
+ version = "1.1.1+spec-1.1.0"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3509
+ dependencies = [
3510
+ "serde_core",
3511
+ ]
3512
+
3513
+ [[package]]
3514
+ name = "toml_edit"
3515
+ version = "0.25.11+spec-1.1.0"
3516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3517
+ checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
3518
+ dependencies = [
3519
+ "indexmap",
3520
+ "toml_datetime",
3521
+ "toml_parser",
3522
+ "winnow",
3523
+ ]
3524
+
3525
+ [[package]]
3526
+ name = "toml_parser"
3527
+ version = "1.1.2+spec-1.1.0"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3530
+ dependencies = [
3531
+ "winnow",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "tower"
3536
+ version = "0.5.3"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3539
+ dependencies = [
3540
+ "futures-core",
3541
+ "futures-util",
3542
+ "pin-project-lite",
3543
+ "sync_wrapper",
3544
+ "tokio",
3545
+ "tower-layer",
3546
+ "tower-service",
3547
+ ]
3548
+
3549
+ [[package]]
3550
+ name = "tower-http"
3551
+ version = "0.6.10"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
3554
+ dependencies = [
3555
+ "bitflags",
3556
+ "bytes",
3557
+ "futures-util",
3558
+ "http",
3559
+ "http-body",
3560
+ "pin-project-lite",
3561
+ "tower",
3562
+ "tower-layer",
3563
+ "tower-service",
3564
+ "url",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "tower-layer"
3569
+ version = "0.3.3"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3572
+
3573
+ [[package]]
3574
+ name = "tower-service"
3575
+ version = "0.3.3"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3578
+
3579
+ [[package]]
3580
+ name = "tracing"
3581
+ version = "0.1.44"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3584
+ dependencies = [
3585
+ "log",
3586
+ "pin-project-lite",
3587
+ "tracing-attributes",
3588
+ "tracing-core",
3589
+ ]
3590
+
3591
+ [[package]]
3592
+ name = "tracing-attributes"
3593
+ version = "0.1.31"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3596
+ dependencies = [
3597
+ "proc-macro2",
3598
+ "quote",
3599
+ "syn",
3600
+ ]
3601
+
3602
+ [[package]]
3603
+ name = "tracing-core"
3604
+ version = "0.1.36"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3607
+ dependencies = [
3608
+ "once_cell",
3609
+ "valuable",
3610
+ ]
3611
+
3612
+ [[package]]
3613
+ name = "tracing-log"
3614
+ version = "0.2.0"
3615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3616
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3617
+ dependencies = [
3618
+ "log",
3619
+ "once_cell",
3620
+ "tracing-core",
3621
+ ]
3622
+
3623
+ [[package]]
3624
+ name = "tracing-subscriber"
3625
+ version = "0.3.23"
3626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3627
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3628
+ dependencies = [
3629
+ "matchers",
3630
+ "nu-ansi-term",
3631
+ "once_cell",
3632
+ "regex-automata",
3633
+ "sharded-slab",
3634
+ "smallvec",
3635
+ "thread_local",
3636
+ "tracing",
3637
+ "tracing-core",
3638
+ "tracing-log",
3639
+ ]
3640
+
3641
+ [[package]]
3642
+ name = "try-lock"
3643
+ version = "0.2.5"
3644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3645
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3646
+
3647
+ [[package]]
3648
+ name = "typenum"
3649
+ version = "1.20.0"
3650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3651
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
3652
+
3653
+ [[package]]
3654
+ name = "unicode-ident"
3655
+ version = "1.0.24"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3658
+
3659
+ [[package]]
3660
+ name = "unicode-segmentation"
3661
+ version = "1.13.2"
3662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3663
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
3664
+
3665
+ [[package]]
3666
+ name = "unicode-xid"
3667
+ version = "0.2.6"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3670
+
3671
+ [[package]]
3672
+ name = "universal-hash"
3673
+ version = "0.5.1"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3676
+ dependencies = [
3677
+ "crypto-common 0.1.7",
3678
+ "subtle",
3679
+ ]
3680
+
3681
+ [[package]]
3682
+ name = "untrusted"
3683
+ version = "0.9.0"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3686
+
3687
+ [[package]]
3688
+ name = "url"
3689
+ version = "2.5.8"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3692
+ dependencies = [
3693
+ "form_urlencoded",
3694
+ "idna",
3695
+ "percent-encoding",
3696
+ "serde",
3697
+ "serde_derive",
3698
+ ]
3699
+
3700
+ [[package]]
3701
+ name = "utf8_iter"
3702
+ version = "1.0.4"
3703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3704
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3705
+
3706
+ [[package]]
3707
+ name = "utf8parse"
3708
+ version = "0.2.2"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3711
+
3712
+ [[package]]
3713
+ name = "uuid"
3714
+ version = "1.23.1"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
3717
+ dependencies = [
3718
+ "getrandom 0.4.2",
3719
+ "js-sys",
3720
+ "wasm-bindgen",
3721
+ ]
3722
+
3723
+ [[package]]
3724
+ name = "valuable"
3725
+ version = "0.1.1"
3726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3727
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3728
+
3729
+ [[package]]
3730
+ name = "vergen"
3731
+ version = "9.1.0"
3732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3733
+ checksum = "b849a1f6d8639e8de261e81ee0fc881e3e3620db1af9f2e0da015d4382ceaf75"
3734
+ dependencies = [
3735
+ "anyhow",
3736
+ "derive_builder",
3737
+ "rustversion",
3738
+ "vergen-lib 9.1.0",
3739
+ ]
3740
+
3741
+ [[package]]
3742
+ name = "vergen-gitcl"
3743
+ version = "1.0.8"
3744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3745
+ checksum = "b9dfc1de6eb2e08a4ddf152f1b179529638bedc0ea95e6d667c014506377aefe"
3746
+ dependencies = [
3747
+ "anyhow",
3748
+ "derive_builder",
3749
+ "rustversion",
3750
+ "time",
3751
+ "vergen",
3752
+ "vergen-lib 0.1.6",
3753
+ ]
3754
+
3755
+ [[package]]
3756
+ name = "vergen-lib"
3757
+ version = "0.1.6"
3758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3759
+ checksum = "9b07e6010c0f3e59fcb164e0163834597da68d1f864e2b8ca49f74de01e9c166"
3760
+ dependencies = [
3761
+ "anyhow",
3762
+ "derive_builder",
3763
+ "rustversion",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "vergen-lib"
3768
+ version = "9.1.0"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "b34a29ba7e9c59e62f229ae1932fb1b8fb8a6fdcc99215a641913f5f5a59a569"
3771
+ dependencies = [
3772
+ "anyhow",
3773
+ "derive_builder",
3774
+ "rustversion",
3775
+ ]
3776
+
3777
+ [[package]]
3778
+ name = "version_check"
3779
+ version = "0.9.5"
3780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3781
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3782
+
3783
+ [[package]]
3784
+ name = "walkdir"
3785
+ version = "2.5.0"
3786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3787
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3788
+ dependencies = [
3789
+ "same-file",
3790
+ "winapi-util",
3791
+ ]
3792
+
3793
+ [[package]]
3794
+ name = "want"
3795
+ version = "0.3.1"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3798
+ dependencies = [
3799
+ "try-lock",
3800
+ ]
3801
+
3802
+ [[package]]
3803
+ name = "wasi"
3804
+ version = "0.11.1+wasi-snapshot-preview1"
3805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3806
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3807
+
3808
+ [[package]]
3809
+ name = "wasip2"
3810
+ version = "1.0.3+wasi-0.2.9"
3811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3812
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3813
+ dependencies = [
3814
+ "wit-bindgen 0.57.1",
3815
+ ]
3816
+
3817
+ [[package]]
3818
+ name = "wasip3"
3819
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3821
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3822
+ dependencies = [
3823
+ "wit-bindgen 0.51.0",
3824
+ ]
3825
+
3826
+ [[package]]
3827
+ name = "wasm-bindgen"
3828
+ version = "0.2.121"
3829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3830
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
3831
+ dependencies = [
3832
+ "cfg-if",
3833
+ "once_cell",
3834
+ "rustversion",
3835
+ "wasm-bindgen-macro",
3836
+ "wasm-bindgen-shared",
3837
+ ]
3838
+
3839
+ [[package]]
3840
+ name = "wasm-bindgen-futures"
3841
+ version = "0.4.71"
3842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3843
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
3844
+ dependencies = [
3845
+ "js-sys",
3846
+ "wasm-bindgen",
3847
+ ]
3848
+
3849
+ [[package]]
3850
+ name = "wasm-bindgen-macro"
3851
+ version = "0.2.121"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
3854
+ dependencies = [
3855
+ "quote",
3856
+ "wasm-bindgen-macro-support",
3857
+ ]
3858
+
3859
+ [[package]]
3860
+ name = "wasm-bindgen-macro-support"
3861
+ version = "0.2.121"
3862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3863
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
3864
+ dependencies = [
3865
+ "bumpalo",
3866
+ "proc-macro2",
3867
+ "quote",
3868
+ "syn",
3869
+ "wasm-bindgen-shared",
3870
+ ]
3871
+
3872
+ [[package]]
3873
+ name = "wasm-bindgen-shared"
3874
+ version = "0.2.121"
3875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3876
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
3877
+ dependencies = [
3878
+ "unicode-ident",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "wasm-encoder"
3883
+ version = "0.244.0"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3886
+ dependencies = [
3887
+ "leb128fmt",
3888
+ "wasmparser",
3889
+ ]
3890
+
3891
+ [[package]]
3892
+ name = "wasm-metadata"
3893
+ version = "0.244.0"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3896
+ dependencies = [
3897
+ "anyhow",
3898
+ "indexmap",
3899
+ "wasm-encoder",
3900
+ "wasmparser",
3901
+ ]
3902
+
3903
+ [[package]]
3904
+ name = "wasm-streams"
3905
+ version = "0.5.0"
3906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3907
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
3908
+ dependencies = [
3909
+ "futures-util",
3910
+ "js-sys",
3911
+ "wasm-bindgen",
3912
+ "wasm-bindgen-futures",
3913
+ "web-sys",
3914
+ ]
3915
+
3916
+ [[package]]
3917
+ name = "wasmparser"
3918
+ version = "0.244.0"
3919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3920
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3921
+ dependencies = [
3922
+ "bitflags",
3923
+ "hashbrown 0.15.5",
3924
+ "indexmap",
3925
+ "semver",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "web-sys"
3930
+ version = "0.3.98"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
3933
+ dependencies = [
3934
+ "js-sys",
3935
+ "wasm-bindgen",
3936
+ ]
3937
+
3938
+ [[package]]
3939
+ name = "web-time"
3940
+ version = "1.1.0"
3941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3942
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3943
+ dependencies = [
3944
+ "js-sys",
3945
+ "wasm-bindgen",
3946
+ ]
3947
+
3948
+ [[package]]
3949
+ name = "webpki-root-certs"
3950
+ version = "1.0.7"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
3953
+ dependencies = [
3954
+ "rustls-pki-types",
3955
+ ]
3956
+
3957
+ [[package]]
3958
+ name = "webpki-roots"
3959
+ version = "1.0.7"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
3962
+ dependencies = [
3963
+ "rustls-pki-types",
3964
+ ]
3965
+
3966
+ [[package]]
3967
+ name = "widestring"
3968
+ version = "1.2.1"
3969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3970
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3971
+
3972
+ [[package]]
3973
+ name = "winapi"
3974
+ version = "0.3.9"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3977
+ dependencies = [
3978
+ "winapi-i686-pc-windows-gnu",
3979
+ "winapi-x86_64-pc-windows-gnu",
3980
+ ]
3981
+
3982
+ [[package]]
3983
+ name = "winapi-i686-pc-windows-gnu"
3984
+ version = "0.4.0"
3985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3986
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3987
+
3988
+ [[package]]
3989
+ name = "winapi-util"
3990
+ version = "0.1.11"
3991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3992
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3993
+ dependencies = [
3994
+ "windows-sys 0.61.2",
3995
+ ]
3996
+
3997
+ [[package]]
3998
+ name = "winapi-x86_64-pc-windows-gnu"
3999
+ version = "0.4.0"
4000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4001
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4002
+
4003
+ [[package]]
4004
+ name = "windows"
4005
+ version = "0.62.2"
4006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4007
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
4008
+ dependencies = [
4009
+ "windows-collections",
4010
+ "windows-core",
4011
+ "windows-future",
4012
+ "windows-numerics",
4013
+ ]
4014
+
4015
+ [[package]]
4016
+ name = "windows-collections"
4017
+ version = "0.3.2"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
4020
+ dependencies = [
4021
+ "windows-core",
4022
+ ]
4023
+
4024
+ [[package]]
4025
+ name = "windows-core"
4026
+ version = "0.62.2"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4029
+ dependencies = [
4030
+ "windows-implement",
4031
+ "windows-interface",
4032
+ "windows-link",
4033
+ "windows-result",
4034
+ "windows-strings",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "windows-future"
4039
+ version = "0.3.2"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
4042
+ dependencies = [
4043
+ "windows-core",
4044
+ "windows-link",
4045
+ "windows-threading",
4046
+ ]
4047
+
4048
+ [[package]]
4049
+ name = "windows-implement"
4050
+ version = "0.60.2"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4053
+ dependencies = [
4054
+ "proc-macro2",
4055
+ "quote",
4056
+ "syn",
4057
+ ]
4058
+
4059
+ [[package]]
4060
+ name = "windows-interface"
4061
+ version = "0.59.3"
4062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4063
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4064
+ dependencies = [
4065
+ "proc-macro2",
4066
+ "quote",
4067
+ "syn",
4068
+ ]
4069
+
4070
+ [[package]]
4071
+ name = "windows-link"
4072
+ version = "0.2.1"
4073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4074
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4075
+
4076
+ [[package]]
4077
+ name = "windows-numerics"
4078
+ version = "0.3.1"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
4081
+ dependencies = [
4082
+ "windows-core",
4083
+ "windows-link",
4084
+ ]
4085
+
4086
+ [[package]]
4087
+ name = "windows-registry"
4088
+ version = "0.6.1"
4089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4090
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
4091
+ dependencies = [
4092
+ "windows-link",
4093
+ "windows-result",
4094
+ "windows-strings",
4095
+ ]
4096
+
4097
+ [[package]]
4098
+ name = "windows-result"
4099
+ version = "0.4.1"
4100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4101
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4102
+ dependencies = [
4103
+ "windows-link",
4104
+ ]
4105
+
4106
+ [[package]]
4107
+ name = "windows-strings"
4108
+ version = "0.5.1"
4109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4110
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4111
+ dependencies = [
4112
+ "windows-link",
4113
+ ]
4114
+
4115
+ [[package]]
4116
+ name = "windows-sys"
4117
+ version = "0.52.0"
4118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4119
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4120
+ dependencies = [
4121
+ "windows-targets 0.52.6",
4122
+ ]
4123
+
4124
+ [[package]]
4125
+ name = "windows-sys"
4126
+ version = "0.60.2"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4129
+ dependencies = [
4130
+ "windows-targets 0.53.5",
4131
+ ]
4132
+
4133
+ [[package]]
4134
+ name = "windows-sys"
4135
+ version = "0.61.2"
4136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4137
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4138
+ dependencies = [
4139
+ "windows-link",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "windows-targets"
4144
+ version = "0.52.6"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4147
+ dependencies = [
4148
+ "windows_aarch64_gnullvm 0.52.6",
4149
+ "windows_aarch64_msvc 0.52.6",
4150
+ "windows_i686_gnu 0.52.6",
4151
+ "windows_i686_gnullvm 0.52.6",
4152
+ "windows_i686_msvc 0.52.6",
4153
+ "windows_x86_64_gnu 0.52.6",
4154
+ "windows_x86_64_gnullvm 0.52.6",
4155
+ "windows_x86_64_msvc 0.52.6",
4156
+ ]
4157
+
4158
+ [[package]]
4159
+ name = "windows-targets"
4160
+ version = "0.53.5"
4161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4162
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4163
+ dependencies = [
4164
+ "windows-link",
4165
+ "windows_aarch64_gnullvm 0.53.1",
4166
+ "windows_aarch64_msvc 0.53.1",
4167
+ "windows_i686_gnu 0.53.1",
4168
+ "windows_i686_gnullvm 0.53.1",
4169
+ "windows_i686_msvc 0.53.1",
4170
+ "windows_x86_64_gnu 0.53.1",
4171
+ "windows_x86_64_gnullvm 0.53.1",
4172
+ "windows_x86_64_msvc 0.53.1",
4173
+ ]
4174
+
4175
+ [[package]]
4176
+ name = "windows-threading"
4177
+ version = "0.2.1"
4178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4179
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
4180
+ dependencies = [
4181
+ "windows-link",
4182
+ ]
4183
+
4184
+ [[package]]
4185
+ name = "windows_aarch64_gnullvm"
4186
+ version = "0.52.6"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4189
+
4190
+ [[package]]
4191
+ name = "windows_aarch64_gnullvm"
4192
+ version = "0.53.1"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4195
+
4196
+ [[package]]
4197
+ name = "windows_aarch64_msvc"
4198
+ version = "0.52.6"
4199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4200
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4201
+
4202
+ [[package]]
4203
+ name = "windows_aarch64_msvc"
4204
+ version = "0.53.1"
4205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4206
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4207
+
4208
+ [[package]]
4209
+ name = "windows_i686_gnu"
4210
+ version = "0.52.6"
4211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4212
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4213
+
4214
+ [[package]]
4215
+ name = "windows_i686_gnu"
4216
+ version = "0.53.1"
4217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4218
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4219
+
4220
+ [[package]]
4221
+ name = "windows_i686_gnullvm"
4222
+ version = "0.52.6"
4223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4224
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4225
+
4226
+ [[package]]
4227
+ name = "windows_i686_gnullvm"
4228
+ version = "0.53.1"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4231
+
4232
+ [[package]]
4233
+ name = "windows_i686_msvc"
4234
+ version = "0.52.6"
4235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4236
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4237
+
4238
+ [[package]]
4239
+ name = "windows_i686_msvc"
4240
+ version = "0.53.1"
4241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4242
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4243
+
4244
+ [[package]]
4245
+ name = "windows_x86_64_gnu"
4246
+ version = "0.52.6"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4249
+
4250
+ [[package]]
4251
+ name = "windows_x86_64_gnu"
4252
+ version = "0.53.1"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4255
+
4256
+ [[package]]
4257
+ name = "windows_x86_64_gnullvm"
4258
+ version = "0.52.6"
4259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4260
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4261
+
4262
+ [[package]]
4263
+ name = "windows_x86_64_gnullvm"
4264
+ version = "0.53.1"
4265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4266
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4267
+
4268
+ [[package]]
4269
+ name = "windows_x86_64_msvc"
4270
+ version = "0.52.6"
4271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4272
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4273
+
4274
+ [[package]]
4275
+ name = "windows_x86_64_msvc"
4276
+ version = "0.53.1"
4277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4278
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4279
+
4280
+ [[package]]
4281
+ name = "winnow"
4282
+ version = "1.0.2"
4283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4284
+ checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
4285
+ dependencies = [
4286
+ "memchr",
4287
+ ]
4288
+
4289
+ [[package]]
4290
+ name = "wit-bindgen"
4291
+ version = "0.51.0"
4292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4293
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4294
+ dependencies = [
4295
+ "wit-bindgen-rust-macro",
4296
+ ]
4297
+
4298
+ [[package]]
4299
+ name = "wit-bindgen"
4300
+ version = "0.57.1"
4301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4302
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4303
+
4304
+ [[package]]
4305
+ name = "wit-bindgen-core"
4306
+ version = "0.51.0"
4307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4308
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4309
+ dependencies = [
4310
+ "anyhow",
4311
+ "heck",
4312
+ "wit-parser",
4313
+ ]
4314
+
4315
+ [[package]]
4316
+ name = "wit-bindgen-rust"
4317
+ version = "0.51.0"
4318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4319
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4320
+ dependencies = [
4321
+ "anyhow",
4322
+ "heck",
4323
+ "indexmap",
4324
+ "prettyplease",
4325
+ "syn",
4326
+ "wasm-metadata",
4327
+ "wit-bindgen-core",
4328
+ "wit-component",
4329
+ ]
4330
+
4331
+ [[package]]
4332
+ name = "wit-bindgen-rust-macro"
4333
+ version = "0.51.0"
4334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4335
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4336
+ dependencies = [
4337
+ "anyhow",
4338
+ "prettyplease",
4339
+ "proc-macro2",
4340
+ "quote",
4341
+ "syn",
4342
+ "wit-bindgen-core",
4343
+ "wit-bindgen-rust",
4344
+ ]
4345
+
4346
+ [[package]]
4347
+ name = "wit-component"
4348
+ version = "0.244.0"
4349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4350
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4351
+ dependencies = [
4352
+ "anyhow",
4353
+ "bitflags",
4354
+ "indexmap",
4355
+ "log",
4356
+ "serde",
4357
+ "serde_derive",
4358
+ "serde_json",
4359
+ "wasm-encoder",
4360
+ "wasm-metadata",
4361
+ "wasmparser",
4362
+ "wit-parser",
4363
+ ]
4364
+
4365
+ [[package]]
4366
+ name = "wit-parser"
4367
+ version = "0.244.0"
4368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4369
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4370
+ dependencies = [
4371
+ "anyhow",
4372
+ "id-arena",
4373
+ "indexmap",
4374
+ "log",
4375
+ "semver",
4376
+ "serde",
4377
+ "serde_derive",
4378
+ "serde_json",
4379
+ "unicode-xid",
4380
+ "wasmparser",
4381
+ ]
4382
+
4383
+ [[package]]
4384
+ name = "wmi"
4385
+ version = "0.18.4"
4386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4387
+ checksum = "7c81b85c57a57500e56669586496bf2abd5cf082b9d32995251185d105208b64"
4388
+ dependencies = [
4389
+ "chrono",
4390
+ "futures",
4391
+ "log",
4392
+ "serde",
4393
+ "thiserror",
4394
+ "windows",
4395
+ "windows-core",
4396
+ ]
4397
+
4398
+ [[package]]
4399
+ name = "writeable"
4400
+ version = "0.6.3"
4401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4402
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4403
+
4404
+ [[package]]
4405
+ name = "ws_stream_wasm"
4406
+ version = "0.7.5"
4407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4408
+ checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc"
4409
+ dependencies = [
4410
+ "async_io_stream",
4411
+ "futures",
4412
+ "js-sys",
4413
+ "log",
4414
+ "pharos",
4415
+ "rustc_version",
4416
+ "send_wrapper",
4417
+ "thiserror",
4418
+ "wasm-bindgen",
4419
+ "wasm-bindgen-futures",
4420
+ "web-sys",
4421
+ ]
4422
+
4423
+ [[package]]
4424
+ name = "xml-rs"
4425
+ version = "0.8.28"
4426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4427
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
4428
+
4429
+ [[package]]
4430
+ name = "xmltree"
4431
+ version = "0.10.3"
4432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4433
+ checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
4434
+ dependencies = [
4435
+ "xml-rs",
4436
+ ]
4437
+
4438
+ [[package]]
4439
+ name = "yoke"
4440
+ version = "0.8.2"
4441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4442
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4443
+ dependencies = [
4444
+ "stable_deref_trait",
4445
+ "yoke-derive",
4446
+ "zerofrom",
4447
+ ]
4448
+
4449
+ [[package]]
4450
+ name = "yoke-derive"
4451
+ version = "0.8.2"
4452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4453
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4454
+ dependencies = [
4455
+ "proc-macro2",
4456
+ "quote",
4457
+ "syn",
4458
+ "synstructure",
4459
+ ]
4460
+
4461
+ [[package]]
4462
+ name = "zerocopy"
4463
+ version = "0.8.48"
4464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4465
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
4466
+ dependencies = [
4467
+ "zerocopy-derive",
4468
+ ]
4469
+
4470
+ [[package]]
4471
+ name = "zerocopy-derive"
4472
+ version = "0.8.48"
4473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4474
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
4475
+ dependencies = [
4476
+ "proc-macro2",
4477
+ "quote",
4478
+ "syn",
4479
+ ]
4480
+
4481
+ [[package]]
4482
+ name = "zerofrom"
4483
+ version = "0.1.8"
4484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4485
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4486
+ dependencies = [
4487
+ "zerofrom-derive",
4488
+ ]
4489
+
4490
+ [[package]]
4491
+ name = "zerofrom-derive"
4492
+ version = "0.1.7"
4493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4494
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4495
+ dependencies = [
4496
+ "proc-macro2",
4497
+ "quote",
4498
+ "syn",
4499
+ "synstructure",
4500
+ ]
4501
+
4502
+ [[package]]
4503
+ name = "zeroize"
4504
+ version = "1.8.2"
4505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4506
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4507
+ dependencies = [
4508
+ "zeroize_derive",
4509
+ ]
4510
+
4511
+ [[package]]
4512
+ name = "zeroize_derive"
4513
+ version = "1.4.3"
4514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4515
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4516
+ dependencies = [
4517
+ "proc-macro2",
4518
+ "quote",
4519
+ "syn",
4520
+ ]
4521
+
4522
+ [[package]]
4523
+ name = "zerotrie"
4524
+ version = "0.2.4"
4525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4526
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4527
+ dependencies = [
4528
+ "displaydoc",
4529
+ "yoke",
4530
+ "zerofrom",
4531
+ ]
4532
+
4533
+ [[package]]
4534
+ name = "zerovec"
4535
+ version = "0.11.6"
4536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4537
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4538
+ dependencies = [
4539
+ "yoke",
4540
+ "zerofrom",
4541
+ "zerovec-derive",
4542
+ ]
4543
+
4544
+ [[package]]
4545
+ name = "zerovec-derive"
4546
+ version = "0.11.3"
4547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4548
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4549
+ dependencies = [
4550
+ "proc-macro2",
4551
+ "quote",
4552
+ "syn",
4553
+ ]
4554
+
4555
+ [[package]]
4556
+ name = "zmij"
4557
+ version = "1.0.21"
4558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4559
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"