tasker-rb 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/DEVELOPMENT.md +548 -0
  3. data/README.md +87 -0
  4. data/ext/tasker_core/Cargo.lock +4720 -0
  5. data/ext/tasker_core/Cargo.toml +76 -0
  6. data/ext/tasker_core/extconf.rb +38 -0
  7. data/ext/tasker_core/src/CLAUDE.md +7 -0
  8. data/ext/tasker_core/src/bootstrap.rs +320 -0
  9. data/ext/tasker_core/src/bridge.rs +400 -0
  10. data/ext/tasker_core/src/client_ffi.rs +173 -0
  11. data/ext/tasker_core/src/conversions.rs +131 -0
  12. data/ext/tasker_core/src/diagnostics.rs +57 -0
  13. data/ext/tasker_core/src/event_handler.rs +179 -0
  14. data/ext/tasker_core/src/event_publisher_ffi.rs +239 -0
  15. data/ext/tasker_core/src/ffi_logging.rs +245 -0
  16. data/ext/tasker_core/src/global_event_system.rs +16 -0
  17. data/ext/tasker_core/src/in_process_event_ffi.rs +319 -0
  18. data/ext/tasker_core/src/lib.rs +41 -0
  19. data/ext/tasker_core/src/observability_ffi.rs +339 -0
  20. data/lib/tasker_core/batch_processing/batch_aggregation_scenario.rb +85 -0
  21. data/lib/tasker_core/batch_processing/batch_worker_context.rb +238 -0
  22. data/lib/tasker_core/bootstrap.rb +394 -0
  23. data/lib/tasker_core/domain_events/base_publisher.rb +220 -0
  24. data/lib/tasker_core/domain_events/base_subscriber.rb +178 -0
  25. data/lib/tasker_core/domain_events/publisher_registry.rb +253 -0
  26. data/lib/tasker_core/domain_events/subscriber_registry.rb +152 -0
  27. data/lib/tasker_core/domain_events.rb +43 -0
  28. data/lib/tasker_core/errors/CLAUDE.md +7 -0
  29. data/lib/tasker_core/errors/common.rb +305 -0
  30. data/lib/tasker_core/errors/error_classifier.rb +61 -0
  31. data/lib/tasker_core/errors.rb +4 -0
  32. data/lib/tasker_core/event_bridge.rb +330 -0
  33. data/lib/tasker_core/handlers.rb +159 -0
  34. data/lib/tasker_core/internal.rb +31 -0
  35. data/lib/tasker_core/logger.rb +234 -0
  36. data/lib/tasker_core/models.rb +337 -0
  37. data/lib/tasker_core/observability/types.rb +158 -0
  38. data/lib/tasker_core/observability.rb +292 -0
  39. data/lib/tasker_core/registry/handler_registry.rb +453 -0
  40. data/lib/tasker_core/registry/resolver_chain.rb +258 -0
  41. data/lib/tasker_core/registry/resolvers/base_resolver.rb +90 -0
  42. data/lib/tasker_core/registry/resolvers/class_constant_resolver.rb +156 -0
  43. data/lib/tasker_core/registry/resolvers/explicit_mapping_resolver.rb +146 -0
  44. data/lib/tasker_core/registry/resolvers/method_dispatch_wrapper.rb +144 -0
  45. data/lib/tasker_core/registry/resolvers/registry_resolver.rb +229 -0
  46. data/lib/tasker_core/registry/resolvers.rb +42 -0
  47. data/lib/tasker_core/registry.rb +12 -0
  48. data/lib/tasker_core/step_handler/api.rb +48 -0
  49. data/lib/tasker_core/step_handler/base.rb +354 -0
  50. data/lib/tasker_core/step_handler/batchable.rb +50 -0
  51. data/lib/tasker_core/step_handler/decision.rb +53 -0
  52. data/lib/tasker_core/step_handler/mixins/api.rb +452 -0
  53. data/lib/tasker_core/step_handler/mixins/batchable.rb +465 -0
  54. data/lib/tasker_core/step_handler/mixins/decision.rb +252 -0
  55. data/lib/tasker_core/step_handler/mixins.rb +66 -0
  56. data/lib/tasker_core/subscriber.rb +212 -0
  57. data/lib/tasker_core/task_handler/base.rb +254 -0
  58. data/lib/tasker_core/tasker_rb.so +0 -0
  59. data/lib/tasker_core/template_discovery.rb +181 -0
  60. data/lib/tasker_core/tracing.rb +166 -0
  61. data/lib/tasker_core/types/batch_processing_outcome.rb +301 -0
  62. data/lib/tasker_core/types/client_types.rb +145 -0
  63. data/lib/tasker_core/types/decision_point_outcome.rb +177 -0
  64. data/lib/tasker_core/types/error_types.rb +72 -0
  65. data/lib/tasker_core/types/simple_message.rb +151 -0
  66. data/lib/tasker_core/types/step_context.rb +328 -0
  67. data/lib/tasker_core/types/step_handler_call_result.rb +307 -0
  68. data/lib/tasker_core/types/step_message.rb +112 -0
  69. data/lib/tasker_core/types/step_types.rb +207 -0
  70. data/lib/tasker_core/types/task_template.rb +240 -0
  71. data/lib/tasker_core/types/task_types.rb +148 -0
  72. data/lib/tasker_core/types.rb +132 -0
  73. data/lib/tasker_core/version.rb +13 -0
  74. data/lib/tasker_core/worker/CLAUDE.md +7 -0
  75. data/lib/tasker_core/worker/event_poller.rb +224 -0
  76. data/lib/tasker_core/worker/in_process_domain_event_poller.rb +271 -0
  77. data/lib/tasker_core.rb +160 -0
  78. metadata +322 -0
