itsi-server 0.1.1 → 0.1.11

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.

Potentially problematic release.


This version of itsi-server might be problematic. Click here for more details.

Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +2926 -0
  3. data/Cargo.toml +7 -0
  4. data/Rakefile +8 -1
  5. data/exe/itsi +119 -29
  6. data/ext/itsi_error/Cargo.toml +2 -0
  7. data/ext/itsi_error/src/from.rs +68 -0
  8. data/ext/itsi_error/src/lib.rs +13 -38
  9. data/ext/itsi_instrument_entry/Cargo.toml +15 -0
  10. data/ext/itsi_instrument_entry/src/lib.rs +31 -0
  11. data/ext/itsi_rb_helpers/Cargo.toml +2 -0
  12. data/ext/itsi_rb_helpers/src/heap_value.rs +121 -0
  13. data/ext/itsi_rb_helpers/src/lib.rs +112 -9
  14. data/ext/itsi_scheduler/Cargo.toml +24 -0
  15. data/ext/itsi_scheduler/extconf.rb +6 -0
  16. data/ext/itsi_scheduler/src/itsi_scheduler/io_helpers.rs +56 -0
  17. data/ext/itsi_scheduler/src/itsi_scheduler/io_waiter.rs +44 -0
  18. data/ext/itsi_scheduler/src/itsi_scheduler/timer.rs +44 -0
  19. data/ext/itsi_scheduler/src/itsi_scheduler.rs +308 -0
  20. data/ext/itsi_scheduler/src/lib.rs +38 -0
  21. data/ext/itsi_server/Cargo.lock +2956 -0
  22. data/ext/itsi_server/Cargo.toml +25 -4
  23. data/ext/itsi_server/extconf.rb +1 -1
  24. data/ext/itsi_server/src/body_proxy/big_bytes.rs +104 -0
  25. data/ext/itsi_server/src/body_proxy/itsi_body_proxy.rs +122 -0
  26. data/ext/itsi_server/src/body_proxy/mod.rs +2 -0
  27. data/ext/itsi_server/src/env.rs +43 -0
  28. data/ext/itsi_server/src/lib.rs +136 -8
  29. data/ext/itsi_server/src/request/itsi_request.rs +258 -103
  30. data/ext/itsi_server/src/response/itsi_response.rs +357 -0
  31. data/ext/itsi_server/src/response/mod.rs +1 -0
  32. data/ext/itsi_server/src/server/bind.rs +65 -29
  33. data/ext/itsi_server/src/server/bind_protocol.rs +37 -0
  34. data/ext/itsi_server/src/server/io_stream.rs +104 -0
  35. data/ext/itsi_server/src/server/itsi_server.rs +245 -139
  36. data/ext/itsi_server/src/server/lifecycle_event.rs +9 -0
  37. data/ext/itsi_server/src/server/listener.rs +237 -137
  38. data/ext/itsi_server/src/server/mod.rs +7 -1
  39. data/ext/itsi_server/src/server/process_worker.rs +203 -0
  40. data/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +260 -0
  41. data/ext/itsi_server/src/server/serve_strategy/mod.rs +27 -0
  42. data/ext/itsi_server/src/server/serve_strategy/single_mode.rs +276 -0
  43. data/ext/itsi_server/src/server/signal.rs +74 -0
  44. data/ext/itsi_server/src/server/thread_worker.rs +399 -0
  45. data/ext/itsi_server/src/server/tls/locked_dir_cache.rs +132 -0
  46. data/ext/itsi_server/src/server/tls.rs +187 -60
  47. data/ext/itsi_tracing/Cargo.toml +4 -0
  48. data/ext/itsi_tracing/src/lib.rs +53 -6
  49. data/lib/itsi/index.html +91 -0
  50. data/lib/itsi/request.rb +38 -14
  51. data/lib/itsi/server/Itsi.rb +127 -0
  52. data/lib/itsi/server/config.rb +36 -0
  53. data/lib/itsi/server/options_dsl.rb +401 -0
  54. data/lib/itsi/server/rack/handler/itsi.rb +36 -0
  55. data/lib/itsi/server/rack_interface.rb +75 -0
  56. data/lib/itsi/server/scheduler_interface.rb +21 -0
  57. data/lib/itsi/server/scheduler_mode.rb +6 -0
  58. data/lib/itsi/server/signal_trap.rb +23 -0
  59. data/lib/itsi/server/version.rb +1 -1
  60. data/lib/itsi/server.rb +79 -9
  61. data/lib/itsi/stream_io.rb +38 -0
  62. metadata +49 -27
  63. data/ext/itsi_server/src/server/itsi_ca/itsi_ca.crt +0 -32
  64. data/ext/itsi_server/src/server/itsi_ca/itsi_ca.key +0 -52
  65. data/ext/itsi_server/src/server/transfer_protocol.rs +0 -23
  66. data/ext/itsi_server/src/stream_writer/mod.rs +0 -21