@@ -0,0 +1,4720 @@
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.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.7.8"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
25
+ dependencies = [
26
+ "getrandom 0.2.16",
27
+ "once_cell",
28
+ "version_check",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "aho-corasick"
33
+ version = "1.1.3"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
36
+ dependencies = [
37
+ "memchr",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "allocator-api2"
42
+ version = "0.2.21"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
45
+
46
+ [[package]]
47
+ name = "android-tzdata"
48
+ version = "0.1.1"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
51
+
52
+ [[package]]
53
+ name = "android_system_properties"
54
+ version = "0.1.5"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
57
+ dependencies = [
58
+ "libc",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anyhow"
63
+ version = "1.0.98"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
66
+
67
+ [[package]]
68
+ name = "arbitrary"
69
+ version = "1.4.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
72
+ dependencies = [
73
+ "derive_arbitrary",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "arraydeque"
78
+ version = "0.5.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
81
+
82
+ [[package]]
83
+ name = "arrayvec"
84
+ version = "0.7.6"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
87
+
88
+ [[package]]
89
+ name = "async-stream"
90
+ version = "0.3.6"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
93
+ dependencies = [
94
+ "async-stream-impl",
95
+ "futures-core",
96
+ "pin-project-lite",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "async-stream-impl"
101
+ version = "0.3.6"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
104
+ dependencies = [
105
+ "proc-macro2",
106
+ "quote",
107
+ "syn 2.0.104",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "async-trait"
112
+ version = "0.1.88"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
115
+ dependencies = [
116
+ "proc-macro2",
117
+ "quote",
118
+ "syn 2.0.104",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "atoi"
123
+ version = "2.0.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
126
+ dependencies = [
127
+ "num-traits",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "atomic-waker"
132
+ version = "1.1.2"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
135
+
136
+ [[package]]
137
+ name = "autocfg"
138
+ version = "1.5.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
141
+
142
+ [[package]]
143
+ name = "axum"
144
+ version = "0.7.9"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
147
+ dependencies = [
148
+ "async-trait",
149
+ "axum-core",
150
+ "bytes",
151
+ "futures-util",
152
+ "http",
153
+ "http-body",
154
+ "http-body-util",
155
+ "hyper",
156
+ "hyper-util",
157
+ "itoa",
158
+ "matchit",
159
+ "memchr",
160
+ "mime",
161
+ "percent-encoding",
162
+ "pin-project-lite",
163
+ "rustversion",
164
+ "serde",
165
+ "serde_json",
166
+ "serde_path_to_error",
167
+ "serde_urlencoded",
168
+ "sync_wrapper",
169
+ "tokio",
170
+ "tower 0.5.2",
171
+ "tower-layer",
172
+ "tower-service",
173
+ "tracing",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "axum-core"
178
+ version = "0.4.5"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
181
+ dependencies = [
182
+ "async-trait",
183
+ "bytes",
184
+ "futures-util",
185
+ "http",
186
+ "http-body",
187
+ "http-body-util",
188
+ "mime",
189
+ "pin-project-lite",
190
+ "rustversion",
191
+ "sync_wrapper",
192
+ "tower-layer",
193
+ "tower-service",
194
+ "tracing",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "axum-extra"
199
+ version = "0.9.6"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "c794b30c904f0a1c2fb7740f7df7f7972dfaa14ef6f57cb6178dc63e5dca2f04"
202
+ dependencies = [
203
+ "axum",
204
+ "axum-core",
205
+ "bytes",
206
+ "fastrand",
207
+ "futures-util",
208
+ "headers",
209
+ "http",
210
+ "http-body",
211
+ "http-body-util",
212
+ "mime",
213
+ "multer",
214
+ "pin-project-lite",
215
+ "serde",
216
+ "tower 0.5.2",
217
+ "tower-layer",
218
+ "tower-service",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "backtrace"
223
+ version = "0.3.75"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
226
+ dependencies = [
227
+ "addr2line",
228
+ "cfg-if",
229
+ "libc",
230
+ "miniz_oxide",
231
+ "object",
232
+ "rustc-demangle",
233
+ "windows-targets 0.52.6",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "base64"
238
+ version = "0.21.7"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
241
+
242
+ [[package]]
243
+ name = "base64"
244
+ version = "0.22.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
247
+
248
+ [[package]]
249
+ name = "base64ct"
250
+ version = "1.8.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
253
+
254
+ [[package]]
255
+ name = "bigdecimal"
256
+ version = "0.4.8"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "1a22f228ab7a1b23027ccc6c350b72868017af7ea8356fbdf19f8d991c690013"
259
+ dependencies = [
260
+ "autocfg",
261
+ "libm",
262
+ "num-bigint",
263
+ "num-integer",
264
+ "num-traits",
265
+ "serde",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "bindgen"
270
+ version = "0.69.5"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
273
+ dependencies = [
274
+ "bitflags",
275
+ "cexpr",
276
+ "clang-sys",
277
+ "itertools 0.12.1",
278
+ "lazy_static",
279
+ "lazycell",
280
+ "proc-macro2",
281
+ "quote",
282
+ "regex",
283
+ "rustc-hash 1.1.0",
284
+ "shlex",
285
+ "syn 2.0.104",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "bitflags"
290
+ version = "2.9.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
293
+ dependencies = [
294
+ "serde",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "bitvec"
299
+ version = "1.0.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
302
+ dependencies = [
303
+ "funty",
304
+ "radium",
305
+ "tap",
306
+ "wyz",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "block-buffer"
311
+ version = "0.10.4"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
314
+ dependencies = [
315
+ "generic-array",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "borsh"
320
+ version = "1.5.7"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
323
+ dependencies = [
324
+ "borsh-derive",
325
+ "cfg_aliases",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "borsh-derive"
330
+ version = "1.5.7"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3"
333
+ dependencies = [
334
+ "once_cell",
335
+ "proc-macro-crate",
336
+ "proc-macro2",
337
+ "quote",
338
+ "syn 2.0.104",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "bumpalo"
343
+ version = "3.19.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
346
+
347
+ [[package]]
348
+ name = "bytecheck"
349
+ version = "0.6.12"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
352
+ dependencies = [
353
+ "bytecheck_derive",
354
+ "ptr_meta",
355
+ "simdutf8",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "bytecheck_derive"
360
+ version = "0.6.12"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
363
+ dependencies = [
364
+ "proc-macro2",
365
+ "quote",
366
+ "syn 1.0.109",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "byteorder"
371
+ version = "1.5.0"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
374
+
375
+ [[package]]
376
+ name = "bytes"
377
+ version = "1.10.1"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
380
+
381
+ [[package]]
382
+ name = "camino"
383
+ version = "1.1.11"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "5d07aa9a93b00c76f71bc35d598bed923f6d4f3a9ca5c24b7737ae1a292841c0"
386
+ dependencies = [
387
+ "serde",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "cargo-platform"
392
+ version = "0.1.9"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
395
+ dependencies = [
396
+ "serde",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "cargo_metadata"
401
+ version = "0.18.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
404
+ dependencies = [
405
+ "camino",
406
+ "cargo-platform",
407
+ "semver",
408
+ "serde",
409
+ "serde_json",
410
+ "thiserror 1.0.69",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "cc"
415
+ version = "1.2.29"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
418
+ dependencies = [
419
+ "shlex",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "cexpr"
424
+ version = "0.6.0"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
427
+ dependencies = [
428
+ "nom",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "cfg-if"
433
+ version = "1.0.1"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
436
+
437
+ [[package]]
438
+ name = "cfg_aliases"
439
+ version = "0.2.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
442
+
443
+ [[package]]
444
+ name = "chrono"
445
+ version = "0.4.41"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
448
+ dependencies = [
449
+ "android-tzdata",
450
+ "iana-time-zone",
451
+ "js-sys",
452
+ "num-traits",
453
+ "serde",
454
+ "wasm-bindgen",
455
+ "windows-link",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "clang-sys"
460
+ version = "1.8.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
463
+ dependencies = [
464
+ "glob",
465
+ "libc",
466
+ "libloading",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "concurrent-queue"
471
+ version = "2.5.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
474
+ dependencies = [
475
+ "crossbeam-utils",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "config"
480
+ version = "0.15.13"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "5b1eb4fb07bc7f012422df02766c7bd5971effb894f573865642f06fa3265440"
483
+ dependencies = [
484
+ "async-trait",
485
+ "convert_case",
486
+ "json5",
487
+ "pathdiff",
488
+ "ron",
489
+ "rust-ini",
490
+ "serde",
491
+ "serde_json",
492
+ "toml 0.9.5",
493
+ "winnow",
494
+ "yaml-rust2",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "const-oid"
499
+ version = "0.9.6"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
502
+
503
+ [[package]]
504
+ name = "const-random"
505
+ version = "0.1.18"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
508
+ dependencies = [
509
+ "const-random-macro",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "const-random-macro"
514
+ version = "0.1.16"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
517
+ dependencies = [
518
+ "getrandom 0.2.16",
519
+ "once_cell",
520
+ "tiny-keccak",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "convert_case"
525
+ version = "0.6.0"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
528
+ dependencies = [
529
+ "unicode-segmentation",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "core-foundation-sys"
534
+ version = "0.8.7"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
537
+
538
+ [[package]]
539
+ name = "cpufeatures"
540
+ version = "0.2.17"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
543
+ dependencies = [
544
+ "libc",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "crc"
549
+ version = "3.3.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
552
+ dependencies = [
553
+ "crc-catalog",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "crc-catalog"
558
+ version = "2.4.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
561
+
562
+ [[package]]
563
+ name = "crc32fast"
564
+ version = "1.5.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
567
+ dependencies = [
568
+ "cfg-if",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "crossbeam"
573
+ version = "0.8.4"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
576
+ dependencies = [
577
+ "crossbeam-channel",
578
+ "crossbeam-deque",
579
+ "crossbeam-epoch",
580
+ "crossbeam-queue",
581
+ "crossbeam-utils",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "crossbeam-channel"
586
+ version = "0.5.15"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
589
+ dependencies = [
590
+ "crossbeam-utils",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "crossbeam-deque"
595
+ version = "0.8.6"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
598
+ dependencies = [
599
+ "crossbeam-epoch",
600
+ "crossbeam-utils",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "crossbeam-epoch"
605
+ version = "0.9.18"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
608
+ dependencies = [
609
+ "crossbeam-utils",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "crossbeam-queue"
614
+ version = "0.3.12"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
617
+ dependencies = [
618
+ "crossbeam-utils",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "crossbeam-utils"
623
+ version = "0.8.21"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
626
+
627
+ [[package]]
628
+ name = "crunchy"
629
+ version = "0.2.4"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
632
+
633
+ [[package]]
634
+ name = "crypto-common"
635
+ version = "0.1.6"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
638
+ dependencies = [
639
+ "generic-array",
640
+ "typenum",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "der"
645
+ version = "0.7.10"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
648
+ dependencies = [
649
+ "const-oid",
650
+ "pem-rfc7468",
651
+ "zeroize",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "deranged"
656
+ version = "0.4.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
659
+ dependencies = [
660
+ "powerfmt",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "derive_arbitrary"
665
+ version = "1.4.2"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
668
+ dependencies = [
669
+ "proc-macro2",
670
+ "quote",
671
+ "syn 2.0.104",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "digest"
676
+ version = "0.10.7"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
679
+ dependencies = [
680
+ "block-buffer",
681
+ "const-oid",
682
+ "crypto-common",
683
+ "subtle",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "displaydoc"
688
+ version = "0.2.5"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
691
+ dependencies = [
692
+ "proc-macro2",
693
+ "quote",
694
+ "syn 2.0.104",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "dlv-list"
699
+ version = "0.5.2"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
702
+ dependencies = [
703
+ "const-random",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "dotenvy"
708
+ version = "0.15.7"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
711
+
712
+ [[package]]
713
+ name = "either"
714
+ version = "1.15.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
717
+ dependencies = [
718
+ "serde",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "encoding_rs"
723
+ version = "0.8.35"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
726
+ dependencies = [
727
+ "cfg-if",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "equivalent"
732
+ version = "1.0.2"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
735
+
736
+ [[package]]
737
+ name = "erased-serde"
738
+ version = "0.4.6"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7"
741
+ dependencies = [
742
+ "serde",
743
+ "typeid",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "errno"
748
+ version = "0.3.13"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
751
+ dependencies = [
752
+ "libc",
753
+ "windows-sys 0.59.0",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "etcetera"
758
+ version = "0.8.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
761
+ dependencies = [
762
+ "cfg-if",
763
+ "home",
764
+ "windows-sys 0.48.0",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "event-listener"
769
+ version = "5.4.0"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
772
+ dependencies = [
773
+ "concurrent-queue",
774
+ "parking",
775
+ "pin-project-lite",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "fastrand"
780
+ version = "2.3.0"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
783
+
784
+ [[package]]
785
+ name = "flate2"
786
+ version = "1.1.2"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
789
+ dependencies = [
790
+ "crc32fast",
791
+ "miniz_oxide",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "flume"
796
+ version = "0.11.1"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
799
+ dependencies = [
800
+ "futures-core",
801
+ "futures-sink",
802
+ "spin",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "fnv"
807
+ version = "1.0.7"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
810
+
811
+ [[package]]
812
+ name = "foldhash"
813
+ version = "0.1.5"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
816
+
817
+ [[package]]
818
+ name = "form_urlencoded"
819
+ version = "1.2.1"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
822
+ dependencies = [
823
+ "percent-encoding",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "funty"
828
+ version = "2.0.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
831
+
832
+ [[package]]
833
+ name = "futures"
834
+ version = "0.3.31"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
837
+ dependencies = [
838
+ "futures-channel",
839
+ "futures-core",
840
+ "futures-executor",
841
+ "futures-io",
842
+ "futures-sink",
843
+ "futures-task",
844
+ "futures-util",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "futures-channel"
849
+ version = "0.3.31"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
852
+ dependencies = [
853
+ "futures-core",
854
+ "futures-sink",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "futures-core"
859
+ version = "0.3.31"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
862
+
863
+ [[package]]
864
+ name = "futures-executor"
865
+ version = "0.3.31"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
868
+ dependencies = [
869
+ "futures-core",
870
+ "futures-task",
871
+ "futures-util",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "futures-intrusive"
876
+ version = "0.5.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
879
+ dependencies = [
880
+ "futures-core",
881
+ "lock_api",
882
+ "parking_lot",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "futures-io"
887
+ version = "0.3.31"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
890
+
891
+ [[package]]
892
+ name = "futures-macro"
893
+ version = "0.3.31"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
896
+ dependencies = [
897
+ "proc-macro2",
898
+ "quote",
899
+ "syn 2.0.104",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "futures-sink"
904
+ version = "0.3.31"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
907
+
908
+ [[package]]
909
+ name = "futures-task"
910
+ version = "0.3.31"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
913
+
914
+ [[package]]
915
+ name = "futures-util"
916
+ version = "0.3.31"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
919
+ dependencies = [
920
+ "futures-channel",
921
+ "futures-core",
922
+ "futures-io",
923
+ "futures-macro",
924
+ "futures-sink",
925
+ "futures-task",
926
+ "memchr",
927
+ "pin-project-lite",
928
+ "pin-utils",
929
+ "slab",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "generic-array"
934
+ version = "0.14.7"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
937
+ dependencies = [
938
+ "typenum",
939
+ "version_check",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "getrandom"
944
+ version = "0.2.16"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
947
+ dependencies = [
948
+ "cfg-if",
949
+ "js-sys",
950
+ "libc",
951
+ "wasi 0.11.1+wasi-snapshot-preview1",
952
+ "wasm-bindgen",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "getrandom"
957
+ version = "0.3.3"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
960
+ dependencies = [
961
+ "cfg-if",
962
+ "js-sys",
963
+ "libc",
964
+ "r-efi",
965
+ "wasi 0.14.2+wasi-0.2.4",
966
+ "wasm-bindgen",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "gimli"
971
+ version = "0.31.1"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
974
+
975
+ [[package]]
976
+ name = "glob"
977
+ version = "0.3.2"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
980
+
981
+ [[package]]
982
+ name = "h2"
983
+ version = "0.4.11"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
986
+ dependencies = [
987
+ "atomic-waker",
988
+ "bytes",
989
+ "fnv",
990
+ "futures-core",
991
+ "futures-sink",
992
+ "http",
993
+ "indexmap 2.10.0",
994
+ "slab",
995
+ "tokio",
996
+ "tokio-util",
997
+ "tracing",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "hashbrown"
1002
+ version = "0.12.3"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1005
+ dependencies = [
1006
+ "ahash",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "hashbrown"
1011
+ version = "0.14.5"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1014
+
1015
+ [[package]]
1016
+ name = "hashbrown"
1017
+ version = "0.15.4"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1020
+ dependencies = [
1021
+ "allocator-api2",
1022
+ "equivalent",
1023
+ "foldhash",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "hashlink"
1028
+ version = "0.10.0"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1031
+ dependencies = [
1032
+ "hashbrown 0.15.4",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "headers"
1037
+ version = "0.4.1"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
1040
+ dependencies = [
1041
+ "base64 0.22.1",
1042
+ "bytes",
1043
+ "headers-core",
1044
+ "http",
1045
+ "httpdate",
1046
+ "mime",
1047
+ "sha1",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "headers-core"
1052
+ version = "0.3.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
1055
+ dependencies = [
1056
+ "http",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "heck"
1061
+ version = "0.5.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1064
+
1065
+ [[package]]
1066
+ name = "hex"
1067
+ version = "0.4.3"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1070
+
1071
+ [[package]]
1072
+ name = "hkdf"
1073
+ version = "0.12.4"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1076
+ dependencies = [
1077
+ "hmac",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "hmac"
1082
+ version = "0.12.1"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1085
+ dependencies = [
1086
+ "digest",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "home"
1091
+ version = "0.5.11"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1094
+ dependencies = [
1095
+ "windows-sys 0.59.0",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "http"
1100
+ version = "1.3.1"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1103
+ dependencies = [
1104
+ "bytes",
1105
+ "fnv",
1106
+ "itoa",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "http-body"
1111
+ version = "1.0.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1114
+ dependencies = [
1115
+ "bytes",
1116
+ "http",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "http-body-util"
1121
+ version = "0.1.3"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1124
+ dependencies = [
1125
+ "bytes",
1126
+ "futures-core",
1127
+ "http",
1128
+ "http-body",
1129
+ "pin-project-lite",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "httparse"
1134
+ version = "1.10.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1137
+
1138
+ [[package]]
1139
+ name = "httpdate"
1140
+ version = "1.0.3"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1143
+
1144
+ [[package]]
1145
+ name = "hyper"
1146
+ version = "1.6.0"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1149
+ dependencies = [
1150
+ "bytes",
1151
+ "futures-channel",
1152
+ "futures-util",
1153
+ "h2",
1154
+ "http",
1155
+ "http-body",
1156
+ "httparse",
1157
+ "httpdate",
1158
+ "itoa",
1159
+ "pin-project-lite",
1160
+ "smallvec",
1161
+ "tokio",
1162
+ "want",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "hyper-rustls"
1167
+ version = "0.27.7"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1170
+ dependencies = [
1171
+ "http",
1172
+ "hyper",
1173
+ "hyper-util",
1174
+ "rustls",
1175
+ "rustls-pki-types",
1176
+ "tokio",
1177
+ "tokio-rustls",
1178
+ "tower-service",
1179
+ "webpki-roots 1.0.1",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "hyper-timeout"
1184
+ version = "0.5.2"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1187
+ dependencies = [
1188
+ "hyper",
1189
+ "hyper-util",
1190
+ "pin-project-lite",
1191
+ "tokio",
1192
+ "tower-service",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "hyper-util"
1197
+ version = "0.1.15"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df"
1200
+ dependencies = [
1201
+ "base64 0.22.1",
1202
+ "bytes",
1203
+ "futures-channel",
1204
+ "futures-core",
1205
+ "futures-util",
1206
+ "http",
1207
+ "http-body",
1208
+ "hyper",
1209
+ "ipnet",
1210
+ "libc",
1211
+ "percent-encoding",
1212
+ "pin-project-lite",
1213
+ "socket2",
1214
+ "tokio",
1215
+ "tower-service",
1216
+ "tracing",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "iana-time-zone"
1221
+ version = "0.1.63"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1224
+ dependencies = [
1225
+ "android_system_properties",
1226
+ "core-foundation-sys",
1227
+ "iana-time-zone-haiku",
1228
+ "js-sys",
1229
+ "log",
1230
+ "wasm-bindgen",
1231
+ "windows-core 0.61.2",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "iana-time-zone-haiku"
1236
+ version = "0.1.2"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1239
+ dependencies = [
1240
+ "cc",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "icu_collections"
1245
+ version = "2.0.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1248
+ dependencies = [
1249
+ "displaydoc",
1250
+ "potential_utf",
1251
+ "yoke",
1252
+ "zerofrom",
1253
+ "zerovec",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "icu_locale_core"
1258
+ version = "2.0.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1261
+ dependencies = [
1262
+ "displaydoc",
1263
+ "litemap",
1264
+ "tinystr",
1265
+ "writeable",
1266
+ "zerovec",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "icu_normalizer"
1271
+ version = "2.0.0"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1274
+ dependencies = [
1275
+ "displaydoc",
1276
+ "icu_collections",
1277
+ "icu_normalizer_data",
1278
+ "icu_properties",
1279
+ "icu_provider",
1280
+ "smallvec",
1281
+ "zerovec",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "icu_normalizer_data"
1286
+ version = "2.0.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1289
+
1290
+ [[package]]
1291
+ name = "icu_properties"
1292
+ version = "2.0.1"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1295
+ dependencies = [
1296
+ "displaydoc",
1297
+ "icu_collections",
1298
+ "icu_locale_core",
1299
+ "icu_properties_data",
1300
+ "icu_provider",
1301
+ "potential_utf",
1302
+ "zerotrie",
1303
+ "zerovec",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "icu_properties_data"
1308
+ version = "2.0.1"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1311
+
1312
+ [[package]]
1313
+ name = "icu_provider"
1314
+ version = "2.0.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1317
+ dependencies = [
1318
+ "displaydoc",
1319
+ "icu_locale_core",
1320
+ "stable_deref_trait",
1321
+ "tinystr",
1322
+ "writeable",
1323
+ "yoke",
1324
+ "zerofrom",
1325
+ "zerotrie",
1326
+ "zerovec",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "idna"
1331
+ version = "1.0.3"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1334
+ dependencies = [
1335
+ "idna_adapter",
1336
+ "smallvec",
1337
+ "utf8_iter",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "idna_adapter"
1342
+ version = "1.2.1"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1345
+ dependencies = [
1346
+ "icu_normalizer",
1347
+ "icu_properties",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "indexmap"
1352
+ version = "1.9.3"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1355
+ dependencies = [
1356
+ "autocfg",
1357
+ "hashbrown 0.12.3",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "indexmap"
1362
+ version = "2.10.0"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1365
+ dependencies = [
1366
+ "equivalent",
1367
+ "hashbrown 0.15.4",
1368
+ "serde",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "io-uring"
1373
+ version = "0.7.8"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
1376
+ dependencies = [
1377
+ "bitflags",
1378
+ "cfg-if",
1379
+ "libc",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "ipnet"
1384
+ version = "2.11.0"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1387
+
1388
+ [[package]]
1389
+ name = "iri-string"
1390
+ version = "0.7.8"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1393
+ dependencies = [
1394
+ "memchr",
1395
+ "serde",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "itertools"
1400
+ version = "0.12.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1403
+ dependencies = [
1404
+ "either",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "itertools"
1409
+ version = "0.14.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1412
+ dependencies = [
1413
+ "either",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "itoa"
1418
+ version = "1.0.15"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1421
+
1422
+ [[package]]
1423
+ name = "js-sys"
1424
+ version = "0.3.77"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1427
+ dependencies = [
1428
+ "once_cell",
1429
+ "wasm-bindgen",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "json5"
1434
+ version = "0.4.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
1437
+ dependencies = [
1438
+ "pest",
1439
+ "pest_derive",
1440
+ "serde",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "jsonwebtoken"
1445
+ version = "9.3.1"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1448
+ dependencies = [
1449
+ "base64 0.22.1",
1450
+ "js-sys",
1451
+ "pem",
1452
+ "ring",
1453
+ "serde",
1454
+ "serde_json",
1455
+ "simple_asn1",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "lazy_static"
1460
+ version = "1.5.0"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1463
+ dependencies = [
1464
+ "spin",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "lazycell"
1469
+ version = "1.3.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1472
+
1473
+ [[package]]
1474
+ name = "libc"
1475
+ version = "0.2.174"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1478
+
1479
+ [[package]]
1480
+ name = "libloading"
1481
+ version = "0.8.8"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1484
+ dependencies = [
1485
+ "cfg-if",
1486
+ "windows-targets 0.53.2",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "libm"
1491
+ version = "0.2.15"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1494
+
1495
+ [[package]]
1496
+ name = "libsqlite3-sys"
1497
+ version = "0.30.1"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1500
+ dependencies = [
1501
+ "pkg-config",
1502
+ "vcpkg",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "linux-raw-sys"
1507
+ version = "0.9.4"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1510
+
1511
+ [[package]]
1512
+ name = "litemap"
1513
+ version = "0.8.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1516
+
1517
+ [[package]]
1518
+ name = "lock_api"
1519
+ version = "0.4.13"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1522
+ dependencies = [
1523
+ "autocfg",
1524
+ "scopeguard",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "log"
1529
+ version = "0.4.27"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1532
+ dependencies = [
1533
+ "serde",
1534
+ "value-bag",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "lru-slab"
1539
+ version = "0.1.2"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1542
+
1543
+ [[package]]
1544
+ name = "magnus"
1545
+ version = "0.7.1"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
1548
+ dependencies = [
1549
+ "magnus-macros",
1550
+ "rb-sys",
1551
+ "rb-sys-env",
1552
+ "seq-macro",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "magnus-macros"
1557
+ version = "0.6.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
1560
+ dependencies = [
1561
+ "proc-macro2",
1562
+ "quote",
1563
+ "syn 2.0.104",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "matchers"
1568
+ version = "0.1.0"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1571
+ dependencies = [
1572
+ "regex-automata 0.1.10",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "matchit"
1577
+ version = "0.7.3"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1580
+
1581
+ [[package]]
1582
+ name = "md-5"
1583
+ version = "0.10.6"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1586
+ dependencies = [
1587
+ "cfg-if",
1588
+ "digest",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "memchr"
1593
+ version = "2.7.5"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1596
+
1597
+ [[package]]
1598
+ name = "mime"
1599
+ version = "0.3.17"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1602
+
1603
+ [[package]]
1604
+ name = "mime_guess"
1605
+ version = "2.0.5"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1608
+ dependencies = [
1609
+ "mime",
1610
+ "unicase",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "minimal-lexical"
1615
+ version = "0.2.1"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1618
+
1619
+ [[package]]
1620
+ name = "miniz_oxide"
1621
+ version = "0.8.9"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1624
+ dependencies = [
1625
+ "adler2",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "mio"
1630
+ version = "1.0.4"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1633
+ dependencies = [
1634
+ "libc",
1635
+ "wasi 0.11.1+wasi-snapshot-preview1",
1636
+ "windows-sys 0.59.0",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "multer"
1641
+ version = "3.1.0"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
1644
+ dependencies = [
1645
+ "bytes",
1646
+ "encoding_rs",
1647
+ "futures-util",
1648
+ "http",
1649
+ "httparse",
1650
+ "memchr",
1651
+ "mime",
1652
+ "spin",
1653
+ "version_check",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "nom"
1658
+ version = "7.1.3"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1661
+ dependencies = [
1662
+ "memchr",
1663
+ "minimal-lexical",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "ntapi"
1668
+ version = "0.4.1"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1671
+ dependencies = [
1672
+ "winapi",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "nu-ansi-term"
1677
+ version = "0.46.0"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1680
+ dependencies = [
1681
+ "overload",
1682
+ "winapi",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "num-bigint"
1687
+ version = "0.4.6"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1690
+ dependencies = [
1691
+ "num-integer",
1692
+ "num-traits",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "num-bigint-dig"
1697
+ version = "0.8.4"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
1700
+ dependencies = [
1701
+ "byteorder",
1702
+ "lazy_static",
1703
+ "libm",
1704
+ "num-integer",
1705
+ "num-iter",
1706
+ "num-traits",
1707
+ "rand 0.8.5",
1708
+ "smallvec",
1709
+ "zeroize",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "num-conv"
1714
+ version = "0.1.0"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1717
+
1718
+ [[package]]
1719
+ name = "num-integer"
1720
+ version = "0.1.46"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1723
+ dependencies = [
1724
+ "num-traits",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "num-iter"
1729
+ version = "0.1.45"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1732
+ dependencies = [
1733
+ "autocfg",
1734
+ "num-integer",
1735
+ "num-traits",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "num-traits"
1740
+ version = "0.2.19"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1743
+ dependencies = [
1744
+ "autocfg",
1745
+ "libm",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "num_enum"
1750
+ version = "0.7.4"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
1753
+ dependencies = [
1754
+ "num_enum_derive",
1755
+ "rustversion",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "num_enum_derive"
1760
+ version = "0.7.4"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
1763
+ dependencies = [
1764
+ "proc-macro-crate",
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "syn 2.0.104",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "object"
1772
+ version = "0.36.7"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1775
+ dependencies = [
1776
+ "memchr",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "once_cell"
1781
+ version = "1.21.3"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1784
+
1785
+ [[package]]
1786
+ name = "opentelemetry"
1787
+ version = "0.27.1"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7"
1790
+ dependencies = [
1791
+ "futures-core",
1792
+ "futures-sink",
1793
+ "js-sys",
1794
+ "pin-project-lite",
1795
+ "thiserror 1.0.69",
1796
+ "tracing",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "opentelemetry-otlp"
1801
+ version = "0.27.0"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "91cf61a1868dacc576bf2b2a1c3e9ab150af7272909e80085c3173384fe11f76"
1804
+ dependencies = [
1805
+ "async-trait",
1806
+ "futures-core",
1807
+ "http",
1808
+ "opentelemetry",
1809
+ "opentelemetry-proto",
1810
+ "opentelemetry_sdk",
1811
+ "prost",
1812
+ "thiserror 1.0.69",
1813
+ "tokio",
1814
+ "tonic",
1815
+ "tracing",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "opentelemetry-proto"
1820
+ version = "0.27.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6"
1823
+ dependencies = [
1824
+ "opentelemetry",
1825
+ "opentelemetry_sdk",
1826
+ "prost",
1827
+ "tonic",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "opentelemetry_sdk"
1832
+ version = "0.27.1"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "231e9d6ceef9b0b2546ddf52335785ce41252bc7474ee8ba05bfad277be13ab8"
1835
+ dependencies = [
1836
+ "async-trait",
1837
+ "futures-channel",
1838
+ "futures-executor",
1839
+ "futures-util",
1840
+ "glob",
1841
+ "opentelemetry",
1842
+ "percent-encoding",
1843
+ "rand 0.8.5",
1844
+ "serde_json",
1845
+ "thiserror 1.0.69",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "ordered-multimap"
1850
+ version = "0.7.3"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
1853
+ dependencies = [
1854
+ "dlv-list",
1855
+ "hashbrown 0.14.5",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "overload"
1860
+ version = "0.1.1"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1863
+
1864
+ [[package]]
1865
+ name = "parking"
1866
+ version = "2.2.1"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1869
+
1870
+ [[package]]
1871
+ name = "parking_lot"
1872
+ version = "0.12.4"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1875
+ dependencies = [
1876
+ "lock_api",
1877
+ "parking_lot_core",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "parking_lot_core"
1882
+ version = "0.9.11"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1885
+ dependencies = [
1886
+ "cfg-if",
1887
+ "libc",
1888
+ "redox_syscall",
1889
+ "smallvec",
1890
+ "windows-targets 0.52.6",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "pathdiff"
1895
+ version = "0.2.3"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1898
+
1899
+ [[package]]
1900
+ name = "pem"
1901
+ version = "3.0.5"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1904
+ dependencies = [
1905
+ "base64 0.22.1",
1906
+ "serde",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "pem-rfc7468"
1911
+ version = "0.7.0"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1914
+ dependencies = [
1915
+ "base64ct",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "percent-encoding"
1920
+ version = "2.3.1"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1923
+
1924
+ [[package]]
1925
+ name = "pest"
1926
+ version = "2.8.1"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
1929
+ dependencies = [
1930
+ "memchr",
1931
+ "thiserror 2.0.12",
1932
+ "ucd-trie",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "pest_derive"
1937
+ version = "2.8.1"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
1940
+ dependencies = [
1941
+ "pest",
1942
+ "pest_generator",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "pest_generator"
1947
+ version = "2.8.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
1950
+ dependencies = [
1951
+ "pest",
1952
+ "pest_meta",
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "syn 2.0.104",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "pest_meta"
1960
+ version = "2.8.1"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
1963
+ dependencies = [
1964
+ "pest",
1965
+ "sha2",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "pgmq"
1970
+ version = "0.30.1"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "4b776031ffc4e2291941f2657fad6276408d4f16aa4084ac4ca934ce8d2d886d"
1973
+ dependencies = [
1974
+ "chrono",
1975
+ "log",
1976
+ "serde",
1977
+ "serde_json",
1978
+ "sqlx",
1979
+ "thiserror 1.0.69",
1980
+ "tokio",
1981
+ "url",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "pin-project"
1986
+ version = "1.1.10"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1989
+ dependencies = [
1990
+ "pin-project-internal",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "pin-project-internal"
1995
+ version = "1.1.10"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1998
+ dependencies = [
1999
+ "proc-macro2",
2000
+ "quote",
2001
+ "syn 2.0.104",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "pin-project-lite"
2006
+ version = "0.2.16"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2009
+
2010
+ [[package]]
2011
+ name = "pin-utils"
2012
+ version = "0.1.0"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2015
+
2016
+ [[package]]
2017
+ name = "pkcs1"
2018
+ version = "0.7.5"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2021
+ dependencies = [
2022
+ "der",
2023
+ "pkcs8",
2024
+ "spki",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "pkcs8"
2029
+ version = "0.10.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2032
+ dependencies = [
2033
+ "der",
2034
+ "spki",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "pkg-config"
2039
+ version = "0.3.32"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2042
+
2043
+ [[package]]
2044
+ name = "potential_utf"
2045
+ version = "0.1.2"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2048
+ dependencies = [
2049
+ "zerovec",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "powerfmt"
2054
+ version = "0.2.0"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2057
+
2058
+ [[package]]
2059
+ name = "ppv-lite86"
2060
+ version = "0.2.21"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2063
+ dependencies = [
2064
+ "zerocopy",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "proc-macro-crate"
2069
+ version = "3.3.0"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2072
+ dependencies = [
2073
+ "toml_edit",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "proc-macro-error"
2078
+ version = "1.0.4"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2081
+ dependencies = [
2082
+ "proc-macro-error-attr",
2083
+ "proc-macro2",
2084
+ "quote",
2085
+ "syn 1.0.109",
2086
+ "version_check",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "proc-macro-error-attr"
2091
+ version = "1.0.4"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2094
+ dependencies = [
2095
+ "proc-macro2",
2096
+ "quote",
2097
+ "version_check",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "proc-macro2"
2102
+ version = "1.0.95"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2105
+ dependencies = [
2106
+ "unicode-ident",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "prost"
2111
+ version = "0.13.5"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
2114
+ dependencies = [
2115
+ "bytes",
2116
+ "prost-derive",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "prost-derive"
2121
+ version = "0.13.5"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
2124
+ dependencies = [
2125
+ "anyhow",
2126
+ "itertools 0.14.0",
2127
+ "proc-macro2",
2128
+ "quote",
2129
+ "syn 2.0.104",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "ptr_meta"
2134
+ version = "0.1.4"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
2137
+ dependencies = [
2138
+ "ptr_meta_derive",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "ptr_meta_derive"
2143
+ version = "0.1.4"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
2146
+ dependencies = [
2147
+ "proc-macro2",
2148
+ "quote",
2149
+ "syn 1.0.109",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "quinn"
2154
+ version = "0.11.8"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
2157
+ dependencies = [
2158
+ "bytes",
2159
+ "cfg_aliases",
2160
+ "pin-project-lite",
2161
+ "quinn-proto",
2162
+ "quinn-udp",
2163
+ "rustc-hash 2.1.1",
2164
+ "rustls",
2165
+ "socket2",
2166
+ "thiserror 2.0.12",
2167
+ "tokio",
2168
+ "tracing",
2169
+ "web-time",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "quinn-proto"
2174
+ version = "0.11.12"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
2177
+ dependencies = [
2178
+ "bytes",
2179
+ "getrandom 0.3.3",
2180
+ "lru-slab",
2181
+ "rand 0.9.1",
2182
+ "ring",
2183
+ "rustc-hash 2.1.1",
2184
+ "rustls",
2185
+ "rustls-pki-types",
2186
+ "slab",
2187
+ "thiserror 2.0.12",
2188
+ "tinyvec",
2189
+ "tracing",
2190
+ "web-time",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "quinn-udp"
2195
+ version = "0.5.13"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
2198
+ dependencies = [
2199
+ "cfg_aliases",
2200
+ "libc",
2201
+ "once_cell",
2202
+ "socket2",
2203
+ "tracing",
2204
+ "windows-sys 0.52.0",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "quote"
2209
+ version = "1.0.40"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2212
+ dependencies = [
2213
+ "proc-macro2",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "r-efi"
2218
+ version = "5.3.0"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2221
+
2222
+ [[package]]
2223
+ name = "radium"
2224
+ version = "0.7.0"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2227
+
2228
+ [[package]]
2229
+ name = "rand"
2230
+ version = "0.8.5"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2233
+ dependencies = [
2234
+ "libc",
2235
+ "rand_chacha 0.3.1",
2236
+ "rand_core 0.6.4",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "rand"
2241
+ version = "0.9.1"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2244
+ dependencies = [
2245
+ "rand_chacha 0.9.0",
2246
+ "rand_core 0.9.3",
2247
+ ]
2248
+
2249
+ [[package]]
2250
+ name = "rand_chacha"
2251
+ version = "0.3.1"
2252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2253
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2254
+ dependencies = [
2255
+ "ppv-lite86",
2256
+ "rand_core 0.6.4",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "rand_chacha"
2261
+ version = "0.9.0"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2264
+ dependencies = [
2265
+ "ppv-lite86",
2266
+ "rand_core 0.9.3",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "rand_core"
2271
+ version = "0.6.4"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2274
+ dependencies = [
2275
+ "getrandom 0.2.16",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "rand_core"
2280
+ version = "0.9.3"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2283
+ dependencies = [
2284
+ "getrandom 0.3.3",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "rayon"
2289
+ version = "1.11.0"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2292
+ dependencies = [
2293
+ "either",
2294
+ "rayon-core",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "rayon-core"
2299
+ version = "1.13.0"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2302
+ dependencies = [
2303
+ "crossbeam-deque",
2304
+ "crossbeam-utils",
2305
+ ]
2306
+
2307
+ [[package]]
2308
+ name = "rb-sys"
2309
+ version = "0.9.116"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
2312
+ dependencies = [
2313
+ "rb-sys-build",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "rb-sys-build"
2318
+ version = "0.9.116"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
2321
+ dependencies = [
2322
+ "bindgen",
2323
+ "lazy_static",
2324
+ "proc-macro2",
2325
+ "quote",
2326
+ "regex",
2327
+ "shell-words",
2328
+ "syn 2.0.104",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "rb-sys-env"
2333
+ version = "0.1.2"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2336
+
2337
+ [[package]]
2338
+ name = "redox_syscall"
2339
+ version = "0.5.13"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
2342
+ dependencies = [
2343
+ "bitflags",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "regex"
2348
+ version = "1.11.1"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2351
+ dependencies = [
2352
+ "aho-corasick",
2353
+ "memchr",
2354
+ "regex-automata 0.4.9",
2355
+ "regex-syntax 0.8.5",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "regex-automata"
2360
+ version = "0.1.10"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2363
+ dependencies = [
2364
+ "regex-syntax 0.6.29",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "regex-automata"
2369
+ version = "0.4.9"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2372
+ dependencies = [
2373
+ "aho-corasick",
2374
+ "memchr",
2375
+ "regex-syntax 0.8.5",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "regex-syntax"
2380
+ version = "0.6.29"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2383
+
2384
+ [[package]]
2385
+ name = "regex-syntax"
2386
+ version = "0.8.5"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2389
+
2390
+ [[package]]
2391
+ name = "rend"
2392
+ version = "0.4.2"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
2395
+ dependencies = [
2396
+ "bytecheck",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "reqwest"
2401
+ version = "0.12.23"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
2404
+ dependencies = [
2405
+ "base64 0.22.1",
2406
+ "bytes",
2407
+ "futures-channel",
2408
+ "futures-core",
2409
+ "futures-util",
2410
+ "http",
2411
+ "http-body",
2412
+ "http-body-util",
2413
+ "hyper",
2414
+ "hyper-rustls",
2415
+ "hyper-util",
2416
+ "js-sys",
2417
+ "log",
2418
+ "percent-encoding",
2419
+ "pin-project-lite",
2420
+ "quinn",
2421
+ "rustls",
2422
+ "rustls-pki-types",
2423
+ "serde",
2424
+ "serde_json",
2425
+ "serde_urlencoded",
2426
+ "sync_wrapper",
2427
+ "tokio",
2428
+ "tokio-rustls",
2429
+ "tower 0.5.2",
2430
+ "tower-http 0.6.6",
2431
+ "tower-service",
2432
+ "url",
2433
+ "wasm-bindgen",
2434
+ "wasm-bindgen-futures",
2435
+ "web-sys",
2436
+ "webpki-roots 1.0.1",
2437
+ ]
2438
+
2439
+ [[package]]
2440
+ name = "ring"
2441
+ version = "0.17.14"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2444
+ dependencies = [
2445
+ "cc",
2446
+ "cfg-if",
2447
+ "getrandom 0.2.16",
2448
+ "libc",
2449
+ "untrusted",
2450
+ "windows-sys 0.52.0",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "rkyv"
2455
+ version = "0.7.45"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b"
2458
+ dependencies = [
2459
+ "bitvec",
2460
+ "bytecheck",
2461
+ "bytes",
2462
+ "hashbrown 0.12.3",
2463
+ "ptr_meta",
2464
+ "rend",
2465
+ "rkyv_derive",
2466
+ "seahash",
2467
+ "tinyvec",
2468
+ "uuid",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "rkyv_derive"
2473
+ version = "0.7.45"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0"
2476
+ dependencies = [
2477
+ "proc-macro2",
2478
+ "quote",
2479
+ "syn 1.0.109",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "ron"
2484
+ version = "0.8.1"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
2487
+ dependencies = [
2488
+ "base64 0.21.7",
2489
+ "bitflags",
2490
+ "serde",
2491
+ "serde_derive",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "rsa"
2496
+ version = "0.9.8"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
2499
+ dependencies = [
2500
+ "const-oid",
2501
+ "digest",
2502
+ "num-bigint-dig",
2503
+ "num-integer",
2504
+ "num-traits",
2505
+ "pkcs1",
2506
+ "pkcs8",
2507
+ "rand_core 0.6.4",
2508
+ "signature",
2509
+ "spki",
2510
+ "subtle",
2511
+ "zeroize",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "rust-embed"
2516
+ version = "8.7.2"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "025908b8682a26ba8d12f6f2d66b987584a4a87bc024abc5bbc12553a8cd178a"
2519
+ dependencies = [
2520
+ "rust-embed-impl",
2521
+ "rust-embed-utils",
2522
+ "walkdir",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "rust-embed-impl"
2527
+ version = "8.7.2"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "6065f1a4392b71819ec1ea1df1120673418bf386f50de1d6f54204d836d4349c"
2530
+ dependencies = [
2531
+ "proc-macro2",
2532
+ "quote",
2533
+ "rust-embed-utils",
2534
+ "syn 2.0.104",
2535
+ "walkdir",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "rust-embed-utils"
2540
+ version = "8.7.2"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "f6cc0c81648b20b70c491ff8cce00c1c3b223bb8ed2b5d41f0e54c6c4c0a3594"
2543
+ dependencies = [
2544
+ "sha2",
2545
+ "walkdir",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "rust-ini"
2550
+ version = "0.21.2"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "e7295b7ce3bf4806b419dc3420745998b447178b7005e2011947b38fc5aa6791"
2553
+ dependencies = [
2554
+ "cfg-if",
2555
+ "ordered-multimap",
2556
+ ]
2557
+
2558
+ [[package]]
2559
+ name = "rust_decimal"
2560
+ version = "1.37.2"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
2563
+ dependencies = [
2564
+ "arrayvec",
2565
+ "borsh",
2566
+ "bytes",
2567
+ "num-traits",
2568
+ "rand 0.8.5",
2569
+ "rkyv",
2570
+ "serde",
2571
+ "serde_json",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "rustc-demangle"
2576
+ version = "0.1.25"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2579
+
2580
+ [[package]]
2581
+ name = "rustc-hash"
2582
+ version = "1.1.0"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2585
+
2586
+ [[package]]
2587
+ name = "rustc-hash"
2588
+ version = "2.1.1"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2591
+
2592
+ [[package]]
2593
+ name = "rustix"
2594
+ version = "1.0.8"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2597
+ dependencies = [
2598
+ "bitflags",
2599
+ "errno",
2600
+ "libc",
2601
+ "linux-raw-sys",
2602
+ "windows-sys 0.59.0",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "rustls"
2607
+ version = "0.23.29"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
2610
+ dependencies = [
2611
+ "once_cell",
2612
+ "ring",
2613
+ "rustls-pki-types",
2614
+ "rustls-webpki",
2615
+ "subtle",
2616
+ "zeroize",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "rustls-pki-types"
2621
+ version = "1.12.0"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2624
+ dependencies = [
2625
+ "web-time",
2626
+ "zeroize",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "rustls-webpki"
2631
+ version = "0.103.4"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2634
+ dependencies = [
2635
+ "ring",
2636
+ "rustls-pki-types",
2637
+ "untrusted",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "rustversion"
2642
+ version = "1.0.21"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2645
+
2646
+ [[package]]
2647
+ name = "ryu"
2648
+ version = "1.0.20"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2651
+
2652
+ [[package]]
2653
+ name = "same-file"
2654
+ version = "1.0.6"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2657
+ dependencies = [
2658
+ "winapi-util",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "scopeguard"
2663
+ version = "1.2.0"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2666
+
2667
+ [[package]]
2668
+ name = "seahash"
2669
+ version = "4.1.0"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2672
+
2673
+ [[package]]
2674
+ name = "semver"
2675
+ version = "1.0.26"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2678
+ dependencies = [
2679
+ "serde",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "seq-macro"
2684
+ version = "0.3.6"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2687
+
2688
+ [[package]]
2689
+ name = "serde"
2690
+ version = "1.0.219"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2693
+ dependencies = [
2694
+ "serde_derive",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "serde_derive"
2699
+ version = "1.0.219"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2702
+ dependencies = [
2703
+ "proc-macro2",
2704
+ "quote",
2705
+ "syn 2.0.104",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "serde_fmt"
2710
+ version = "1.0.3"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
2713
+ dependencies = [
2714
+ "serde",
2715
+ ]
2716
+
2717
+ [[package]]
2718
+ name = "serde_json"
2719
+ version = "1.0.140"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2722
+ dependencies = [
2723
+ "itoa",
2724
+ "memchr",
2725
+ "ryu",
2726
+ "serde",
2727
+ ]
2728
+
2729
+ [[package]]
2730
+ name = "serde_magnus"
2731
+ version = "0.9.0"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "51b8b945a2dadb221f1c5490cfb411cab6c3821446b8eca50ee07e5a3893ec51"
2734
+ dependencies = [
2735
+ "magnus",
2736
+ "serde",
2737
+ "tap",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "serde_path_to_error"
2742
+ version = "0.1.17"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
2745
+ dependencies = [
2746
+ "itoa",
2747
+ "serde",
2748
+ ]
2749
+
2750
+ [[package]]
2751
+ name = "serde_spanned"
2752
+ version = "0.6.9"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2755
+ dependencies = [
2756
+ "serde",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "serde_spanned"
2761
+ version = "1.0.0"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
2764
+ dependencies = [
2765
+ "serde",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "serde_urlencoded"
2770
+ version = "0.7.1"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2773
+ dependencies = [
2774
+ "form_urlencoded",
2775
+ "itoa",
2776
+ "ryu",
2777
+ "serde",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "serde_yaml"
2782
+ version = "0.9.34+deprecated"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2785
+ dependencies = [
2786
+ "indexmap 2.10.0",
2787
+ "itoa",
2788
+ "ryu",
2789
+ "serde",
2790
+ "unsafe-libyaml",
2791
+ ]
2792
+
2793
+ [[package]]
2794
+ name = "sha1"
2795
+ version = "0.10.6"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2798
+ dependencies = [
2799
+ "cfg-if",
2800
+ "cpufeatures",
2801
+ "digest",
2802
+ ]
2803
+
2804
+ [[package]]
2805
+ name = "sha2"
2806
+ version = "0.10.9"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2809
+ dependencies = [
2810
+ "cfg-if",
2811
+ "cpufeatures",
2812
+ "digest",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "sharded-slab"
2817
+ version = "0.1.7"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2820
+ dependencies = [
2821
+ "lazy_static",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "shell-words"
2826
+ version = "1.1.0"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2829
+
2830
+ [[package]]
2831
+ name = "shlex"
2832
+ version = "1.3.0"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2835
+
2836
+ [[package]]
2837
+ name = "signal-hook-registry"
2838
+ version = "1.4.5"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2841
+ dependencies = [
2842
+ "libc",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "signature"
2847
+ version = "2.2.0"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2850
+ dependencies = [
2851
+ "digest",
2852
+ "rand_core 0.6.4",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "simdutf8"
2857
+ version = "0.1.5"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2860
+
2861
+ [[package]]
2862
+ name = "simple_asn1"
2863
+ version = "0.6.3"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
2866
+ dependencies = [
2867
+ "num-bigint",
2868
+ "num-traits",
2869
+ "thiserror 2.0.12",
2870
+ "time",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "slab"
2875
+ version = "0.4.10"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
2878
+
2879
+ [[package]]
2880
+ name = "smallvec"
2881
+ version = "1.15.1"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2884
+ dependencies = [
2885
+ "serde",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "socket2"
2890
+ version = "0.5.10"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2893
+ dependencies = [
2894
+ "libc",
2895
+ "windows-sys 0.52.0",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "spin"
2900
+ version = "0.9.8"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2903
+ dependencies = [
2904
+ "lock_api",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "spki"
2909
+ version = "0.7.3"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2912
+ dependencies = [
2913
+ "base64ct",
2914
+ "der",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "sqlx"
2919
+ version = "0.8.6"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
2922
+ dependencies = [
2923
+ "sqlx-core",
2924
+ "sqlx-macros",
2925
+ "sqlx-mysql",
2926
+ "sqlx-postgres",
2927
+ "sqlx-sqlite",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "sqlx-core"
2932
+ version = "0.8.6"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
2935
+ dependencies = [
2936
+ "base64 0.22.1",
2937
+ "bigdecimal",
2938
+ "bytes",
2939
+ "chrono",
2940
+ "crc",
2941
+ "crossbeam-queue",
2942
+ "either",
2943
+ "event-listener",
2944
+ "futures-core",
2945
+ "futures-intrusive",
2946
+ "futures-io",
2947
+ "futures-util",
2948
+ "hashbrown 0.15.4",
2949
+ "hashlink",
2950
+ "indexmap 2.10.0",
2951
+ "log",
2952
+ "memchr",
2953
+ "once_cell",
2954
+ "percent-encoding",
2955
+ "rustls",
2956
+ "serde",
2957
+ "serde_json",
2958
+ "sha2",
2959
+ "smallvec",
2960
+ "thiserror 2.0.12",
2961
+ "tokio",
2962
+ "tokio-stream",
2963
+ "tracing",
2964
+ "url",
2965
+ "uuid",
2966
+ "webpki-roots 0.26.11",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "sqlx-macros"
2971
+ version = "0.8.6"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
2974
+ dependencies = [
2975
+ "proc-macro2",
2976
+ "quote",
2977
+ "sqlx-core",
2978
+ "sqlx-macros-core",
2979
+ "syn 2.0.104",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "sqlx-macros-core"
2984
+ version = "0.8.6"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
2987
+ dependencies = [
2988
+ "dotenvy",
2989
+ "either",
2990
+ "heck",
2991
+ "hex",
2992
+ "once_cell",
2993
+ "proc-macro2",
2994
+ "quote",
2995
+ "serde",
2996
+ "serde_json",
2997
+ "sha2",
2998
+ "sqlx-core",
2999
+ "sqlx-mysql",
3000
+ "sqlx-postgres",
3001
+ "sqlx-sqlite",
3002
+ "syn 2.0.104",
3003
+ "tokio",
3004
+ "url",
3005
+ ]
3006
+
3007
+ [[package]]
3008
+ name = "sqlx-mysql"
3009
+ version = "0.8.6"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
3012
+ dependencies = [
3013
+ "atoi",
3014
+ "base64 0.22.1",
3015
+ "bigdecimal",
3016
+ "bitflags",
3017
+ "byteorder",
3018
+ "bytes",
3019
+ "chrono",
3020
+ "crc",
3021
+ "digest",
3022
+ "dotenvy",
3023
+ "either",
3024
+ "futures-channel",
3025
+ "futures-core",
3026
+ "futures-io",
3027
+ "futures-util",
3028
+ "generic-array",
3029
+ "hex",
3030
+ "hkdf",
3031
+ "hmac",
3032
+ "itoa",
3033
+ "log",
3034
+ "md-5",
3035
+ "memchr",
3036
+ "once_cell",
3037
+ "percent-encoding",
3038
+ "rand 0.8.5",
3039
+ "rsa",
3040
+ "serde",
3041
+ "sha1",
3042
+ "sha2",
3043
+ "smallvec",
3044
+ "sqlx-core",
3045
+ "stringprep",
3046
+ "thiserror 2.0.12",
3047
+ "tracing",
3048
+ "uuid",
3049
+ "whoami",
3050
+ ]
3051
+
3052
+ [[package]]
3053
+ name = "sqlx-postgres"
3054
+ version = "0.8.6"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
3057
+ dependencies = [
3058
+ "atoi",
3059
+ "base64 0.22.1",
3060
+ "bigdecimal",
3061
+ "bitflags",
3062
+ "byteorder",
3063
+ "chrono",
3064
+ "crc",
3065
+ "dotenvy",
3066
+ "etcetera",
3067
+ "futures-channel",
3068
+ "futures-core",
3069
+ "futures-util",
3070
+ "hex",
3071
+ "hkdf",
3072
+ "hmac",
3073
+ "home",
3074
+ "itoa",
3075
+ "log",
3076
+ "md-5",
3077
+ "memchr",
3078
+ "num-bigint",
3079
+ "once_cell",
3080
+ "rand 0.8.5",
3081
+ "serde",
3082
+ "serde_json",
3083
+ "sha2",
3084
+ "smallvec",
3085
+ "sqlx-core",
3086
+ "stringprep",
3087
+ "thiserror 2.0.12",
3088
+ "tracing",
3089
+ "uuid",
3090
+ "whoami",
3091
+ ]
3092
+
3093
+ [[package]]
3094
+ name = "sqlx-sqlite"
3095
+ version = "0.8.6"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
3098
+ dependencies = [
3099
+ "atoi",
3100
+ "chrono",
3101
+ "flume",
3102
+ "futures-channel",
3103
+ "futures-core",
3104
+ "futures-executor",
3105
+ "futures-intrusive",
3106
+ "futures-util",
3107
+ "libsqlite3-sys",
3108
+ "log",
3109
+ "percent-encoding",
3110
+ "serde",
3111
+ "serde_urlencoded",
3112
+ "sqlx-core",
3113
+ "thiserror 2.0.12",
3114
+ "tracing",
3115
+ "url",
3116
+ "uuid",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "stable_deref_trait"
3121
+ version = "1.2.0"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3124
+
3125
+ [[package]]
3126
+ name = "stringprep"
3127
+ version = "0.1.5"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
3130
+ dependencies = [
3131
+ "unicode-bidi",
3132
+ "unicode-normalization",
3133
+ "unicode-properties",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "structured-logger"
3138
+ version = "1.0.4"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "f41647ab1dfedac6dccb4622ded5f3bea80ade9257a9ddcc89e36a43e1769cdf"
3141
+ dependencies = [
3142
+ "log",
3143
+ "parking_lot",
3144
+ "serde",
3145
+ "serde_json",
3146
+ "tokio",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "subtle"
3151
+ version = "2.6.1"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3154
+
3155
+ [[package]]
3156
+ name = "sval"
3157
+ version = "2.14.1"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "7cc9739f56c5d0c44a5ed45473ec868af02eb896af8c05f616673a31e1d1bb09"
3160
+
3161
+ [[package]]
3162
+ name = "sval_buffer"
3163
+ version = "2.14.1"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "f39b07436a8c271b34dad5070c634d1d3d76d6776e938ee97b4a66a5e8003d0b"
3166
+ dependencies = [
3167
+ "sval",
3168
+ "sval_ref",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "sval_dynamic"
3173
+ version = "2.14.1"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "ffcb072d857431bf885580dacecf05ed987bac931230736739a79051dbf3499b"
3176
+ dependencies = [
3177
+ "sval",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "sval_fmt"
3182
+ version = "2.14.1"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "3f214f427ad94a553e5ca5514c95c6be84667cbc5568cce957f03f3477d03d5c"
3185
+ dependencies = [
3186
+ "itoa",
3187
+ "ryu",
3188
+ "sval",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "sval_json"
3193
+ version = "2.14.1"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "389ed34b32e638dec9a99c8ac92d0aa1220d40041026b625474c2b6a4d6f4feb"
3196
+ dependencies = [
3197
+ "itoa",
3198
+ "ryu",
3199
+ "sval",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "sval_nested"
3204
+ version = "2.14.1"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "14bae8fcb2f24fee2c42c1f19037707f7c9a29a0cda936d2188d48a961c4bb2a"
3207
+ dependencies = [
3208
+ "sval",
3209
+ "sval_buffer",
3210
+ "sval_ref",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "sval_ref"
3215
+ version = "2.14.1"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "2a4eaea3821d3046dcba81d4b8489421da42961889902342691fb7eab491d79e"
3218
+ dependencies = [
3219
+ "sval",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "sval_serde"
3224
+ version = "2.14.1"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "172dd4aa8cb3b45c8ac8f3b4111d644cd26938b0643ede8f93070812b87fb339"
3227
+ dependencies = [
3228
+ "serde",
3229
+ "sval",
3230
+ "sval_nested",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "syn"
3235
+ version = "1.0.109"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3238
+ dependencies = [
3239
+ "proc-macro2",
3240
+ "quote",
3241
+ "unicode-ident",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "syn"
3246
+ version = "2.0.104"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
3249
+ dependencies = [
3250
+ "proc-macro2",
3251
+ "quote",
3252
+ "unicode-ident",
3253
+ ]
3254
+
3255
+ [[package]]
3256
+ name = "sync_wrapper"
3257
+ version = "1.0.2"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3260
+ dependencies = [
3261
+ "futures-core",
3262
+ ]
3263
+
3264
+ [[package]]
3265
+ name = "synstructure"
3266
+ version = "0.13.2"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3269
+ dependencies = [
3270
+ "proc-macro2",
3271
+ "quote",
3272
+ "syn 2.0.104",
3273
+ ]
3274
+
3275
+ [[package]]
3276
+ name = "sysinfo"
3277
+ version = "0.31.4"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "355dbe4f8799b304b05e1b0f05fc59b2a18d36645cf169607da45bde2f69a1be"
3280
+ dependencies = [
3281
+ "core-foundation-sys",
3282
+ "libc",
3283
+ "memchr",
3284
+ "ntapi",
3285
+ "rayon",
3286
+ "windows",
3287
+ ]
3288
+
3289
+ [[package]]
3290
+ name = "tap"
3291
+ version = "1.0.1"
3292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3293
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3294
+
3295
+ [[package]]
3296
+ name = "tasker-core"
3297
+ version = "0.1.0"
3298
+ dependencies = [
3299
+ "anyhow",
3300
+ "async-trait",
3301
+ "axum",
3302
+ "axum-extra",
3303
+ "bigdecimal",
3304
+ "chrono",
3305
+ "config",
3306
+ "crossbeam",
3307
+ "dotenvy",
3308
+ "fastrand",
3309
+ "futures",
3310
+ "jsonwebtoken",
3311
+ "opentelemetry",
3312
+ "opentelemetry-otlp",
3313
+ "parking_lot",
3314
+ "pgmq",
3315
+ "rand 0.9.1",
3316
+ "regex",
3317
+ "rsa",
3318
+ "rust_decimal",
3319
+ "serde",
3320
+ "serde_json",
3321
+ "serde_yaml",
3322
+ "sqlx",
3323
+ "structured-logger",
3324
+ "sysinfo",
3325
+ "thiserror 2.0.12",
3326
+ "tokio",
3327
+ "toml 0.8.23",
3328
+ "tower 0.4.13",
3329
+ "tower-http 0.5.2",
3330
+ "tracing",
3331
+ "tracing-appender",
3332
+ "tracing-subscriber",
3333
+ "utoipa",
3334
+ "utoipa-swagger-ui",
3335
+ "uuid",
3336
+ "workspace_tools",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "tasker-worker-rb"
3341
+ version = "0.1.0"
3342
+ dependencies = [
3343
+ "async-trait",
3344
+ "chrono",
3345
+ "dotenvy",
3346
+ "magnus",
3347
+ "serde",
3348
+ "serde_json",
3349
+ "serde_magnus",
3350
+ "serde_yaml",
3351
+ "sqlx",
3352
+ "structured-logger",
3353
+ "tasker-core",
3354
+ "thiserror 2.0.12",
3355
+ "tokio",
3356
+ "tracing",
3357
+ "uuid",
3358
+ "workspace_tools",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "tempfile"
3363
+ version = "3.20.0"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
3366
+ dependencies = [
3367
+ "fastrand",
3368
+ "getrandom 0.3.3",
3369
+ "once_cell",
3370
+ "rustix",
3371
+ "windows-sys 0.59.0",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "thiserror"
3376
+ version = "1.0.69"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3379
+ dependencies = [
3380
+ "thiserror-impl 1.0.69",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "thiserror"
3385
+ version = "2.0.12"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3388
+ dependencies = [
3389
+ "thiserror-impl 2.0.12",
3390
+ ]
3391
+
3392
+ [[package]]
3393
+ name = "thiserror-impl"
3394
+ version = "1.0.69"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3397
+ dependencies = [
3398
+ "proc-macro2",
3399
+ "quote",
3400
+ "syn 2.0.104",
3401
+ ]
3402
+
3403
+ [[package]]
3404
+ name = "thiserror-impl"
3405
+ version = "2.0.12"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3408
+ dependencies = [
3409
+ "proc-macro2",
3410
+ "quote",
3411
+ "syn 2.0.104",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "thread_local"
3416
+ version = "1.1.9"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3419
+ dependencies = [
3420
+ "cfg-if",
3421
+ ]
3422
+
3423
+ [[package]]
3424
+ name = "time"
3425
+ version = "0.3.41"
3426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3427
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3428
+ dependencies = [
3429
+ "deranged",
3430
+ "itoa",
3431
+ "num-conv",
3432
+ "powerfmt",
3433
+ "serde",
3434
+ "time-core",
3435
+ "time-macros",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "time-core"
3440
+ version = "0.1.4"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3443
+
3444
+ [[package]]
3445
+ name = "time-macros"
3446
+ version = "0.2.22"
3447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3448
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
3449
+ dependencies = [
3450
+ "num-conv",
3451
+ "time-core",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "tiny-keccak"
3456
+ version = "2.0.2"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3459
+ dependencies = [
3460
+ "crunchy",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "tinystr"
3465
+ version = "0.8.1"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3468
+ dependencies = [
3469
+ "displaydoc",
3470
+ "zerovec",
3471
+ ]
3472
+
3473
+ [[package]]
3474
+ name = "tinyvec"
3475
+ version = "1.9.0"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3478
+ dependencies = [
3479
+ "tinyvec_macros",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "tinyvec_macros"
3484
+ version = "0.1.1"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3487
+
3488
+ [[package]]
3489
+ name = "tokio"
3490
+ version = "1.46.1"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
3493
+ dependencies = [
3494
+ "backtrace",
3495
+ "bytes",
3496
+ "io-uring",
3497
+ "libc",
3498
+ "mio",
3499
+ "parking_lot",
3500
+ "pin-project-lite",
3501
+ "signal-hook-registry",
3502
+ "slab",
3503
+ "socket2",
3504
+ "tokio-macros",
3505
+ "windows-sys 0.52.0",
3506
+ ]
3507
+
3508
+ [[package]]
3509
+ name = "tokio-macros"
3510
+ version = "2.5.0"
3511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3512
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3513
+ dependencies = [
3514
+ "proc-macro2",
3515
+ "quote",
3516
+ "syn 2.0.104",
3517
+ ]
3518
+
3519
+ [[package]]
3520
+ name = "tokio-rustls"
3521
+ version = "0.26.2"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3524
+ dependencies = [
3525
+ "rustls",
3526
+ "tokio",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "tokio-stream"
3531
+ version = "0.1.17"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3534
+ dependencies = [
3535
+ "futures-core",
3536
+ "pin-project-lite",
3537
+ "tokio",
3538
+ ]
3539
+
3540
+ [[package]]
3541
+ name = "tokio-util"
3542
+ version = "0.7.15"
3543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3544
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3545
+ dependencies = [
3546
+ "bytes",
3547
+ "futures-core",
3548
+ "futures-sink",
3549
+ "pin-project-lite",
3550
+ "tokio",
3551
+ ]
3552
+
3553
+ [[package]]
3554
+ name = "toml"
3555
+ version = "0.8.23"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3558
+ dependencies = [
3559
+ "indexmap 2.10.0",
3560
+ "serde",
3561
+ "serde_spanned 0.6.9",
3562
+ "toml_datetime 0.6.11",
3563
+ "toml_edit",
3564
+ ]
3565
+
3566
+ [[package]]
3567
+ name = "toml"
3568
+ version = "0.9.5"
3569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3570
+ checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
3571
+ dependencies = [
3572
+ "serde",
3573
+ "serde_spanned 1.0.0",
3574
+ "toml_datetime 0.7.0",
3575
+ "toml_parser",
3576
+ "winnow",
3577
+ ]
3578
+
3579
+ [[package]]
3580
+ name = "toml_datetime"
3581
+ version = "0.6.11"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3584
+ dependencies = [
3585
+ "serde",
3586
+ ]
3587
+
3588
+ [[package]]
3589
+ name = "toml_datetime"
3590
+ version = "0.7.0"
3591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3592
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
3593
+ dependencies = [
3594
+ "serde",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "toml_edit"
3599
+ version = "0.22.27"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3602
+ dependencies = [
3603
+ "indexmap 2.10.0",
3604
+ "serde",
3605
+ "serde_spanned 0.6.9",
3606
+ "toml_datetime 0.6.11",
3607
+ "toml_write",
3608
+ "winnow",
3609
+ ]
3610
+
3611
+ [[package]]
3612
+ name = "toml_parser"
3613
+ version = "1.0.2"
3614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3615
+ checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10"
3616
+ dependencies = [
3617
+ "winnow",
3618
+ ]
3619
+
3620
+ [[package]]
3621
+ name = "toml_write"
3622
+ version = "0.1.2"
3623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3624
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3625
+
3626
+ [[package]]
3627
+ name = "tonic"
3628
+ version = "0.12.3"
3629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3630
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
3631
+ dependencies = [
3632
+ "async-stream",
3633
+ "async-trait",
3634
+ "axum",
3635
+ "base64 0.22.1",
3636
+ "bytes",
3637
+ "h2",
3638
+ "http",
3639
+ "http-body",
3640
+ "http-body-util",
3641
+ "hyper",
3642
+ "hyper-timeout",
3643
+ "hyper-util",
3644
+ "percent-encoding",
3645
+ "pin-project",
3646
+ "prost",
3647
+ "socket2",
3648
+ "tokio",
3649
+ "tokio-stream",
3650
+ "tower 0.4.13",
3651
+ "tower-layer",
3652
+ "tower-service",
3653
+ "tracing",
3654
+ ]
3655
+
3656
+ [[package]]
3657
+ name = "tower"
3658
+ version = "0.4.13"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3661
+ dependencies = [
3662
+ "futures-core",
3663
+ "futures-util",
3664
+ "indexmap 1.9.3",
3665
+ "pin-project",
3666
+ "pin-project-lite",
3667
+ "rand 0.8.5",
3668
+ "slab",
3669
+ "tokio",
3670
+ "tokio-util",
3671
+ "tower-layer",
3672
+ "tower-service",
3673
+ "tracing",
3674
+ ]
3675
+
3676
+ [[package]]
3677
+ name = "tower"
3678
+ version = "0.5.2"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3681
+ dependencies = [
3682
+ "futures-core",
3683
+ "futures-util",
3684
+ "pin-project-lite",
3685
+ "sync_wrapper",
3686
+ "tokio",
3687
+ "tower-layer",
3688
+ "tower-service",
3689
+ "tracing",
3690
+ ]
3691
+
3692
+ [[package]]
3693
+ name = "tower-http"
3694
+ version = "0.5.2"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
3697
+ dependencies = [
3698
+ "bitflags",
3699
+ "bytes",
3700
+ "http",
3701
+ "http-body",
3702
+ "http-body-util",
3703
+ "pin-project-lite",
3704
+ "tokio",
3705
+ "tower-layer",
3706
+ "tower-service",
3707
+ "tracing",
3708
+ ]
3709
+
3710
+ [[package]]
3711
+ name = "tower-http"
3712
+ version = "0.6.6"
3713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3714
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3715
+ dependencies = [
3716
+ "bitflags",
3717
+ "bytes",
3718
+ "futures-util",
3719
+ "http",
3720
+ "http-body",
3721
+ "iri-string",
3722
+ "pin-project-lite",
3723
+ "tower 0.5.2",
3724
+ "tower-layer",
3725
+ "tower-service",
3726
+ ]
3727
+
3728
+ [[package]]
3729
+ name = "tower-layer"
3730
+ version = "0.3.3"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3733
+
3734
+ [[package]]
3735
+ name = "tower-service"
3736
+ version = "0.3.3"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3739
+
3740
+ [[package]]
3741
+ name = "tracing"
3742
+ version = "0.1.41"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3745
+ dependencies = [
3746
+ "log",
3747
+ "pin-project-lite",
3748
+ "tracing-attributes",
3749
+ "tracing-core",
3750
+ ]
3751
+
3752
+ [[package]]
3753
+ name = "tracing-appender"
3754
+ version = "0.2.3"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
3757
+ dependencies = [
3758
+ "crossbeam-channel",
3759
+ "thiserror 1.0.69",
3760
+ "time",
3761
+ "tracing-subscriber",
3762
+ ]
3763
+
3764
+ [[package]]
3765
+ name = "tracing-attributes"
3766
+ version = "0.1.30"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3769
+ dependencies = [
3770
+ "proc-macro2",
3771
+ "quote",
3772
+ "syn 2.0.104",
3773
+ ]
3774
+
3775
+ [[package]]
3776
+ name = "tracing-core"
3777
+ version = "0.1.34"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3780
+ dependencies = [
3781
+ "once_cell",
3782
+ "valuable",
3783
+ ]
3784
+
3785
+ [[package]]
3786
+ name = "tracing-log"
3787
+ version = "0.2.0"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3790
+ dependencies = [
3791
+ "log",
3792
+ "once_cell",
3793
+ "tracing-core",
3794
+ ]
3795
+
3796
+ [[package]]
3797
+ name = "tracing-serde"
3798
+ version = "0.2.0"
3799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3800
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
3801
+ dependencies = [
3802
+ "serde",
3803
+ "tracing-core",
3804
+ ]
3805
+
3806
+ [[package]]
3807
+ name = "tracing-subscriber"
3808
+ version = "0.3.19"
3809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3810
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3811
+ dependencies = [
3812
+ "matchers",
3813
+ "nu-ansi-term",
3814
+ "once_cell",
3815
+ "regex",
3816
+ "serde",
3817
+ "serde_json",
3818
+ "sharded-slab",
3819
+ "smallvec",
3820
+ "thread_local",
3821
+ "tracing",
3822
+ "tracing-core",
3823
+ "tracing-log",
3824
+ "tracing-serde",
3825
+ ]
3826
+
3827
+ [[package]]
3828
+ name = "try-lock"
3829
+ version = "0.2.5"
3830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3831
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3832
+
3833
+ [[package]]
3834
+ name = "typeid"
3835
+ version = "1.0.3"
3836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3837
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3838
+
3839
+ [[package]]
3840
+ name = "typenum"
3841
+ version = "1.18.0"
3842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3843
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3844
+
3845
+ [[package]]
3846
+ name = "ucd-trie"
3847
+ version = "0.1.7"
3848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3849
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
3850
+
3851
+ [[package]]
3852
+ name = "unicase"
3853
+ version = "2.8.1"
3854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3855
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3856
+
3857
+ [[package]]
3858
+ name = "unicode-bidi"
3859
+ version = "0.3.18"
3860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3861
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3862
+
3863
+ [[package]]
3864
+ name = "unicode-ident"
3865
+ version = "1.0.18"
3866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3867
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3868
+
3869
+ [[package]]
3870
+ name = "unicode-normalization"
3871
+ version = "0.1.24"
3872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3873
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3874
+ dependencies = [
3875
+ "tinyvec",
3876
+ ]
3877
+
3878
+ [[package]]
3879
+ name = "unicode-properties"
3880
+ version = "0.1.3"
3881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3882
+ checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
3883
+
3884
+ [[package]]
3885
+ name = "unicode-segmentation"
3886
+ version = "1.12.0"
3887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3888
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3889
+
3890
+ [[package]]
3891
+ name = "unsafe-libyaml"
3892
+ version = "0.2.11"
3893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3894
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3895
+
3896
+ [[package]]
3897
+ name = "untrusted"
3898
+ version = "0.9.0"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3901
+
3902
+ [[package]]
3903
+ name = "url"
3904
+ version = "2.5.4"
3905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3906
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3907
+ dependencies = [
3908
+ "form_urlencoded",
3909
+ "idna",
3910
+ "percent-encoding",
3911
+ ]
3912
+
3913
+ [[package]]
3914
+ name = "utf8_iter"
3915
+ version = "1.0.4"
3916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3917
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3918
+
3919
+ [[package]]
3920
+ name = "utoipa"
3921
+ version = "4.2.3"
3922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3923
+ checksum = "c5afb1a60e207dca502682537fefcfd9921e71d0b83e9576060f09abc6efab23"
3924
+ dependencies = [
3925
+ "indexmap 2.10.0",
3926
+ "serde",
3927
+ "serde_json",
3928
+ "utoipa-gen",
3929
+ ]
3930
+
3931
+ [[package]]
3932
+ name = "utoipa-gen"
3933
+ version = "4.3.1"
3934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3935
+ checksum = "20c24e8ab68ff9ee746aad22d39b5535601e6416d1b0feeabf78be986a5c4392"
3936
+ dependencies = [
3937
+ "proc-macro-error",
3938
+ "proc-macro2",
3939
+ "quote",
3940
+ "regex",
3941
+ "syn 2.0.104",
3942
+ "uuid",
3943
+ ]
3944
+
3945
+ [[package]]
3946
+ name = "utoipa-swagger-ui"
3947
+ version = "7.1.0"
3948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3949
+ checksum = "943e0ff606c6d57d410fd5663a4d7c074ab2c5f14ab903b9514565e59fa1189e"
3950
+ dependencies = [
3951
+ "axum",
3952
+ "mime_guess",
3953
+ "regex",
3954
+ "reqwest",
3955
+ "rust-embed",
3956
+ "serde",
3957
+ "serde_json",
3958
+ "url",
3959
+ "utoipa",
3960
+ "zip",
3961
+ ]
3962
+
3963
+ [[package]]
3964
+ name = "uuid"
3965
+ version = "1.17.0"
3966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3967
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
3968
+ dependencies = [
3969
+ "getrandom 0.3.3",
3970
+ "js-sys",
3971
+ "serde",
3972
+ "wasm-bindgen",
3973
+ ]
3974
+
3975
+ [[package]]
3976
+ name = "valuable"
3977
+ version = "0.1.1"
3978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3979
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3980
+
3981
+ [[package]]
3982
+ name = "value-bag"
3983
+ version = "1.11.1"
3984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3985
+ checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
3986
+ dependencies = [
3987
+ "value-bag-serde1",
3988
+ "value-bag-sval2",
3989
+ ]
3990
+
3991
+ [[package]]
3992
+ name = "value-bag-serde1"
3993
+ version = "1.11.1"
3994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3995
+ checksum = "35540706617d373b118d550d41f5dfe0b78a0c195dc13c6815e92e2638432306"
3996
+ dependencies = [
3997
+ "erased-serde",
3998
+ "serde",
3999
+ "serde_fmt",
4000
+ ]
4001
+
4002
+ [[package]]
4003
+ name = "value-bag-sval2"
4004
+ version = "1.11.1"
4005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4006
+ checksum = "6fe7e140a2658cc16f7ee7a86e413e803fc8f9b5127adc8755c19f9fefa63a52"
4007
+ dependencies = [
4008
+ "sval",
4009
+ "sval_buffer",
4010
+ "sval_dynamic",
4011
+ "sval_fmt",
4012
+ "sval_json",
4013
+ "sval_ref",
4014
+ "sval_serde",
4015
+ ]
4016
+
4017
+ [[package]]
4018
+ name = "vcpkg"
4019
+ version = "0.2.15"
4020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4021
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4022
+
4023
+ [[package]]
4024
+ name = "version_check"
4025
+ version = "0.9.5"
4026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4027
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4028
+
4029
+ [[package]]
4030
+ name = "walkdir"
4031
+ version = "2.5.0"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4034
+ dependencies = [
4035
+ "same-file",
4036
+ "winapi-util",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "want"
4041
+ version = "0.3.1"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4044
+ dependencies = [
4045
+ "try-lock",
4046
+ ]
4047
+
4048
+ [[package]]
4049
+ name = "wasi"
4050
+ version = "0.11.1+wasi-snapshot-preview1"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4053
+
4054
+ [[package]]
4055
+ name = "wasi"
4056
+ version = "0.14.2+wasi-0.2.4"
4057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4058
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
4059
+ dependencies = [
4060
+ "wit-bindgen-rt",
4061
+ ]
4062
+
4063
+ [[package]]
4064
+ name = "wasite"
4065
+ version = "0.1.0"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
4068
+
4069
+ [[package]]
4070
+ name = "wasm-bindgen"
4071
+ version = "0.2.100"
4072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4073
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
4074
+ dependencies = [
4075
+ "cfg-if",
4076
+ "once_cell",
4077
+ "rustversion",
4078
+ "wasm-bindgen-macro",
4079
+ ]
4080
+
4081
+ [[package]]
4082
+ name = "wasm-bindgen-backend"
4083
+ version = "0.2.100"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
4086
+ dependencies = [
4087
+ "bumpalo",
4088
+ "log",
4089
+ "proc-macro2",
4090
+ "quote",
4091
+ "syn 2.0.104",
4092
+ "wasm-bindgen-shared",
4093
+ ]
4094
+
4095
+ [[package]]
4096
+ name = "wasm-bindgen-futures"
4097
+ version = "0.4.50"
4098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4099
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
4100
+ dependencies = [
4101
+ "cfg-if",
4102
+ "js-sys",
4103
+ "once_cell",
4104
+ "wasm-bindgen",
4105
+ "web-sys",
4106
+ ]
4107
+
4108
+ [[package]]
4109
+ name = "wasm-bindgen-macro"
4110
+ version = "0.2.100"
4111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4112
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
4113
+ dependencies = [
4114
+ "quote",
4115
+ "wasm-bindgen-macro-support",
4116
+ ]
4117
+
4118
+ [[package]]
4119
+ name = "wasm-bindgen-macro-support"
4120
+ version = "0.2.100"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4123
+ dependencies = [
4124
+ "proc-macro2",
4125
+ "quote",
4126
+ "syn 2.0.104",
4127
+ "wasm-bindgen-backend",
4128
+ "wasm-bindgen-shared",
4129
+ ]
4130
+
4131
+ [[package]]
4132
+ name = "wasm-bindgen-shared"
4133
+ version = "0.2.100"
4134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4135
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4136
+ dependencies = [
4137
+ "unicode-ident",
4138
+ ]
4139
+
4140
+ [[package]]
4141
+ name = "web-sys"
4142
+ version = "0.3.77"
4143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4144
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4145
+ dependencies = [
4146
+ "js-sys",
4147
+ "wasm-bindgen",
4148
+ ]
4149
+
4150
+ [[package]]
4151
+ name = "web-time"
4152
+ version = "1.1.0"
4153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4154
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4155
+ dependencies = [
4156
+ "js-sys",
4157
+ "wasm-bindgen",
4158
+ ]
4159
+
4160
+ [[package]]
4161
+ name = "webpki-roots"
4162
+ version = "0.26.11"
4163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4164
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
4165
+ dependencies = [
4166
+ "webpki-roots 1.0.1",
4167
+ ]
4168
+
4169
+ [[package]]
4170
+ name = "webpki-roots"
4171
+ version = "1.0.1"
4172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4173
+ checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502"
4174
+ dependencies = [
4175
+ "rustls-pki-types",
4176
+ ]
4177
+
4178
+ [[package]]
4179
+ name = "whoami"
4180
+ version = "1.6.0"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7"
4183
+ dependencies = [
4184
+ "redox_syscall",
4185
+ "wasite",
4186
+ ]
4187
+
4188
+ [[package]]
4189
+ name = "winapi"
4190
+ version = "0.3.9"
4191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4192
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4193
+ dependencies = [
4194
+ "winapi-i686-pc-windows-gnu",
4195
+ "winapi-x86_64-pc-windows-gnu",
4196
+ ]
4197
+
4198
+ [[package]]
4199
+ name = "winapi-i686-pc-windows-gnu"
4200
+ version = "0.4.0"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4203
+
4204
+ [[package]]
4205
+ name = "winapi-util"
4206
+ version = "0.1.9"
4207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4208
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4209
+ dependencies = [
4210
+ "windows-sys 0.48.0",
4211
+ ]
4212
+
4213
+ [[package]]
4214
+ name = "winapi-x86_64-pc-windows-gnu"
4215
+ version = "0.4.0"
4216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4217
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4218
+
4219
+ [[package]]
4220
+ name = "windows"
4221
+ version = "0.57.0"
4222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4223
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
4224
+ dependencies = [
4225
+ "windows-core 0.57.0",
4226
+ "windows-targets 0.52.6",
4227
+ ]
4228
+
4229
+ [[package]]
4230
+ name = "windows-core"
4231
+ version = "0.57.0"
4232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4233
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
4234
+ dependencies = [
4235
+ "windows-implement 0.57.0",
4236
+ "windows-interface 0.57.0",
4237
+ "windows-result 0.1.2",
4238
+ "windows-targets 0.52.6",
4239
+ ]
4240
+
4241
+ [[package]]
4242
+ name = "windows-core"
4243
+ version = "0.61.2"
4244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4245
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
4246
+ dependencies = [
4247
+ "windows-implement 0.60.0",
4248
+ "windows-interface 0.59.1",
4249
+ "windows-link",
4250
+ "windows-result 0.3.4",
4251
+ "windows-strings",
4252
+ ]
4253
+
4254
+ [[package]]
4255
+ name = "windows-implement"
4256
+ version = "0.57.0"
4257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4258
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
4259
+ dependencies = [
4260
+ "proc-macro2",
4261
+ "quote",
4262
+ "syn 2.0.104",
4263
+ ]
4264
+
4265
+ [[package]]
4266
+ name = "windows-implement"
4267
+ version = "0.60.0"
4268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4269
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4270
+ dependencies = [
4271
+ "proc-macro2",
4272
+ "quote",
4273
+ "syn 2.0.104",
4274
+ ]
4275
+
4276
+ [[package]]
4277
+ name = "windows-interface"
4278
+ version = "0.57.0"
4279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4280
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
4281
+ dependencies = [
4282
+ "proc-macro2",
4283
+ "quote",
4284
+ "syn 2.0.104",
4285
+ ]
4286
+
4287
+ [[package]]
4288
+ name = "windows-interface"
4289
+ version = "0.59.1"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4292
+ dependencies = [
4293
+ "proc-macro2",
4294
+ "quote",
4295
+ "syn 2.0.104",
4296
+ ]
4297
+
4298
+ [[package]]
4299
+ name = "windows-link"
4300
+ version = "0.1.3"
4301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4302
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4303
+
4304
+ [[package]]
4305
+ name = "windows-result"
4306
+ version = "0.1.2"
4307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4308
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
4309
+ dependencies = [
4310
+ "windows-targets 0.52.6",
4311
+ ]
4312
+
4313
+ [[package]]
4314
+ name = "windows-result"
4315
+ version = "0.3.4"
4316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4317
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4318
+ dependencies = [
4319
+ "windows-link",
4320
+ ]
4321
+
4322
+ [[package]]
4323
+ name = "windows-strings"
4324
+ version = "0.4.2"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
4327
+ dependencies = [
4328
+ "windows-link",
4329
+ ]
4330
+
4331
+ [[package]]
4332
+ name = "windows-sys"
4333
+ version = "0.48.0"
4334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4335
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4336
+ dependencies = [
4337
+ "windows-targets 0.48.5",
4338
+ ]
4339
+
4340
+ [[package]]
4341
+ name = "windows-sys"
4342
+ version = "0.52.0"
4343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4344
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4345
+ dependencies = [
4346
+ "windows-targets 0.52.6",
4347
+ ]
4348
+
4349
+ [[package]]
4350
+ name = "windows-sys"
4351
+ version = "0.59.0"
4352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4353
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4354
+ dependencies = [
4355
+ "windows-targets 0.52.6",
4356
+ ]
4357
+
4358
+ [[package]]
4359
+ name = "windows-targets"
4360
+ version = "0.48.5"
4361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4362
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4363
+ dependencies = [
4364
+ "windows_aarch64_gnullvm 0.48.5",
4365
+ "windows_aarch64_msvc 0.48.5",
4366
+ "windows_i686_gnu 0.48.5",
4367
+ "windows_i686_msvc 0.48.5",
4368
+ "windows_x86_64_gnu 0.48.5",
4369
+ "windows_x86_64_gnullvm 0.48.5",
4370
+ "windows_x86_64_msvc 0.48.5",
4371
+ ]
4372
+
4373
+ [[package]]
4374
+ name = "windows-targets"
4375
+ version = "0.52.6"
4376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4377
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4378
+ dependencies = [
4379
+ "windows_aarch64_gnullvm 0.52.6",
4380
+ "windows_aarch64_msvc 0.52.6",
4381
+ "windows_i686_gnu 0.52.6",
4382
+ "windows_i686_gnullvm 0.52.6",
4383
+ "windows_i686_msvc 0.52.6",
4384
+ "windows_x86_64_gnu 0.52.6",
4385
+ "windows_x86_64_gnullvm 0.52.6",
4386
+ "windows_x86_64_msvc 0.52.6",
4387
+ ]
4388
+
4389
+ [[package]]
4390
+ name = "windows-targets"
4391
+ version = "0.53.2"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
4394
+ dependencies = [
4395
+ "windows_aarch64_gnullvm 0.53.0",
4396
+ "windows_aarch64_msvc 0.53.0",
4397
+ "windows_i686_gnu 0.53.0",
4398
+ "windows_i686_gnullvm 0.53.0",
4399
+ "windows_i686_msvc 0.53.0",
4400
+ "windows_x86_64_gnu 0.53.0",
4401
+ "windows_x86_64_gnullvm 0.53.0",
4402
+ "windows_x86_64_msvc 0.53.0",
4403
+ ]
4404
+
4405
+ [[package]]
4406
+ name = "windows_aarch64_gnullvm"
4407
+ version = "0.48.5"
4408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4409
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4410
+
4411
+ [[package]]
4412
+ name = "windows_aarch64_gnullvm"
4413
+ version = "0.52.6"
4414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4415
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4416
+
4417
+ [[package]]
4418
+ name = "windows_aarch64_gnullvm"
4419
+ version = "0.53.0"
4420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4421
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4422
+
4423
+ [[package]]
4424
+ name = "windows_aarch64_msvc"
4425
+ version = "0.48.5"
4426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4427
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4428
+
4429
+ [[package]]
4430
+ name = "windows_aarch64_msvc"
4431
+ version = "0.52.6"
4432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4433
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4434
+
4435
+ [[package]]
4436
+ name = "windows_aarch64_msvc"
4437
+ version = "0.53.0"
4438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4439
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4440
+
4441
+ [[package]]
4442
+ name = "windows_i686_gnu"
4443
+ version = "0.48.5"
4444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4445
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4446
+
4447
+ [[package]]
4448
+ name = "windows_i686_gnu"
4449
+ version = "0.52.6"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4452
+
4453
+ [[package]]
4454
+ name = "windows_i686_gnu"
4455
+ version = "0.53.0"
4456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4457
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4458
+
4459
+ [[package]]
4460
+ name = "windows_i686_gnullvm"
4461
+ version = "0.52.6"
4462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4463
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4464
+
4465
+ [[package]]
4466
+ name = "windows_i686_gnullvm"
4467
+ version = "0.53.0"
4468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4469
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4470
+
4471
+ [[package]]
4472
+ name = "windows_i686_msvc"
4473
+ version = "0.48.5"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4476
+
4477
+ [[package]]
4478
+ name = "windows_i686_msvc"
4479
+ version = "0.52.6"
4480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4481
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4482
+
4483
+ [[package]]
4484
+ name = "windows_i686_msvc"
4485
+ version = "0.53.0"
4486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4487
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4488
+
4489
+ [[package]]
4490
+ name = "windows_x86_64_gnu"
4491
+ version = "0.48.5"
4492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4493
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4494
+
4495
+ [[package]]
4496
+ name = "windows_x86_64_gnu"
4497
+ version = "0.52.6"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4500
+
4501
+ [[package]]
4502
+ name = "windows_x86_64_gnu"
4503
+ version = "0.53.0"
4504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4505
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4506
+
4507
+ [[package]]
4508
+ name = "windows_x86_64_gnullvm"
4509
+ version = "0.48.5"
4510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4511
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4512
+
4513
+ [[package]]
4514
+ name = "windows_x86_64_gnullvm"
4515
+ version = "0.52.6"
4516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4517
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4518
+
4519
+ [[package]]
4520
+ name = "windows_x86_64_gnullvm"
4521
+ version = "0.53.0"
4522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4523
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4524
+
4525
+ [[package]]
4526
+ name = "windows_x86_64_msvc"
4527
+ version = "0.48.5"
4528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4529
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4530
+
4531
+ [[package]]
4532
+ name = "windows_x86_64_msvc"
4533
+ version = "0.52.6"
4534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4535
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4536
+
4537
+ [[package]]
4538
+ name = "windows_x86_64_msvc"
4539
+ version = "0.53.0"
4540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4541
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4542
+
4543
+ [[package]]
4544
+ name = "winnow"
4545
+ version = "0.7.12"
4546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4547
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
4548
+ dependencies = [
4549
+ "memchr",
4550
+ ]
4551
+
4552
+ [[package]]
4553
+ name = "wit-bindgen-rt"
4554
+ version = "0.39.0"
4555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4556
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4557
+ dependencies = [
4558
+ "bitflags",
4559
+ ]
4560
+
4561
+ [[package]]
4562
+ name = "workspace_tools"
4563
+ version = "0.2.0"
4564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4565
+ checksum = "2e19a0bf92a79b7a1bda94d42cd1ec2ab9beca39d2174d5c3be0c328cf2aad00"
4566
+ dependencies = [
4567
+ "cargo_metadata",
4568
+ "glob",
4569
+ "serde",
4570
+ "serde_json",
4571
+ "serde_yaml",
4572
+ "tempfile",
4573
+ "toml 0.8.23",
4574
+ ]
4575
+
4576
+ [[package]]
4577
+ name = "writeable"
4578
+ version = "0.6.1"
4579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4580
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4581
+
4582
+ [[package]]
4583
+ name = "wyz"
4584
+ version = "0.5.1"
4585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4586
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4587
+ dependencies = [
4588
+ "tap",
4589
+ ]
4590
+
4591
+ [[package]]
4592
+ name = "yaml-rust2"
4593
+ version = "0.10.3"
4594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4595
+ checksum = "4ce2a4ff45552406d02501cea6c18d8a7e50228e7736a872951fe2fe75c91be7"
4596
+ dependencies = [
4597
+ "arraydeque",
4598
+ "encoding_rs",
4599
+ "hashlink",
4600
+ ]
4601
+
4602
+ [[package]]
4603
+ name = "yoke"
4604
+ version = "0.8.0"
4605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4606
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4607
+ dependencies = [
4608
+ "serde",
4609
+ "stable_deref_trait",
4610
+ "yoke-derive",
4611
+ "zerofrom",
4612
+ ]
4613
+
4614
+ [[package]]
4615
+ name = "yoke-derive"
4616
+ version = "0.8.0"
4617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4618
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4619
+ dependencies = [
4620
+ "proc-macro2",
4621
+ "quote",
4622
+ "syn 2.0.104",
4623
+ "synstructure",
4624
+ ]
4625
+
4626
+ [[package]]
4627
+ name = "zerocopy"
4628
+ version = "0.8.26"
4629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4630
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
4631
+ dependencies = [
4632
+ "zerocopy-derive",
4633
+ ]
4634
+
4635
+ [[package]]
4636
+ name = "zerocopy-derive"
4637
+ version = "0.8.26"
4638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4639
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
4640
+ dependencies = [
4641
+ "proc-macro2",
4642
+ "quote",
4643
+ "syn 2.0.104",
4644
+ ]
4645
+
4646
+ [[package]]
4647
+ name = "zerofrom"
4648
+ version = "0.1.6"
4649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4650
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4651
+ dependencies = [
4652
+ "zerofrom-derive",
4653
+ ]
4654
+
4655
+ [[package]]
4656
+ name = "zerofrom-derive"
4657
+ version = "0.1.6"
4658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4659
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4660
+ dependencies = [
4661
+ "proc-macro2",
4662
+ "quote",
4663
+ "syn 2.0.104",
4664
+ "synstructure",
4665
+ ]
4666
+
4667
+ [[package]]
4668
+ name = "zeroize"
4669
+ version = "1.8.1"
4670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4671
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4672
+
4673
+ [[package]]
4674
+ name = "zerotrie"
4675
+ version = "0.2.2"
4676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4677
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4678
+ dependencies = [
4679
+ "displaydoc",
4680
+ "yoke",
4681
+ "zerofrom",
4682
+ ]
4683
+
4684
+ [[package]]
4685
+ name = "zerovec"
4686
+ version = "0.11.2"
4687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4688
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
4689
+ dependencies = [
4690
+ "yoke",
4691
+ "zerofrom",
4692
+ "zerovec-derive",
4693
+ ]
4694
+
4695
+ [[package]]
4696
+ name = "zerovec-derive"
4697
+ version = "0.11.1"
4698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4699
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4700
+ dependencies = [
4701
+ "proc-macro2",
4702
+ "quote",
4703
+ "syn 2.0.104",
4704
+ ]
4705
+
4706
+ [[package]]
4707
+ name = "zip"
4708
+ version = "1.1.4"
4709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4710
+ checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164"
4711
+ dependencies = [
4712
+ "arbitrary",
4713
+ "crc32fast",
4714
+ "crossbeam-utils",
4715
+ "displaydoc",
4716
+ "flate2",
4717
+ "indexmap 2.10.0",
4718
+ "num_enum",
4719
+ "thiserror 1.0.69",
4720
+ ]