data/Cargo.lock ADDED
@@ -0,0 +1,2926 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "aho-corasick"
22
+ version = "1.1.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25
+ dependencies = [
26
+ "memchr",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "android-tzdata"
31
+ version = "0.1.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
34
+
35
+ [[package]]
36
+ name = "android_system_properties"
37
+ version = "0.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+ dependencies = [
41
+ "libc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "asn1-rs"
46
+ version = "0.6.2"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
49
+ dependencies = [
50
+ "asn1-rs-derive",
51
+ "asn1-rs-impl",
52
+ "displaydoc",
53
+ "nom",
54
+ "num-traits",
55
+ "rusticata-macros",
56
+ "thiserror 1.0.69",
57
+ "time",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "asn1-rs-derive"
62
+ version = "0.5.1"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
65
+ dependencies = [
66
+ "proc-macro2",
67
+ "quote",
68
+ "syn",
69
+ "synstructure",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "asn1-rs-impl"
74
+ version = "0.2.0"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
77
+ dependencies = [
78
+ "proc-macro2",
79
+ "quote",
80
+ "syn",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "async-channel"
85
+ version = "2.3.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
88
+ dependencies = [
89
+ "concurrent-queue",
90
+ "event-listener-strategy",
91
+ "futures-core",
92
+ "pin-project-lite",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "async-trait"
97
+ version = "0.1.87"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97"
100
+ dependencies = [
101
+ "proc-macro2",
102
+ "quote",
103
+ "syn",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "atomic-waker"
108
+ version = "1.1.2"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
111
+
112
+ [[package]]
113
+ name = "atty"
114
+ version = "0.2.14"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
117
+ dependencies = [
118
+ "hermit-abi",
119
+ "libc",
120
+ "winapi",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "autocfg"
125
+ version = "1.4.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
128
+
129
+ [[package]]
130
+ name = "aws-lc-rs"
131
+ version = "1.12.4"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "4cd755adf9707cf671e31d944a189be3deaaeee11c8bc1d669bb8022ac90fbd0"
134
+ dependencies = [
135
+ "aws-lc-sys",
136
+ "paste",
137
+ "zeroize",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "aws-lc-sys"
142
+ version = "0.26.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "0f9dd2e03ee80ca2822dd6ea431163d2ef259f2066a4d6ccaca6d9dcb386aa43"
145
+ dependencies = [
146
+ "bindgen",
147
+ "cc",
148
+ "cmake",
149
+ "dunce",
150
+ "fs_extra",
151
+ "paste",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "backtrace"
156
+ version = "0.3.74"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
159
+ dependencies = [
160
+ "addr2line",
161
+ "cfg-if",
162
+ "libc",
163
+ "miniz_oxide",
164
+ "object",
165
+ "rustc-demangle",
166
+ "windows-targets 0.52.6",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "base64"
171
+ version = "0.22.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
174
+
175
+ [[package]]
176
+ name = "bindgen"
177
+ version = "0.69.5"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
180
+ dependencies = [
181
+ "bitflags",
182
+ "cexpr",
183
+ "clang-sys",
184
+ "itertools",
185
+ "lazy_static",
186
+ "lazycell",
187
+ "log",
188
+ "prettyplease",
189
+ "proc-macro2",
190
+ "quote",
191
+ "regex",
192
+ "rustc-hash 1.1.0",
193
+ "shlex",
194
+ "syn",
195
+ "which",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "bitflags"
200
+ version = "2.8.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
203
+
204
+ [[package]]
205
+ name = "bumpalo"
206
+ version = "3.17.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
209
+
210
+ [[package]]
211
+ name = "bytes"
212
+ version = "1.10.1"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
215
+
216
+ [[package]]
217
+ name = "cc"
218
+ version = "1.2.15"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af"
221
+ dependencies = [
222
+ "jobserver",
223
+ "libc",
224
+ "shlex",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "cexpr"
229
+ version = "0.6.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
232
+ dependencies = [
233
+ "nom",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "cfg-if"
238
+ version = "1.0.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
241
+
242
+ [[package]]
243
+ name = "cfg_aliases"
244
+ version = "0.2.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
247
+
248
+ [[package]]
249
+ name = "chrono"
250
+ version = "0.4.40"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
253
+ dependencies = [
254
+ "android-tzdata",
255
+ "iana-time-zone",
256
+ "num-traits",
257
+ "windows-link",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "clang-sys"
262
+ version = "1.8.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
265
+ dependencies = [
266
+ "glob",
267
+ "libc",
268
+ "libloading",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "cmake"
273
+ version = "0.1.54"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
276
+ dependencies = [
277
+ "cc",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "concurrent-queue"
282
+ version = "2.5.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
285
+ dependencies = [
286
+ "crossbeam-utils",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "core-foundation-sys"
291
+ version = "0.8.7"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
294
+
295
+ [[package]]
296
+ name = "crossbeam"
297
+ version = "0.8.4"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
300
+ dependencies = [
301
+ "crossbeam-channel",
302
+ "crossbeam-deque",
303
+ "crossbeam-epoch",
304
+ "crossbeam-queue",
305
+ "crossbeam-utils",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "crossbeam-channel"
310
+ version = "0.5.14"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
313
+ dependencies = [
314
+ "crossbeam-utils",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "crossbeam-deque"
319
+ version = "0.8.6"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
322
+ dependencies = [
323
+ "crossbeam-epoch",
324
+ "crossbeam-utils",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "crossbeam-epoch"
329
+ version = "0.9.18"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
332
+ dependencies = [
333
+ "crossbeam-utils",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "crossbeam-queue"
338
+ version = "0.3.12"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
341
+ dependencies = [
342
+ "crossbeam-utils",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "crossbeam-utils"
347
+ version = "0.8.21"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
350
+
351
+ [[package]]
352
+ name = "data-encoding"
353
+ version = "2.8.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
356
+
357
+ [[package]]
358
+ name = "der-parser"
359
+ version = "9.0.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
362
+ dependencies = [
363
+ "asn1-rs",
364
+ "displaydoc",
365
+ "nom",
366
+ "num-bigint",
367
+ "num-traits",
368
+ "rusticata-macros",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "deranged"
373
+ version = "0.3.11"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
376
+ dependencies = [
377
+ "powerfmt",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "derive_more"
382
+ version = "2.0.1"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
385
+ dependencies = [
386
+ "derive_more-impl",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "derive_more-impl"
391
+ version = "2.0.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
394
+ dependencies = [
395
+ "proc-macro2",
396
+ "quote",
397
+ "syn",
398
+ "unicode-xid",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "dirs"
403
+ version = "6.0.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
406
+ dependencies = [
407
+ "dirs-sys",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "dirs-sys"
412
+ version = "0.5.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
415
+ dependencies = [
416
+ "libc",
417
+ "option-ext",
418
+ "redox_users",
419
+ "windows-sys 0.59.0",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "displaydoc"
424
+ version = "0.2.5"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
427
+ dependencies = [
428
+ "proc-macro2",
429
+ "quote",
430
+ "syn",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "dunce"
435
+ version = "1.0.5"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
438
+
439
+ [[package]]
440
+ name = "either"
441
+ version = "1.14.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d"
444
+
445
+ [[package]]
446
+ name = "equivalent"
447
+ version = "1.0.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
450
+
451
+ [[package]]
452
+ name = "errno"
453
+ version = "0.3.10"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
456
+ dependencies = [
457
+ "libc",
458
+ "windows-sys 0.59.0",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "event-listener"
463
+ version = "5.4.0"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
466
+ dependencies = [
467
+ "concurrent-queue",
468
+ "parking",
469
+ "pin-project-lite",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "event-listener-strategy"
474
+ version = "0.5.3"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
477
+ dependencies = [
478
+ "event-listener",
479
+ "pin-project-lite",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "fastrand"
484
+ version = "2.3.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
487
+
488
+ [[package]]
489
+ name = "fnv"
490
+ version = "1.0.7"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
493
+
494
+ [[package]]
495
+ name = "form_urlencoded"
496
+ version = "1.2.1"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
499
+ dependencies = [
500
+ "percent-encoding",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "fs2"
505
+ version = "0.4.3"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
508
+ dependencies = [
509
+ "libc",
510
+ "winapi",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "fs_extra"
515
+ version = "1.3.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
518
+
519
+ [[package]]
520
+ name = "futures"
521
+ version = "0.3.31"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
524
+ dependencies = [
525
+ "futures-channel",
526
+ "futures-core",
527
+ "futures-executor",
528
+ "futures-io",
529
+ "futures-sink",
530
+ "futures-task",
531
+ "futures-util",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "futures-channel"
536
+ version = "0.3.31"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
539
+ dependencies = [
540
+ "futures-core",
541
+ "futures-sink",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "futures-core"
546
+ version = "0.3.31"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
549
+
550
+ [[package]]
551
+ name = "futures-executor"
552
+ version = "0.3.31"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
555
+ dependencies = [
556
+ "futures-core",
557
+ "futures-task",
558
+ "futures-util",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "futures-io"
563
+ version = "0.3.31"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
566
+
567
+ [[package]]
568
+ name = "futures-macro"
569
+ version = "0.3.31"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
572
+ dependencies = [
573
+ "proc-macro2",
574
+ "quote",
575
+ "syn",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "futures-sink"
580
+ version = "0.3.31"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
583
+
584
+ [[package]]
585
+ name = "futures-task"
586
+ version = "0.3.31"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
589
+
590
+ [[package]]
591
+ name = "futures-util"
592
+ version = "0.3.31"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
595
+ dependencies = [
596
+ "futures-channel",
597
+ "futures-core",
598
+ "futures-io",
599
+ "futures-macro",
600
+ "futures-sink",
601
+ "futures-task",
602
+ "memchr",
603
+ "pin-project-lite",
604
+ "pin-utils",
605
+ "slab",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "getrandom"
610
+ version = "0.2.15"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
613
+ dependencies = [
614
+ "cfg-if",
615
+ "js-sys",
616
+ "libc",
617
+ "wasi 0.11.0+wasi-snapshot-preview1",
618
+ "wasm-bindgen",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "getrandom"
623
+ version = "0.3.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
626
+ dependencies = [
627
+ "cfg-if",
628
+ "libc",
629
+ "wasi 0.13.3+wasi-0.2.2",
630
+ "windows-targets 0.52.6",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "gimli"
635
+ version = "0.31.1"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
638
+
639
+ [[package]]
640
+ name = "glob"
641
+ version = "0.3.2"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
644
+
645
+ [[package]]
646
+ name = "h2"
647
+ version = "0.4.8"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
650
+ dependencies = [
651
+ "atomic-waker",
652
+ "bytes",
653
+ "fnv",
654
+ "futures-core",
655
+ "futures-sink",
656
+ "http",
657
+ "indexmap",
658
+ "slab",
659
+ "tokio",
660
+ "tokio-util",
661
+ "tracing",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "hashbrown"
666
+ version = "0.15.2"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
669
+
670
+ [[package]]
671
+ name = "hermit-abi"
672
+ version = "0.1.19"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
675
+ dependencies = [
676
+ "libc",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "home"
681
+ version = "0.5.11"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
684
+ dependencies = [
685
+ "windows-sys 0.59.0",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "http"
690
+ version = "1.3.1"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
693
+ dependencies = [
694
+ "bytes",
695
+ "fnv",
696
+ "itoa",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "http-body"
701
+ version = "1.0.1"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
704
+ dependencies = [
705
+ "bytes",
706
+ "http",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "http-body-util"
711
+ version = "0.1.2"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
714
+ dependencies = [
715
+ "bytes",
716
+ "futures-util",
717
+ "http",
718
+ "http-body",
719
+ "pin-project-lite",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "httparse"
724
+ version = "1.10.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
727
+
728
+ [[package]]
729
+ name = "httpdate"
730
+ version = "1.0.3"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
733
+
734
+ [[package]]
735
+ name = "hyper"
736
+ version = "1.6.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
739
+ dependencies = [
740
+ "bytes",
741
+ "futures-channel",
742
+ "futures-util",
743
+ "h2",
744
+ "http",
745
+ "http-body",
746
+ "httparse",
747
+ "httpdate",
748
+ "itoa",
749
+ "pin-project-lite",
750
+ "smallvec",
751
+ "tokio",
752
+ "want",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "hyper-rustls"
757
+ version = "0.27.5"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
760
+ dependencies = [
761
+ "futures-util",
762
+ "http",
763
+ "hyper",
764
+ "hyper-util",
765
+ "rustls",
766
+ "rustls-pki-types",
767
+ "tokio",
768
+ "tokio-rustls",
769
+ "tower-service",
770
+ "webpki-roots",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "hyper-util"
775
+ version = "0.1.10"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
778
+ dependencies = [
779
+ "bytes",
780
+ "futures-channel",
781
+ "futures-util",
782
+ "http",
783
+ "http-body",
784
+ "hyper",
785
+ "pin-project-lite",
786
+ "socket2",
787
+ "tokio",
788
+ "tower-service",
789
+ "tracing",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "iana-time-zone"
794
+ version = "0.1.61"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
797
+ dependencies = [
798
+ "android_system_properties",
799
+ "core-foundation-sys",
800
+ "iana-time-zone-haiku",
801
+ "js-sys",
802
+ "wasm-bindgen",
803
+ "windows-core 0.52.0",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "iana-time-zone-haiku"
808
+ version = "0.1.2"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
811
+ dependencies = [
812
+ "cc",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "icu_collections"
817
+ version = "1.5.0"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
820
+ dependencies = [
821
+ "displaydoc",
822
+ "yoke",
823
+ "zerofrom",
824
+ "zerovec",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "icu_locid"
829
+ version = "1.5.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
832
+ dependencies = [
833
+ "displaydoc",
834
+ "litemap",
835
+ "tinystr",
836
+ "writeable",
837
+ "zerovec",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "icu_locid_transform"
842
+ version = "1.5.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
845
+ dependencies = [
846
+ "displaydoc",
847
+ "icu_locid",
848
+ "icu_locid_transform_data",
849
+ "icu_provider",
850
+ "tinystr",
851
+ "zerovec",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "icu_locid_transform_data"
856
+ version = "1.5.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
859
+
860
+ [[package]]
861
+ name = "icu_normalizer"
862
+ version = "1.5.0"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
865
+ dependencies = [
866
+ "displaydoc",
867
+ "icu_collections",
868
+ "icu_normalizer_data",
869
+ "icu_properties",
870
+ "icu_provider",
871
+ "smallvec",
872
+ "utf16_iter",
873
+ "utf8_iter",
874
+ "write16",
875
+ "zerovec",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "icu_normalizer_data"
880
+ version = "1.5.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
883
+
884
+ [[package]]
885
+ name = "icu_properties"
886
+ version = "1.5.1"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
889
+ dependencies = [
890
+ "displaydoc",
891
+ "icu_collections",
892
+ "icu_locid_transform",
893
+ "icu_properties_data",
894
+ "icu_provider",
895
+ "tinystr",
896
+ "zerovec",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "icu_properties_data"
901
+ version = "1.5.0"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
904
+
905
+ [[package]]
906
+ name = "icu_provider"
907
+ version = "1.5.0"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
910
+ dependencies = [
911
+ "displaydoc",
912
+ "icu_locid",
913
+ "icu_provider_macros",
914
+ "stable_deref_trait",
915
+ "tinystr",
916
+ "writeable",
917
+ "yoke",
918
+ "zerofrom",
919
+ "zerovec",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "icu_provider_macros"
924
+ version = "1.5.0"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
927
+ dependencies = [
928
+ "proc-macro2",
929
+ "quote",
930
+ "syn",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "idna"
935
+ version = "1.0.3"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
938
+ dependencies = [
939
+ "idna_adapter",
940
+ "smallvec",
941
+ "utf8_iter",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "idna_adapter"
946
+ version = "1.2.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
949
+ dependencies = [
950
+ "icu_normalizer",
951
+ "icu_properties",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "indexmap"
956
+ version = "2.7.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
959
+ dependencies = [
960
+ "equivalent",
961
+ "hashbrown",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "ipnet"
966
+ version = "2.11.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
969
+
970
+ [[package]]
971
+ name = "itertools"
972
+ version = "0.12.1"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
975
+ dependencies = [
976
+ "either",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "itoa"
981
+ version = "1.0.14"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
984
+
985
+ [[package]]
986
+ name = "itsi-server"
987
+ version = "0.1.0"
988
+ dependencies = [
989
+ "async-channel",
990
+ "async-trait",
991
+ "base64",
992
+ "bytes",
993
+ "crossbeam",
994
+ "derive_more",
995
+ "dirs",
996
+ "fnv",
997
+ "fs2",
998
+ "futures",
999
+ "http",
1000
+ "http-body-util",
1001
+ "httparse",
1002
+ "hyper",
1003
+ "hyper-util",
1004
+ "itsi_error",
1005
+ "itsi_rb_helpers",
1006
+ "itsi_tracing",
1007
+ "magnus",
1008
+ "nix",
1009
+ "parking_lot",
1010
+ "pin-project",
1011
+ "rb-sys",
1012
+ "rcgen",
1013
+ "regex",
1014
+ "ring",
1015
+ "route-recognizer",
1016
+ "rustls",
1017
+ "rustls-pemfile",
1018
+ "socket2",
1019
+ "sysinfo",
1020
+ "tempfile",
1021
+ "tokio",
1022
+ "tokio-rustls",
1023
+ "tokio-rustls-acme",
1024
+ "tokio-stream",
1025
+ "tokio-util",
1026
+ "tracing",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "itsi_error"
1031
+ version = "0.1.0"
1032
+ dependencies = [
1033
+ "httparse",
1034
+ "magnus",
1035
+ "nix",
1036
+ "rcgen",
1037
+ "thiserror 2.0.11",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "itsi_rb_helpers"
1042
+ version = "0.1.0"
1043
+ dependencies = [
1044
+ "cfg-if",
1045
+ "magnus",
1046
+ "nix",
1047
+ "rb-sys",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "itsi_tracing"
1052
+ version = "0.1.0"
1053
+ dependencies = [
1054
+ "atty",
1055
+ "tracing",
1056
+ "tracing-attributes",
1057
+ "tracing-subscriber",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "jobserver"
1062
+ version = "0.1.32"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1065
+ dependencies = [
1066
+ "libc",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "js-sys"
1071
+ version = "0.3.77"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1074
+ dependencies = [
1075
+ "once_cell",
1076
+ "wasm-bindgen",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "lazy_static"
1081
+ version = "1.5.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1084
+
1085
+ [[package]]
1086
+ name = "lazycell"
1087
+ version = "1.3.0"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1090
+
1091
+ [[package]]
1092
+ name = "libc"
1093
+ version = "0.2.170"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
1096
+
1097
+ [[package]]
1098
+ name = "libloading"
1099
+ version = "0.8.6"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1102
+ dependencies = [
1103
+ "cfg-if",
1104
+ "windows-targets 0.52.6",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "libredox"
1109
+ version = "0.1.3"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1112
+ dependencies = [
1113
+ "bitflags",
1114
+ "libc",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "linux-raw-sys"
1119
+ version = "0.4.15"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1122
+
1123
+ [[package]]
1124
+ name = "linux-raw-sys"
1125
+ version = "0.9.2"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
1128
+
1129
+ [[package]]
1130
+ name = "litemap"
1131
+ version = "0.7.5"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1134
+
1135
+ [[package]]
1136
+ name = "lock_api"
1137
+ version = "0.4.12"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1140
+ dependencies = [
1141
+ "autocfg",
1142
+ "scopeguard",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "log"
1147
+ version = "0.4.26"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
1150
+
1151
+ [[package]]
1152
+ name = "magnus"
1153
+ version = "0.7.1"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
1156
+ dependencies = [
1157
+ "bytes",
1158
+ "magnus-macros",
1159
+ "rb-sys",
1160
+ "rb-sys-env",
1161
+ "seq-macro",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "magnus-macros"
1166
+ version = "0.6.0"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
1169
+ dependencies = [
1170
+ "proc-macro2",
1171
+ "quote",
1172
+ "syn",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "matchers"
1177
+ version = "0.1.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1180
+ dependencies = [
1181
+ "regex-automata 0.1.10",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "memchr"
1186
+ version = "2.7.4"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1189
+
1190
+ [[package]]
1191
+ name = "memoffset"
1192
+ version = "0.9.1"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1195
+ dependencies = [
1196
+ "autocfg",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "mime"
1201
+ version = "0.3.17"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1204
+
1205
+ [[package]]
1206
+ name = "minimal-lexical"
1207
+ version = "0.2.1"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1210
+
1211
+ [[package]]
1212
+ name = "miniz_oxide"
1213
+ version = "0.8.5"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1216
+ dependencies = [
1217
+ "adler2",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "mio"
1222
+ version = "1.0.3"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1225
+ dependencies = [
1226
+ "libc",
1227
+ "wasi 0.11.0+wasi-snapshot-preview1",
1228
+ "windows-sys 0.52.0",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "nix"
1233
+ version = "0.29.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1236
+ dependencies = [
1237
+ "bitflags",
1238
+ "cfg-if",
1239
+ "cfg_aliases",
1240
+ "libc",
1241
+ "memoffset",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "nom"
1246
+ version = "7.1.3"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1249
+ dependencies = [
1250
+ "memchr",
1251
+ "minimal-lexical",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "ntapi"
1256
+ version = "0.4.1"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1259
+ dependencies = [
1260
+ "winapi",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "nu-ansi-term"
1265
+ version = "0.46.0"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1268
+ dependencies = [
1269
+ "overload",
1270
+ "winapi",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "num-bigint"
1275
+ version = "0.4.6"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1278
+ dependencies = [
1279
+ "num-integer",
1280
+ "num-traits",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "num-conv"
1285
+ version = "0.1.0"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1288
+
1289
+ [[package]]
1290
+ name = "num-integer"
1291
+ version = "0.1.46"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1294
+ dependencies = [
1295
+ "num-traits",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "num-traits"
1300
+ version = "0.2.19"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1303
+ dependencies = [
1304
+ "autocfg",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "object"
1309
+ version = "0.36.7"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1312
+ dependencies = [
1313
+ "memchr",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "oid-registry"
1318
+ version = "0.7.1"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9"
1321
+ dependencies = [
1322
+ "asn1-rs",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "once_cell"
1327
+ version = "1.20.3"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
1330
+
1331
+ [[package]]
1332
+ name = "option-ext"
1333
+ version = "0.2.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1336
+
1337
+ [[package]]
1338
+ name = "overload"
1339
+ version = "0.1.1"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1342
+
1343
+ [[package]]
1344
+ name = "parking"
1345
+ version = "2.2.1"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1348
+
1349
+ [[package]]
1350
+ name = "parking_lot"
1351
+ version = "0.12.3"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1354
+ dependencies = [
1355
+ "lock_api",
1356
+ "parking_lot_core",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "parking_lot_core"
1361
+ version = "0.9.10"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1364
+ dependencies = [
1365
+ "cfg-if",
1366
+ "libc",
1367
+ "redox_syscall",
1368
+ "smallvec",
1369
+ "windows-targets 0.52.6",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "paste"
1374
+ version = "1.0.15"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1377
+
1378
+ [[package]]
1379
+ name = "pem"
1380
+ version = "3.0.5"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1383
+ dependencies = [
1384
+ "base64",
1385
+ "serde",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "percent-encoding"
1390
+ version = "2.3.1"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1393
+
1394
+ [[package]]
1395
+ name = "pin-project"
1396
+ version = "1.1.9"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
1399
+ dependencies = [
1400
+ "pin-project-internal",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "pin-project-internal"
1405
+ version = "1.1.9"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
1408
+ dependencies = [
1409
+ "proc-macro2",
1410
+ "quote",
1411
+ "syn",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "pin-project-lite"
1416
+ version = "0.2.16"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1419
+
1420
+ [[package]]
1421
+ name = "pin-utils"
1422
+ version = "0.1.0"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1425
+
1426
+ [[package]]
1427
+ name = "powerfmt"
1428
+ version = "0.2.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1431
+
1432
+ [[package]]
1433
+ name = "ppv-lite86"
1434
+ version = "0.2.21"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1437
+ dependencies = [
1438
+ "zerocopy",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "prettyplease"
1443
+ version = "0.2.29"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
1446
+ dependencies = [
1447
+ "proc-macro2",
1448
+ "syn",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "proc-macro2"
1453
+ version = "1.0.93"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
1456
+ dependencies = [
1457
+ "unicode-ident",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "quinn"
1462
+ version = "0.11.6"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
1465
+ dependencies = [
1466
+ "bytes",
1467
+ "pin-project-lite",
1468
+ "quinn-proto",
1469
+ "quinn-udp",
1470
+ "rustc-hash 2.1.1",
1471
+ "rustls",
1472
+ "socket2",
1473
+ "thiserror 2.0.11",
1474
+ "tokio",
1475
+ "tracing",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "quinn-proto"
1480
+ version = "0.11.9"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
1483
+ dependencies = [
1484
+ "bytes",
1485
+ "getrandom 0.2.15",
1486
+ "rand",
1487
+ "ring",
1488
+ "rustc-hash 2.1.1",
1489
+ "rustls",
1490
+ "rustls-pki-types",
1491
+ "slab",
1492
+ "thiserror 2.0.11",
1493
+ "tinyvec",
1494
+ "tracing",
1495
+ "web-time",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "quinn-udp"
1500
+ version = "0.5.10"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
1503
+ dependencies = [
1504
+ "cfg_aliases",
1505
+ "libc",
1506
+ "once_cell",
1507
+ "socket2",
1508
+ "tracing",
1509
+ "windows-sys 0.59.0",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "quote"
1514
+ version = "1.0.38"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
1517
+ dependencies = [
1518
+ "proc-macro2",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "rand"
1523
+ version = "0.8.5"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1526
+ dependencies = [
1527
+ "libc",
1528
+ "rand_chacha",
1529
+ "rand_core",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "rand_chacha"
1534
+ version = "0.3.1"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1537
+ dependencies = [
1538
+ "ppv-lite86",
1539
+ "rand_core",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "rand_core"
1544
+ version = "0.6.4"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1547
+ dependencies = [
1548
+ "getrandom 0.2.15",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "rayon"
1553
+ version = "1.10.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1556
+ dependencies = [
1557
+ "either",
1558
+ "rayon-core",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "rayon-core"
1563
+ version = "1.12.1"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1566
+ dependencies = [
1567
+ "crossbeam-deque",
1568
+ "crossbeam-utils",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "rb-sys"
1573
+ version = "0.9.111"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
1576
+ dependencies = [
1577
+ "rb-sys-build",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "rb-sys-build"
1582
+ version = "0.9.111"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
1585
+ dependencies = [
1586
+ "bindgen",
1587
+ "lazy_static",
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "regex",
1591
+ "shell-words",
1592
+ "syn",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "rb-sys-env"
1597
+ version = "0.1.2"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
1600
+
1601
+ [[package]]
1602
+ name = "rcgen"
1603
+ version = "0.13.2"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
1606
+ dependencies = [
1607
+ "pem",
1608
+ "ring",
1609
+ "rustls-pki-types",
1610
+ "time",
1611
+ "x509-parser",
1612
+ "yasna",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "redox_syscall"
1617
+ version = "0.5.9"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
1620
+ dependencies = [
1621
+ "bitflags",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "redox_users"
1626
+ version = "0.5.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
1629
+ dependencies = [
1630
+ "getrandom 0.2.15",
1631
+ "libredox",
1632
+ "thiserror 2.0.11",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "regex"
1637
+ version = "1.11.1"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1640
+ dependencies = [
1641
+ "aho-corasick",
1642
+ "memchr",
1643
+ "regex-automata 0.4.9",
1644
+ "regex-syntax 0.8.5",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "regex-automata"
1649
+ version = "0.1.10"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1652
+ dependencies = [
1653
+ "regex-syntax 0.6.29",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "regex-automata"
1658
+ version = "0.4.9"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1661
+ dependencies = [
1662
+ "aho-corasick",
1663
+ "memchr",
1664
+ "regex-syntax 0.8.5",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "regex-syntax"
1669
+ version = "0.6.29"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1672
+
1673
+ [[package]]
1674
+ name = "regex-syntax"
1675
+ version = "0.8.5"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1678
+
1679
+ [[package]]
1680
+ name = "reqwest"
1681
+ version = "0.12.14"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "989e327e510263980e231de548a33e63d34962d29ae61b467389a1a09627a254"
1684
+ dependencies = [
1685
+ "base64",
1686
+ "bytes",
1687
+ "futures-core",
1688
+ "futures-util",
1689
+ "http",
1690
+ "http-body",
1691
+ "http-body-util",
1692
+ "hyper",
1693
+ "hyper-rustls",
1694
+ "hyper-util",
1695
+ "ipnet",
1696
+ "js-sys",
1697
+ "log",
1698
+ "mime",
1699
+ "once_cell",
1700
+ "percent-encoding",
1701
+ "pin-project-lite",
1702
+ "quinn",
1703
+ "rustls",
1704
+ "rustls-pemfile",
1705
+ "rustls-pki-types",
1706
+ "serde",
1707
+ "serde_json",
1708
+ "serde_urlencoded",
1709
+ "sync_wrapper",
1710
+ "tokio",
1711
+ "tokio-rustls",
1712
+ "tower",
1713
+ "tower-service",
1714
+ "url",
1715
+ "wasm-bindgen",
1716
+ "wasm-bindgen-futures",
1717
+ "web-sys",
1718
+ "webpki-roots",
1719
+ "windows-registry",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "ring"
1724
+ version = "0.17.14"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1727
+ dependencies = [
1728
+ "cc",
1729
+ "cfg-if",
1730
+ "getrandom 0.2.15",
1731
+ "libc",
1732
+ "untrusted",
1733
+ "windows-sys 0.52.0",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "route-recognizer"
1738
+ version = "0.3.1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746"
1741
+
1742
+ [[package]]
1743
+ name = "rustc-demangle"
1744
+ version = "0.1.24"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1747
+
1748
+ [[package]]
1749
+ name = "rustc-hash"
1750
+ version = "1.1.0"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1753
+
1754
+ [[package]]
1755
+ name = "rustc-hash"
1756
+ version = "2.1.1"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1759
+
1760
+ [[package]]
1761
+ name = "rusticata-macros"
1762
+ version = "4.1.0"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
1765
+ dependencies = [
1766
+ "nom",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "rustix"
1771
+ version = "0.38.44"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1774
+ dependencies = [
1775
+ "bitflags",
1776
+ "errno",
1777
+ "libc",
1778
+ "linux-raw-sys 0.4.15",
1779
+ "windows-sys 0.59.0",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "rustix"
1784
+ version = "1.0.1"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657"
1787
+ dependencies = [
1788
+ "bitflags",
1789
+ "errno",
1790
+ "libc",
1791
+ "linux-raw-sys 0.9.2",
1792
+ "windows-sys 0.59.0",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "rustls"
1797
+ version = "0.23.23"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
1800
+ dependencies = [
1801
+ "aws-lc-rs",
1802
+ "log",
1803
+ "once_cell",
1804
+ "ring",
1805
+ "rustls-pki-types",
1806
+ "rustls-webpki",
1807
+ "subtle",
1808
+ "zeroize",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "rustls-pemfile"
1813
+ version = "2.2.0"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1816
+ dependencies = [
1817
+ "rustls-pki-types",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "rustls-pki-types"
1822
+ version = "1.11.0"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
1825
+ dependencies = [
1826
+ "web-time",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "rustls-webpki"
1831
+ version = "0.102.8"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
1834
+ dependencies = [
1835
+ "aws-lc-rs",
1836
+ "ring",
1837
+ "rustls-pki-types",
1838
+ "untrusted",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "rustversion"
1843
+ version = "1.0.20"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
1846
+
1847
+ [[package]]
1848
+ name = "ryu"
1849
+ version = "1.0.19"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
1852
+
1853
+ [[package]]
1854
+ name = "scopeguard"
1855
+ version = "1.2.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1858
+
1859
+ [[package]]
1860
+ name = "seq-macro"
1861
+ version = "0.3.5"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
1864
+
1865
+ [[package]]
1866
+ name = "serde"
1867
+ version = "1.0.218"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60"
1870
+ dependencies = [
1871
+ "serde_derive",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "serde_derive"
1876
+ version = "1.0.218"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b"
1879
+ dependencies = [
1880
+ "proc-macro2",
1881
+ "quote",
1882
+ "syn",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "serde_json"
1887
+ version = "1.0.139"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6"
1890
+ dependencies = [
1891
+ "itoa",
1892
+ "memchr",
1893
+ "ryu",
1894
+ "serde",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "serde_urlencoded"
1899
+ version = "0.7.1"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1902
+ dependencies = [
1903
+ "form_urlencoded",
1904
+ "itoa",
1905
+ "ryu",
1906
+ "serde",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "sharded-slab"
1911
+ version = "0.1.7"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1914
+ dependencies = [
1915
+ "lazy_static",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "shell-words"
1920
+ version = "1.1.0"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1923
+
1924
+ [[package]]
1925
+ name = "shlex"
1926
+ version = "1.3.0"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1929
+
1930
+ [[package]]
1931
+ name = "signal-hook-registry"
1932
+ version = "1.4.2"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1935
+ dependencies = [
1936
+ "libc",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "slab"
1941
+ version = "0.4.9"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1944
+ dependencies = [
1945
+ "autocfg",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "smallvec"
1950
+ version = "1.14.0"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
1953
+
1954
+ [[package]]
1955
+ name = "socket2"
1956
+ version = "0.5.8"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
1959
+ dependencies = [
1960
+ "libc",
1961
+ "windows-sys 0.52.0",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "stable_deref_trait"
1966
+ version = "1.2.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1969
+
1970
+ [[package]]
1971
+ name = "subtle"
1972
+ version = "2.6.1"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1975
+
1976
+ [[package]]
1977
+ name = "syn"
1978
+ version = "2.0.98"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
1981
+ dependencies = [
1982
+ "proc-macro2",
1983
+ "quote",
1984
+ "unicode-ident",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "sync_wrapper"
1989
+ version = "1.0.2"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1992
+ dependencies = [
1993
+ "futures-core",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "synstructure"
1998
+ version = "0.13.1"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2001
+ dependencies = [
2002
+ "proc-macro2",
2003
+ "quote",
2004
+ "syn",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "sysinfo"
2009
+ version = "0.33.1"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
2012
+ dependencies = [
2013
+ "core-foundation-sys",
2014
+ "libc",
2015
+ "memchr",
2016
+ "ntapi",
2017
+ "rayon",
2018
+ "windows",
2019
+ ]
2020
+
2021
+ [[package]]
2022
+ name = "tempfile"
2023
+ version = "3.18.0"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567"
2026
+ dependencies = [
2027
+ "cfg-if",
2028
+ "fastrand",
2029
+ "getrandom 0.3.1",
2030
+ "once_cell",
2031
+ "rustix 1.0.1",
2032
+ "windows-sys 0.59.0",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "thiserror"
2037
+ version = "1.0.69"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2040
+ dependencies = [
2041
+ "thiserror-impl 1.0.69",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "thiserror"
2046
+ version = "2.0.11"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
2049
+ dependencies = [
2050
+ "thiserror-impl 2.0.11",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "thiserror-impl"
2055
+ version = "1.0.69"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2058
+ dependencies = [
2059
+ "proc-macro2",
2060
+ "quote",
2061
+ "syn",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "thiserror-impl"
2066
+ version = "2.0.11"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
2069
+ dependencies = [
2070
+ "proc-macro2",
2071
+ "quote",
2072
+ "syn",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "thread_local"
2077
+ version = "1.1.8"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2080
+ dependencies = [
2081
+ "cfg-if",
2082
+ "once_cell",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "time"
2087
+ version = "0.3.37"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
2090
+ dependencies = [
2091
+ "deranged",
2092
+ "itoa",
2093
+ "num-conv",
2094
+ "powerfmt",
2095
+ "serde",
2096
+ "time-core",
2097
+ "time-macros",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "time-core"
2102
+ version = "0.1.2"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2105
+
2106
+ [[package]]
2107
+ name = "time-macros"
2108
+ version = "0.2.19"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
2111
+ dependencies = [
2112
+ "num-conv",
2113
+ "time-core",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "tinystr"
2118
+ version = "0.7.6"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2121
+ dependencies = [
2122
+ "displaydoc",
2123
+ "zerovec",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "tinyvec"
2128
+ version = "1.9.0"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2131
+ dependencies = [
2132
+ "tinyvec_macros",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "tinyvec_macros"
2137
+ version = "0.1.1"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2140
+
2141
+ [[package]]
2142
+ name = "tokio"
2143
+ version = "1.44.1"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
2146
+ dependencies = [
2147
+ "backtrace",
2148
+ "bytes",
2149
+ "libc",
2150
+ "mio",
2151
+ "parking_lot",
2152
+ "pin-project-lite",
2153
+ "signal-hook-registry",
2154
+ "socket2",
2155
+ "tokio-macros",
2156
+ "windows-sys 0.52.0",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "tokio-macros"
2161
+ version = "2.5.0"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2164
+ dependencies = [
2165
+ "proc-macro2",
2166
+ "quote",
2167
+ "syn",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "tokio-rustls"
2172
+ version = "0.26.2"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2175
+ dependencies = [
2176
+ "rustls",
2177
+ "tokio",
2178
+ ]
2179
+
2180
+ [[package]]
2181
+ name = "tokio-rustls-acme"
2182
+ version = "0.6.0"
2183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2184
+ checksum = "3184e8e292a828dd4bca5b2a60aba830ec5ed873a66c9ebb6e65038fa649e827"
2185
+ dependencies = [
2186
+ "async-trait",
2187
+ "base64",
2188
+ "chrono",
2189
+ "futures",
2190
+ "log",
2191
+ "num-bigint",
2192
+ "pem",
2193
+ "proc-macro2",
2194
+ "rcgen",
2195
+ "reqwest",
2196
+ "ring",
2197
+ "rustls",
2198
+ "serde",
2199
+ "serde_json",
2200
+ "thiserror 2.0.11",
2201
+ "time",
2202
+ "tokio",
2203
+ "tokio-rustls",
2204
+ "webpki-roots",
2205
+ "x509-parser",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "tokio-stream"
2210
+ version = "0.1.17"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2213
+ dependencies = [
2214
+ "futures-core",
2215
+ "pin-project-lite",
2216
+ "tokio",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "tokio-util"
2221
+ version = "0.7.13"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
2224
+ dependencies = [
2225
+ "bytes",
2226
+ "futures-core",
2227
+ "futures-sink",
2228
+ "pin-project-lite",
2229
+ "tokio",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "tower"
2234
+ version = "0.5.2"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2237
+ dependencies = [
2238
+ "futures-core",
2239
+ "futures-util",
2240
+ "pin-project-lite",
2241
+ "sync_wrapper",
2242
+ "tokio",
2243
+ "tower-layer",
2244
+ "tower-service",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "tower-layer"
2249
+ version = "0.3.3"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2252
+
2253
+ [[package]]
2254
+ name = "tower-service"
2255
+ version = "0.3.3"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2258
+
2259
+ [[package]]
2260
+ name = "tracing"
2261
+ version = "0.1.41"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2264
+ dependencies = [
2265
+ "pin-project-lite",
2266
+ "tracing-attributes",
2267
+ "tracing-core",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "tracing-attributes"
2272
+ version = "0.1.28"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2275
+ dependencies = [
2276
+ "proc-macro2",
2277
+ "quote",
2278
+ "syn",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "tracing-core"
2283
+ version = "0.1.33"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2286
+ dependencies = [
2287
+ "once_cell",
2288
+ "valuable",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "tracing-log"
2293
+ version = "0.2.0"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2296
+ dependencies = [
2297
+ "log",
2298
+ "once_cell",
2299
+ "tracing-core",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "tracing-serde"
2304
+ version = "0.2.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
2307
+ dependencies = [
2308
+ "serde",
2309
+ "tracing-core",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "tracing-subscriber"
2314
+ version = "0.3.19"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2317
+ dependencies = [
2318
+ "matchers",
2319
+ "nu-ansi-term",
2320
+ "once_cell",
2321
+ "regex",
2322
+ "serde",
2323
+ "serde_json",
2324
+ "sharded-slab",
2325
+ "smallvec",
2326
+ "thread_local",
2327
+ "tracing",
2328
+ "tracing-core",
2329
+ "tracing-log",
2330
+ "tracing-serde",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "try-lock"
2335
+ version = "0.2.5"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2338
+
2339
+ [[package]]
2340
+ name = "unicode-ident"
2341
+ version = "1.0.17"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
2344
+
2345
+ [[package]]
2346
+ name = "unicode-xid"
2347
+ version = "0.2.6"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2350
+
2351
+ [[package]]
2352
+ name = "untrusted"
2353
+ version = "0.9.0"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2356
+
2357
+ [[package]]
2358
+ name = "url"
2359
+ version = "2.5.4"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2362
+ dependencies = [
2363
+ "form_urlencoded",
2364
+ "idna",
2365
+ "percent-encoding",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "utf16_iter"
2370
+ version = "1.0.5"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
2373
+
2374
+ [[package]]
2375
+ name = "utf8_iter"
2376
+ version = "1.0.4"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2379
+
2380
+ [[package]]
2381
+ name = "valuable"
2382
+ version = "0.1.1"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2385
+
2386
+ [[package]]
2387
+ name = "want"
2388
+ version = "0.3.1"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2391
+ dependencies = [
2392
+ "try-lock",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "wasi"
2397
+ version = "0.11.0+wasi-snapshot-preview1"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2400
+
2401
+ [[package]]
2402
+ name = "wasi"
2403
+ version = "0.13.3+wasi-0.2.2"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
2406
+ dependencies = [
2407
+ "wit-bindgen-rt",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "wasm-bindgen"
2412
+ version = "0.2.100"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2415
+ dependencies = [
2416
+ "cfg-if",
2417
+ "once_cell",
2418
+ "rustversion",
2419
+ "wasm-bindgen-macro",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "wasm-bindgen-backend"
2424
+ version = "0.2.100"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2427
+ dependencies = [
2428
+ "bumpalo",
2429
+ "log",
2430
+ "proc-macro2",
2431
+ "quote",
2432
+ "syn",
2433
+ "wasm-bindgen-shared",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "wasm-bindgen-futures"
2438
+ version = "0.4.50"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
2441
+ dependencies = [
2442
+ "cfg-if",
2443
+ "js-sys",
2444
+ "once_cell",
2445
+ "wasm-bindgen",
2446
+ "web-sys",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "wasm-bindgen-macro"
2451
+ version = "0.2.100"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2454
+ dependencies = [
2455
+ "quote",
2456
+ "wasm-bindgen-macro-support",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "wasm-bindgen-macro-support"
2461
+ version = "0.2.100"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2464
+ dependencies = [
2465
+ "proc-macro2",
2466
+ "quote",
2467
+ "syn",
2468
+ "wasm-bindgen-backend",
2469
+ "wasm-bindgen-shared",
2470
+ ]
2471
+
2472
+ [[package]]
2473
+ name = "wasm-bindgen-shared"
2474
+ version = "0.2.100"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2477
+ dependencies = [
2478
+ "unicode-ident",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "web-sys"
2483
+ version = "0.3.77"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2486
+ dependencies = [
2487
+ "js-sys",
2488
+ "wasm-bindgen",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "web-time"
2493
+ version = "1.1.0"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2496
+ dependencies = [
2497
+ "js-sys",
2498
+ "wasm-bindgen",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "webpki-roots"
2503
+ version = "0.26.8"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
2506
+ dependencies = [
2507
+ "rustls-pki-types",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "which"
2512
+ version = "4.4.2"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
2515
+ dependencies = [
2516
+ "either",
2517
+ "home",
2518
+ "once_cell",
2519
+ "rustix 0.38.44",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "winapi"
2524
+ version = "0.3.9"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2527
+ dependencies = [
2528
+ "winapi-i686-pc-windows-gnu",
2529
+ "winapi-x86_64-pc-windows-gnu",
2530
+ ]
2531
+
2532
+ [[package]]
2533
+ name = "winapi-i686-pc-windows-gnu"
2534
+ version = "0.4.0"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2537
+
2538
+ [[package]]
2539
+ name = "winapi-x86_64-pc-windows-gnu"
2540
+ version = "0.4.0"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2543
+
2544
+ [[package]]
2545
+ name = "windows"
2546
+ version = "0.57.0"
2547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2548
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
2549
+ dependencies = [
2550
+ "windows-core 0.57.0",
2551
+ "windows-targets 0.52.6",
2552
+ ]
2553
+
2554
+ [[package]]
2555
+ name = "windows-core"
2556
+ version = "0.52.0"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2559
+ dependencies = [
2560
+ "windows-targets 0.52.6",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "windows-core"
2565
+ version = "0.57.0"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
2568
+ dependencies = [
2569
+ "windows-implement",
2570
+ "windows-interface",
2571
+ "windows-result 0.1.2",
2572
+ "windows-targets 0.52.6",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "windows-implement"
2577
+ version = "0.57.0"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
2580
+ dependencies = [
2581
+ "proc-macro2",
2582
+ "quote",
2583
+ "syn",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "windows-interface"
2588
+ version = "0.57.0"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
2591
+ dependencies = [
2592
+ "proc-macro2",
2593
+ "quote",
2594
+ "syn",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "windows-link"
2599
+ version = "0.1.0"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
2602
+
2603
+ [[package]]
2604
+ name = "windows-registry"
2605
+ version = "0.4.0"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
2608
+ dependencies = [
2609
+ "windows-result 0.3.1",
2610
+ "windows-strings",
2611
+ "windows-targets 0.53.0",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "windows-result"
2616
+ version = "0.1.2"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
2619
+ dependencies = [
2620
+ "windows-targets 0.52.6",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "windows-result"
2625
+ version = "0.3.1"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189"
2628
+ dependencies = [
2629
+ "windows-link",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "windows-strings"
2634
+ version = "0.3.1"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
2637
+ dependencies = [
2638
+ "windows-link",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "windows-sys"
2643
+ version = "0.52.0"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2646
+ dependencies = [
2647
+ "windows-targets 0.52.6",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "windows-sys"
2652
+ version = "0.59.0"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2655
+ dependencies = [
2656
+ "windows-targets 0.52.6",
2657
+ ]
2658
+
2659
+ [[package]]
2660
+ name = "windows-targets"
2661
+ version = "0.52.6"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2664
+ dependencies = [
2665
+ "windows_aarch64_gnullvm 0.52.6",
2666
+ "windows_aarch64_msvc 0.52.6",
2667
+ "windows_i686_gnu 0.52.6",
2668
+ "windows_i686_gnullvm 0.52.6",
2669
+ "windows_i686_msvc 0.52.6",
2670
+ "windows_x86_64_gnu 0.52.6",
2671
+ "windows_x86_64_gnullvm 0.52.6",
2672
+ "windows_x86_64_msvc 0.52.6",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "windows-targets"
2677
+ version = "0.53.0"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
2680
+ dependencies = [
2681
+ "windows_aarch64_gnullvm 0.53.0",
2682
+ "windows_aarch64_msvc 0.53.0",
2683
+ "windows_i686_gnu 0.53.0",
2684
+ "windows_i686_gnullvm 0.53.0",
2685
+ "windows_i686_msvc 0.53.0",
2686
+ "windows_x86_64_gnu 0.53.0",
2687
+ "windows_x86_64_gnullvm 0.53.0",
2688
+ "windows_x86_64_msvc 0.53.0",
2689
+ ]
2690
+
2691
+ [[package]]
2692
+ name = "windows_aarch64_gnullvm"
2693
+ version = "0.52.6"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2696
+
2697
+ [[package]]
2698
+ name = "windows_aarch64_gnullvm"
2699
+ version = "0.53.0"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2702
+
2703
+ [[package]]
2704
+ name = "windows_aarch64_msvc"
2705
+ version = "0.52.6"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2708
+
2709
+ [[package]]
2710
+ name = "windows_aarch64_msvc"
2711
+ version = "0.53.0"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2714
+
2715
+ [[package]]
2716
+ name = "windows_i686_gnu"
2717
+ version = "0.52.6"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2720
+
2721
+ [[package]]
2722
+ name = "windows_i686_gnu"
2723
+ version = "0.53.0"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2726
+
2727
+ [[package]]
2728
+ name = "windows_i686_gnullvm"
2729
+ version = "0.52.6"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2732
+
2733
+ [[package]]
2734
+ name = "windows_i686_gnullvm"
2735
+ version = "0.53.0"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2738
+
2739
+ [[package]]
2740
+ name = "windows_i686_msvc"
2741
+ version = "0.52.6"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2744
+
2745
+ [[package]]
2746
+ name = "windows_i686_msvc"
2747
+ version = "0.53.0"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2750
+
2751
+ [[package]]
2752
+ name = "windows_x86_64_gnu"
2753
+ version = "0.52.6"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2756
+
2757
+ [[package]]
2758
+ name = "windows_x86_64_gnu"
2759
+ version = "0.53.0"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2762
+
2763
+ [[package]]
2764
+ name = "windows_x86_64_gnullvm"
2765
+ version = "0.52.6"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2768
+
2769
+ [[package]]
2770
+ name = "windows_x86_64_gnullvm"
2771
+ version = "0.53.0"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2774
+
2775
+ [[package]]
2776
+ name = "windows_x86_64_msvc"
2777
+ version = "0.52.6"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2780
+
2781
+ [[package]]
2782
+ name = "windows_x86_64_msvc"
2783
+ version = "0.53.0"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2786
+
2787
+ [[package]]
2788
+ name = "wit-bindgen-rt"
2789
+ version = "0.33.0"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
2792
+ dependencies = [
2793
+ "bitflags",
2794
+ ]
2795
+
2796
+ [[package]]
2797
+ name = "write16"
2798
+ version = "1.0.0"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2801
+
2802
+ [[package]]
2803
+ name = "writeable"
2804
+ version = "0.5.5"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2807
+
2808
+ [[package]]
2809
+ name = "x509-parser"
2810
+ version = "0.16.0"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
2813
+ dependencies = [
2814
+ "asn1-rs",
2815
+ "data-encoding",
2816
+ "der-parser",
2817
+ "lazy_static",
2818
+ "nom",
2819
+ "oid-registry",
2820
+ "ring",
2821
+ "rusticata-macros",
2822
+ "thiserror 1.0.69",
2823
+ "time",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "yasna"
2828
+ version = "0.5.2"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2831
+ dependencies = [
2832
+ "time",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "yoke"
2837
+ version = "0.7.5"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2840
+ dependencies = [
2841
+ "serde",
2842
+ "stable_deref_trait",
2843
+ "yoke-derive",
2844
+ "zerofrom",
2845
+ ]
2846
+
2847
+ [[package]]
2848
+ name = "yoke-derive"
2849
+ version = "0.7.5"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2852
+ dependencies = [
2853
+ "proc-macro2",
2854
+ "quote",
2855
+ "syn",
2856
+ "synstructure",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "zerocopy"
2861
+ version = "0.8.23"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6"
2864
+ dependencies = [
2865
+ "zerocopy-derive",
2866
+ ]
2867
+
2868
+ [[package]]
2869
+ name = "zerocopy-derive"
2870
+ version = "0.8.23"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154"
2873
+ dependencies = [
2874
+ "proc-macro2",
2875
+ "quote",
2876
+ "syn",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "zerofrom"
2881
+ version = "0.1.6"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2884
+ dependencies = [
2885
+ "zerofrom-derive",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "zerofrom-derive"
2890
+ version = "0.1.6"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2893
+ dependencies = [
2894
+ "proc-macro2",
2895
+ "quote",
2896
+ "syn",
2897
+ "synstructure",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "zeroize"
2902
+ version = "1.8.1"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2905
+
2906
+ [[package]]
2907
+ name = "zerovec"
2908
+ version = "0.10.4"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
2911
+ dependencies = [
2912
+ "yoke",
2913
+ "zerofrom",
2914
+ "zerovec-derive",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "zerovec-derive"
2919
+ version = "0.10.3"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
2922
+ dependencies = [
2923
+ "proc-macro2",
2924
+ "quote",
2925
+ "syn",
2926
+ ]