spikard 0.6.1 → 0.7.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 (68) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +90 -508
  3. data/ext/spikard_rb/Cargo.lock +3287 -0
  4. data/ext/spikard_rb/Cargo.toml +1 -1
  5. data/ext/spikard_rb/extconf.rb +3 -3
  6. data/lib/spikard/app.rb +72 -49
  7. data/lib/spikard/background.rb +38 -7
  8. data/lib/spikard/testing.rb +42 -4
  9. data/lib/spikard/version.rb +1 -1
  10. data/sig/spikard.rbs +4 -0
  11. data/vendor/crates/spikard-bindings-shared/Cargo.toml +1 -1
  12. data/vendor/crates/spikard-bindings-shared/tests/config_extractor_behavior.rs +191 -0
  13. data/vendor/crates/spikard-core/Cargo.toml +2 -2
  14. data/vendor/crates/spikard-core/src/http.rs +1 -0
  15. data/vendor/crates/spikard-core/src/lifecycle.rs +63 -0
  16. data/vendor/crates/spikard-core/tests/bindings_response_tests.rs +136 -0
  17. data/vendor/crates/spikard-core/tests/di_dependency_defaults.rs +37 -0
  18. data/vendor/crates/spikard-core/tests/error_mapper.rs +761 -0
  19. data/vendor/crates/spikard-core/tests/parameters_edge_cases.rs +106 -0
  20. data/vendor/crates/spikard-core/tests/parameters_full.rs +701 -0
  21. data/vendor/crates/spikard-core/tests/parameters_schema_and_formats.rs +301 -0
  22. data/vendor/crates/spikard-core/tests/request_data_roundtrip.rs +67 -0
  23. data/vendor/crates/spikard-core/tests/validation_coverage.rs +250 -0
  24. data/vendor/crates/spikard-core/tests/validation_error_paths.rs +45 -0
  25. data/vendor/crates/spikard-http/Cargo.toml +1 -1
  26. data/vendor/crates/spikard-http/src/jsonrpc/http_handler.rs +502 -0
  27. data/vendor/crates/spikard-http/src/jsonrpc/method_registry.rs +648 -0
  28. data/vendor/crates/spikard-http/src/jsonrpc/mod.rs +58 -0
  29. data/vendor/crates/spikard-http/src/jsonrpc/protocol.rs +1207 -0
  30. data/vendor/crates/spikard-http/src/jsonrpc/router.rs +2262 -0
  31. data/vendor/crates/spikard-http/src/testing/test_client.rs +155 -2
  32. data/vendor/crates/spikard-http/src/testing.rs +171 -0
  33. data/vendor/crates/spikard-http/src/websocket.rs +79 -6
  34. data/vendor/crates/spikard-http/tests/auth_integration.rs +647 -0
  35. data/vendor/crates/spikard-http/tests/common/test_builders.rs +633 -0
  36. data/vendor/crates/spikard-http/tests/di_handler_error_responses.rs +162 -0
  37. data/vendor/crates/spikard-http/tests/middleware_stack_integration.rs +389 -0
  38. data/vendor/crates/spikard-http/tests/request_extraction_full.rs +513 -0
  39. data/vendor/crates/spikard-http/tests/server_auth_middleware_behavior.rs +244 -0
  40. data/vendor/crates/spikard-http/tests/server_configured_router_behavior.rs +200 -0
  41. data/vendor/crates/spikard-http/tests/server_cors_preflight.rs +82 -0
  42. data/vendor/crates/spikard-http/tests/server_handler_wrappers.rs +464 -0
  43. data/vendor/crates/spikard-http/tests/server_method_router_additional_behavior.rs +286 -0
  44. data/vendor/crates/spikard-http/tests/server_method_router_coverage.rs +118 -0
  45. data/vendor/crates/spikard-http/tests/server_middleware_behavior.rs +99 -0
  46. data/vendor/crates/spikard-http/tests/server_middleware_branches.rs +206 -0
  47. data/vendor/crates/spikard-http/tests/server_openapi_jsonrpc_static.rs +281 -0
  48. data/vendor/crates/spikard-http/tests/server_router_behavior.rs +121 -0
  49. data/vendor/crates/spikard-http/tests/sse_full_behavior.rs +584 -0
  50. data/vendor/crates/spikard-http/tests/sse_handler_behavior.rs +130 -0
  51. data/vendor/crates/spikard-http/tests/test_client_requests.rs +167 -0
  52. data/vendor/crates/spikard-http/tests/testing_helpers.rs +87 -0
  53. data/vendor/crates/spikard-http/tests/testing_module_coverage.rs +156 -0
  54. data/vendor/crates/spikard-http/tests/urlencoded_content_type.rs +82 -0
  55. data/vendor/crates/spikard-http/tests/websocket_full_behavior.rs +440 -0
  56. data/vendor/crates/spikard-http/tests/websocket_integration.rs +152 -0
  57. data/vendor/crates/spikard-rb/Cargo.toml +1 -1
  58. data/vendor/crates/spikard-rb/src/gvl.rs +80 -0
  59. data/vendor/crates/spikard-rb/src/handler.rs +12 -9
  60. data/vendor/crates/spikard-rb/src/lib.rs +137 -124
  61. data/vendor/crates/spikard-rb/src/request.rs +342 -0
  62. data/vendor/crates/spikard-rb/src/runtime/server_runner.rs +1 -8
  63. data/vendor/crates/spikard-rb/src/server.rs +1 -8
  64. data/vendor/crates/spikard-rb/src/testing/client.rs +168 -9
  65. data/vendor/crates/spikard-rb/src/websocket.rs +119 -30
  66. data/vendor/crates/spikard-rb-macros/Cargo.toml +14 -0
  67. data/vendor/crates/spikard-rb-macros/src/lib.rs +52 -0
  68. metadata +44 -1
@@ -0,0 +1,3287 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom 0.3.4",
19
+ "once_cell",
20
+ "serde",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloc-no-stdlib"
36
+ version = "2.0.4"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
39
+
40
+ [[package]]
41
+ name = "alloc-stdlib"
42
+ version = "0.2.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "allocator-api2"
51
+ version = "0.2.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
54
+
55
+ [[package]]
56
+ name = "android_system_properties"
57
+ version = "0.1.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
60
+ dependencies = [
61
+ "libc",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.100"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
69
+
70
+ [[package]]
71
+ name = "arbitrary"
72
+ version = "1.4.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
75
+ dependencies = [
76
+ "derive_arbitrary",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "async-compression"
81
+ version = "0.4.36"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37"
84
+ dependencies = [
85
+ "compression-codecs",
86
+ "compression-core",
87
+ "futures-core",
88
+ "pin-project-lite",
89
+ "tokio",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "async-stream"
94
+ version = "0.3.6"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
97
+ dependencies = [
98
+ "async-stream-impl",
99
+ "futures-core",
100
+ "pin-project-lite",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "async-stream-impl"
105
+ version = "0.3.6"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
108
+ dependencies = [
109
+ "proc-macro2",
110
+ "quote",
111
+ "syn",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "async-trait"
116
+ version = "0.1.89"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
119
+ dependencies = [
120
+ "proc-macro2",
121
+ "quote",
122
+ "syn",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "atomic-waker"
127
+ version = "1.1.2"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
130
+
131
+ [[package]]
132
+ name = "autocfg"
133
+ version = "1.5.0"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
136
+
137
+ [[package]]
138
+ name = "axum"
139
+ version = "0.7.9"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
142
+ dependencies = [
143
+ "async-trait",
144
+ "axum-core 0.4.5",
145
+ "bytes",
146
+ "futures-util",
147
+ "http",
148
+ "http-body",
149
+ "http-body-util",
150
+ "hyper",
151
+ "hyper-util",
152
+ "itoa",
153
+ "matchit 0.7.3",
154
+ "memchr",
155
+ "mime",
156
+ "percent-encoding",
157
+ "pin-project-lite",
158
+ "rustversion",
159
+ "serde",
160
+ "serde_json",
161
+ "serde_path_to_error",
162
+ "serde_urlencoded",
163
+ "sync_wrapper",
164
+ "tokio",
165
+ "tower",
166
+ "tower-layer",
167
+ "tower-service",
168
+ "tracing",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "axum"
173
+ version = "0.8.8"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
176
+ dependencies = [
177
+ "axum-core 0.5.6",
178
+ "base64",
179
+ "bytes",
180
+ "form_urlencoded",
181
+ "futures-util",
182
+ "http",
183
+ "http-body",
184
+ "http-body-util",
185
+ "hyper",
186
+ "hyper-util",
187
+ "itoa",
188
+ "matchit 0.8.4",
189
+ "memchr",
190
+ "mime",
191
+ "multer",
192
+ "percent-encoding",
193
+ "pin-project-lite",
194
+ "serde_core",
195
+ "serde_json",
196
+ "serde_path_to_error",
197
+ "serde_urlencoded",
198
+ "sha1",
199
+ "sync_wrapper",
200
+ "tokio",
201
+ "tokio-tungstenite",
202
+ "tower",
203
+ "tower-layer",
204
+ "tower-service",
205
+ "tracing",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "axum-core"
210
+ version = "0.4.5"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
213
+ dependencies = [
214
+ "async-trait",
215
+ "bytes",
216
+ "futures-util",
217
+ "http",
218
+ "http-body",
219
+ "http-body-util",
220
+ "mime",
221
+ "pin-project-lite",
222
+ "rustversion",
223
+ "sync_wrapper",
224
+ "tower-layer",
225
+ "tower-service",
226
+ "tracing",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "axum-core"
231
+ version = "0.5.6"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
234
+ dependencies = [
235
+ "bytes",
236
+ "futures-core",
237
+ "http",
238
+ "http-body",
239
+ "http-body-util",
240
+ "mime",
241
+ "pin-project-lite",
242
+ "sync_wrapper",
243
+ "tower-layer",
244
+ "tower-service",
245
+ "tracing",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "axum-test"
250
+ version = "18.4.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "3290e73c56c5cc4701cdd7d46b9ced1b4bd61c7e9f9c769a9e9e87ff617d75d2"
253
+ dependencies = [
254
+ "anyhow",
255
+ "axum 0.8.8",
256
+ "base64",
257
+ "bytes",
258
+ "bytesize",
259
+ "cookie",
260
+ "expect-json",
261
+ "futures-util",
262
+ "http",
263
+ "http-body-util",
264
+ "hyper",
265
+ "hyper-util",
266
+ "mime",
267
+ "pretty_assertions",
268
+ "reserve-port",
269
+ "rust-multipart-rfc7578_2",
270
+ "serde",
271
+ "serde_json",
272
+ "serde_urlencoded",
273
+ "smallvec",
274
+ "tokio",
275
+ "tokio-tungstenite",
276
+ "tower",
277
+ "url",
278
+ "uuid",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "base64"
283
+ version = "0.22.1"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
286
+
287
+ [[package]]
288
+ name = "bindgen"
289
+ version = "0.69.5"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
292
+ dependencies = [
293
+ "bitflags",
294
+ "cexpr",
295
+ "clang-sys",
296
+ "itertools",
297
+ "lazy_static",
298
+ "lazycell",
299
+ "proc-macro2",
300
+ "quote",
301
+ "regex",
302
+ "rustc-hash 1.1.0",
303
+ "shlex",
304
+ "syn",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "bit-set"
309
+ version = "0.8.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
312
+ dependencies = [
313
+ "bit-vec",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "bit-vec"
318
+ version = "0.8.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
321
+
322
+ [[package]]
323
+ name = "bitflags"
324
+ version = "2.10.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
327
+
328
+ [[package]]
329
+ name = "block-buffer"
330
+ version = "0.10.4"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
333
+ dependencies = [
334
+ "generic-array",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "borrow-or-share"
339
+ version = "0.2.4"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
342
+
343
+ [[package]]
344
+ name = "brotli"
345
+ version = "8.0.2"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
348
+ dependencies = [
349
+ "alloc-no-stdlib",
350
+ "alloc-stdlib",
351
+ "brotli-decompressor",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "brotli-decompressor"
356
+ version = "5.0.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
359
+ dependencies = [
360
+ "alloc-no-stdlib",
361
+ "alloc-stdlib",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "bumpalo"
366
+ version = "3.19.1"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
369
+
370
+ [[package]]
371
+ name = "bytecount"
372
+ version = "0.6.9"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
375
+
376
+ [[package]]
377
+ name = "bytes"
378
+ version = "1.11.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
381
+
382
+ [[package]]
383
+ name = "bytesize"
384
+ version = "2.3.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "6bd91ee7b2422bcb158d90ef4d14f75ef67f340943fc4149891dcce8f8b972a3"
387
+
388
+ [[package]]
389
+ name = "cc"
390
+ version = "1.2.51"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
393
+ dependencies = [
394
+ "find-msvc-tools",
395
+ "shlex",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "cexpr"
400
+ version = "0.6.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
403
+ dependencies = [
404
+ "nom",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "cfg-if"
409
+ version = "1.0.4"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
412
+
413
+ [[package]]
414
+ name = "chrono"
415
+ version = "0.4.42"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
418
+ dependencies = [
419
+ "iana-time-zone",
420
+ "js-sys",
421
+ "num-traits",
422
+ "wasm-bindgen",
423
+ "windows-link",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "clang-sys"
428
+ version = "1.8.1"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
431
+ dependencies = [
432
+ "glob",
433
+ "libc",
434
+ "libloading",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "compression-codecs"
439
+ version = "0.4.35"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2"
442
+ dependencies = [
443
+ "brotli",
444
+ "compression-core",
445
+ "flate2",
446
+ "memchr",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "compression-core"
451
+ version = "0.4.31"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
454
+
455
+ [[package]]
456
+ name = "cookie"
457
+ version = "0.18.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
460
+ dependencies = [
461
+ "time",
462
+ "version_check",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "core-foundation-sys"
467
+ version = "0.8.7"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
470
+
471
+ [[package]]
472
+ name = "cpufeatures"
473
+ version = "0.2.17"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
476
+ dependencies = [
477
+ "libc",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "crc32fast"
482
+ version = "1.5.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
485
+ dependencies = [
486
+ "cfg-if",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "crossbeam-utils"
491
+ version = "0.8.21"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
494
+
495
+ [[package]]
496
+ name = "crypto-common"
497
+ version = "0.1.7"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
500
+ dependencies = [
501
+ "generic-array",
502
+ "typenum",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "dashmap"
507
+ version = "6.1.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
510
+ dependencies = [
511
+ "cfg-if",
512
+ "crossbeam-utils",
513
+ "hashbrown 0.14.5",
514
+ "lock_api",
515
+ "once_cell",
516
+ "parking_lot_core",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "data-encoding"
521
+ version = "2.9.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
524
+
525
+ [[package]]
526
+ name = "deranged"
527
+ version = "0.5.5"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
530
+ dependencies = [
531
+ "powerfmt",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "derive_arbitrary"
536
+ version = "1.4.2"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
539
+ dependencies = [
540
+ "proc-macro2",
541
+ "quote",
542
+ "syn",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "diff"
547
+ version = "0.1.13"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
550
+
551
+ [[package]]
552
+ name = "digest"
553
+ version = "0.10.7"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
556
+ dependencies = [
557
+ "block-buffer",
558
+ "crypto-common",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "displaydoc"
563
+ version = "0.2.5"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
566
+ dependencies = [
567
+ "proc-macro2",
568
+ "quote",
569
+ "syn",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "either"
574
+ version = "1.15.0"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
577
+
578
+ [[package]]
579
+ name = "email_address"
580
+ version = "0.2.9"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
583
+ dependencies = [
584
+ "serde",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "encoding_rs"
589
+ version = "0.8.35"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
592
+ dependencies = [
593
+ "cfg-if",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "equivalent"
598
+ version = "1.0.2"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
601
+
602
+ [[package]]
603
+ name = "erased-serde"
604
+ version = "0.4.9"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
607
+ dependencies = [
608
+ "serde",
609
+ "serde_core",
610
+ "typeid",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "errno"
615
+ version = "0.3.14"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
618
+ dependencies = [
619
+ "libc",
620
+ "windows-sys 0.61.2",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "expect-json"
625
+ version = "1.7.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "422e7906e79941e5ac58c64dfd2da03e6ae3de62227f87606fbbe125d91080f9"
628
+ dependencies = [
629
+ "chrono",
630
+ "email_address",
631
+ "expect-json-macros",
632
+ "num",
633
+ "regex",
634
+ "serde",
635
+ "serde_json",
636
+ "thiserror 2.0.17",
637
+ "typetag",
638
+ "uuid",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "expect-json-macros"
643
+ version = "1.7.1"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "e6b515b7f10f1e61bfd938522e9884509b82060af2016153f5b3d6f44d6da89c"
646
+ dependencies = [
647
+ "proc-macro2",
648
+ "quote",
649
+ "syn",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "fancy-regex"
654
+ version = "0.16.2"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
657
+ dependencies = [
658
+ "bit-set",
659
+ "regex-automata",
660
+ "regex-syntax",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "find-msvc-tools"
665
+ version = "0.1.6"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
668
+
669
+ [[package]]
670
+ name = "flate2"
671
+ version = "1.1.5"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
674
+ dependencies = [
675
+ "crc32fast",
676
+ "miniz_oxide",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "fluent-uri"
681
+ version = "0.4.1"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e"
684
+ dependencies = [
685
+ "borrow-or-share",
686
+ "ref-cast",
687
+ "serde",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "foldhash"
692
+ version = "0.2.0"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
695
+
696
+ [[package]]
697
+ name = "form_urlencoded"
698
+ version = "1.2.2"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
701
+ dependencies = [
702
+ "percent-encoding",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "forwarded-header-value"
707
+ version = "0.1.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9"
710
+ dependencies = [
711
+ "nonempty",
712
+ "thiserror 1.0.69",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "fraction"
717
+ version = "0.15.3"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
720
+ dependencies = [
721
+ "lazy_static",
722
+ "num",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "futures"
727
+ version = "0.3.31"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
730
+ dependencies = [
731
+ "futures-channel",
732
+ "futures-core",
733
+ "futures-executor",
734
+ "futures-io",
735
+ "futures-sink",
736
+ "futures-task",
737
+ "futures-util",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "futures-channel"
742
+ version = "0.3.31"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
745
+ dependencies = [
746
+ "futures-core",
747
+ "futures-sink",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "futures-core"
752
+ version = "0.3.31"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
755
+
756
+ [[package]]
757
+ name = "futures-executor"
758
+ version = "0.3.31"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
761
+ dependencies = [
762
+ "futures-core",
763
+ "futures-task",
764
+ "futures-util",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "futures-io"
769
+ version = "0.3.31"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
772
+
773
+ [[package]]
774
+ name = "futures-macro"
775
+ version = "0.3.31"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
778
+ dependencies = [
779
+ "proc-macro2",
780
+ "quote",
781
+ "syn",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "futures-sink"
786
+ version = "0.3.31"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
789
+
790
+ [[package]]
791
+ name = "futures-task"
792
+ version = "0.3.31"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
795
+
796
+ [[package]]
797
+ name = "futures-timer"
798
+ version = "3.0.3"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
801
+
802
+ [[package]]
803
+ name = "futures-util"
804
+ version = "0.3.31"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
807
+ dependencies = [
808
+ "futures-channel",
809
+ "futures-core",
810
+ "futures-io",
811
+ "futures-macro",
812
+ "futures-sink",
813
+ "futures-task",
814
+ "memchr",
815
+ "pin-project-lite",
816
+ "pin-utils",
817
+ "slab",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "generic-array"
822
+ version = "0.14.7"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
825
+ dependencies = [
826
+ "typenum",
827
+ "version_check",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "getrandom"
832
+ version = "0.2.16"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
835
+ dependencies = [
836
+ "cfg-if",
837
+ "js-sys",
838
+ "libc",
839
+ "wasi",
840
+ "wasm-bindgen",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "getrandom"
845
+ version = "0.3.4"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
848
+ dependencies = [
849
+ "cfg-if",
850
+ "js-sys",
851
+ "libc",
852
+ "r-efi",
853
+ "wasip2",
854
+ "wasm-bindgen",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "glob"
859
+ version = "0.3.3"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
862
+
863
+ [[package]]
864
+ name = "governor"
865
+ version = "0.8.1"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "be93b4ec2e4710b04d9264c0c7350cdd62a8c20e5e4ac732552ebb8f0debe8eb"
868
+ dependencies = [
869
+ "cfg-if",
870
+ "dashmap",
871
+ "futures-sink",
872
+ "futures-timer",
873
+ "futures-util",
874
+ "getrandom 0.3.4",
875
+ "no-std-compat",
876
+ "nonzero_ext",
877
+ "parking_lot",
878
+ "portable-atomic",
879
+ "quanta",
880
+ "rand",
881
+ "smallvec",
882
+ "spinning_top",
883
+ "web-time",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "hashbrown"
888
+ version = "0.14.5"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
891
+
892
+ [[package]]
893
+ name = "hashbrown"
894
+ version = "0.16.1"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
897
+ dependencies = [
898
+ "allocator-api2",
899
+ "equivalent",
900
+ "foldhash",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "http"
905
+ version = "1.4.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
908
+ dependencies = [
909
+ "bytes",
910
+ "itoa",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "http-body"
915
+ version = "1.0.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
918
+ dependencies = [
919
+ "bytes",
920
+ "http",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "http-body-util"
925
+ version = "0.1.3"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
928
+ dependencies = [
929
+ "bytes",
930
+ "futures-core",
931
+ "http",
932
+ "http-body",
933
+ "pin-project-lite",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "http-range-header"
938
+ version = "0.4.2"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
941
+
942
+ [[package]]
943
+ name = "httparse"
944
+ version = "1.10.1"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
947
+
948
+ [[package]]
949
+ name = "httpdate"
950
+ version = "1.0.3"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
953
+
954
+ [[package]]
955
+ name = "hyper"
956
+ version = "1.8.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
959
+ dependencies = [
960
+ "atomic-waker",
961
+ "bytes",
962
+ "futures-channel",
963
+ "futures-core",
964
+ "http",
965
+ "http-body",
966
+ "httparse",
967
+ "httpdate",
968
+ "itoa",
969
+ "pin-project-lite",
970
+ "pin-utils",
971
+ "smallvec",
972
+ "tokio",
973
+ "want",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "hyper-util"
978
+ version = "0.1.19"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
981
+ dependencies = [
982
+ "bytes",
983
+ "futures-channel",
984
+ "futures-core",
985
+ "futures-util",
986
+ "http",
987
+ "http-body",
988
+ "hyper",
989
+ "libc",
990
+ "pin-project-lite",
991
+ "socket2",
992
+ "tokio",
993
+ "tower-service",
994
+ "tracing",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "iana-time-zone"
999
+ version = "0.1.64"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1002
+ dependencies = [
1003
+ "android_system_properties",
1004
+ "core-foundation-sys",
1005
+ "iana-time-zone-haiku",
1006
+ "js-sys",
1007
+ "log",
1008
+ "wasm-bindgen",
1009
+ "windows-core",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "iana-time-zone-haiku"
1014
+ version = "0.1.2"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1017
+ dependencies = [
1018
+ "cc",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "icu_collections"
1023
+ version = "2.1.1"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1026
+ dependencies = [
1027
+ "displaydoc",
1028
+ "potential_utf",
1029
+ "yoke",
1030
+ "zerofrom",
1031
+ "zerovec",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "icu_locale_core"
1036
+ version = "2.1.1"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1039
+ dependencies = [
1040
+ "displaydoc",
1041
+ "litemap",
1042
+ "tinystr",
1043
+ "writeable",
1044
+ "zerovec",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "icu_normalizer"
1049
+ version = "2.1.1"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1052
+ dependencies = [
1053
+ "icu_collections",
1054
+ "icu_normalizer_data",
1055
+ "icu_properties",
1056
+ "icu_provider",
1057
+ "smallvec",
1058
+ "zerovec",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "icu_normalizer_data"
1063
+ version = "2.1.1"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1066
+
1067
+ [[package]]
1068
+ name = "icu_properties"
1069
+ version = "2.1.2"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1072
+ dependencies = [
1073
+ "icu_collections",
1074
+ "icu_locale_core",
1075
+ "icu_properties_data",
1076
+ "icu_provider",
1077
+ "zerotrie",
1078
+ "zerovec",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "icu_properties_data"
1083
+ version = "2.1.2"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1086
+
1087
+ [[package]]
1088
+ name = "icu_provider"
1089
+ version = "2.1.1"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1092
+ dependencies = [
1093
+ "displaydoc",
1094
+ "icu_locale_core",
1095
+ "writeable",
1096
+ "yoke",
1097
+ "zerofrom",
1098
+ "zerotrie",
1099
+ "zerovec",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "idna"
1104
+ version = "1.1.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1107
+ dependencies = [
1108
+ "idna_adapter",
1109
+ "smallvec",
1110
+ "utf8_iter",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "idna_adapter"
1115
+ version = "1.2.1"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1118
+ dependencies = [
1119
+ "icu_normalizer",
1120
+ "icu_properties",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "indexmap"
1125
+ version = "2.12.1"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1128
+ dependencies = [
1129
+ "equivalent",
1130
+ "hashbrown 0.16.1",
1131
+ "serde",
1132
+ "serde_core",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "inventory"
1137
+ version = "0.3.21"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1140
+ dependencies = [
1141
+ "rustversion",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "itertools"
1146
+ version = "0.12.1"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1149
+ dependencies = [
1150
+ "either",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "itoa"
1155
+ version = "1.0.17"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1158
+
1159
+ [[package]]
1160
+ name = "jiff"
1161
+ version = "0.2.17"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "a87d9b8105c23642f50cbbae03d1f75d8422c5cb98ce7ee9271f7ff7505be6b8"
1164
+ dependencies = [
1165
+ "jiff-static",
1166
+ "jiff-tzdb-platform",
1167
+ "log",
1168
+ "portable-atomic",
1169
+ "portable-atomic-util",
1170
+ "serde_core",
1171
+ "windows-sys 0.61.2",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "jiff-static"
1176
+ version = "0.2.17"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "b787bebb543f8969132630c51fd0afab173a86c6abae56ff3b9e5e3e3f9f6e58"
1179
+ dependencies = [
1180
+ "proc-macro2",
1181
+ "quote",
1182
+ "syn",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "jiff-tzdb"
1187
+ version = "0.1.5"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "68971ebff725b9e2ca27a601c5eb38a4c5d64422c4cbab0c535f248087eda5c2"
1190
+
1191
+ [[package]]
1192
+ name = "jiff-tzdb-platform"
1193
+ version = "0.1.3"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1196
+ dependencies = [
1197
+ "jiff-tzdb",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "js-sys"
1202
+ version = "0.3.83"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1205
+ dependencies = [
1206
+ "once_cell",
1207
+ "wasm-bindgen",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "jsonschema"
1212
+ version = "0.37.4"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "73c9ffb2b5c56d58030e1b532d8e8389da94590515f118cf35b5cb68e4764a7e"
1215
+ dependencies = [
1216
+ "ahash",
1217
+ "bytecount",
1218
+ "data-encoding",
1219
+ "email_address",
1220
+ "fancy-regex",
1221
+ "fraction",
1222
+ "getrandom 0.3.4",
1223
+ "idna",
1224
+ "itoa",
1225
+ "num-cmp",
1226
+ "num-traits",
1227
+ "percent-encoding",
1228
+ "referencing",
1229
+ "regex",
1230
+ "regex-syntax",
1231
+ "serde",
1232
+ "serde_json",
1233
+ "unicode-general-category",
1234
+ "uuid-simd",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "jsonwebtoken"
1239
+ version = "9.3.1"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1242
+ dependencies = [
1243
+ "base64",
1244
+ "js-sys",
1245
+ "pem",
1246
+ "ring",
1247
+ "serde",
1248
+ "serde_json",
1249
+ "simple_asn1",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "lazy_static"
1254
+ version = "1.5.0"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1257
+
1258
+ [[package]]
1259
+ name = "lazycell"
1260
+ version = "1.3.0"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1263
+
1264
+ [[package]]
1265
+ name = "libc"
1266
+ version = "0.2.178"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1269
+
1270
+ [[package]]
1271
+ name = "libloading"
1272
+ version = "0.8.9"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1275
+ dependencies = [
1276
+ "cfg-if",
1277
+ "windows-link",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "litemap"
1282
+ version = "0.8.1"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1285
+
1286
+ [[package]]
1287
+ name = "lock_api"
1288
+ version = "0.4.14"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1291
+ dependencies = [
1292
+ "scopeguard",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "log"
1297
+ version = "0.4.29"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1300
+
1301
+ [[package]]
1302
+ name = "lru"
1303
+ version = "0.16.2"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
1306
+ dependencies = [
1307
+ "hashbrown 0.16.1",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "magnus"
1312
+ version = "0.8.2"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1315
+ dependencies = [
1316
+ "magnus-macros",
1317
+ "rb-sys",
1318
+ "rb-sys-env",
1319
+ "seq-macro",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "magnus-macros"
1324
+ version = "0.8.0"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1327
+ dependencies = [
1328
+ "proc-macro2",
1329
+ "quote",
1330
+ "syn",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "matchit"
1335
+ version = "0.7.3"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1338
+
1339
+ [[package]]
1340
+ name = "matchit"
1341
+ version = "0.8.4"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1344
+
1345
+ [[package]]
1346
+ name = "memchr"
1347
+ version = "2.7.6"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1350
+
1351
+ [[package]]
1352
+ name = "mime"
1353
+ version = "0.3.17"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1356
+
1357
+ [[package]]
1358
+ name = "mime_guess"
1359
+ version = "2.0.5"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1362
+ dependencies = [
1363
+ "mime",
1364
+ "unicase",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "minimal-lexical"
1369
+ version = "0.2.1"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1372
+
1373
+ [[package]]
1374
+ name = "miniz_oxide"
1375
+ version = "0.8.9"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1378
+ dependencies = [
1379
+ "adler2",
1380
+ "simd-adler32",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "mio"
1385
+ version = "1.1.1"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1388
+ dependencies = [
1389
+ "libc",
1390
+ "wasi",
1391
+ "windows-sys 0.61.2",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "multer"
1396
+ version = "3.1.0"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
1399
+ dependencies = [
1400
+ "bytes",
1401
+ "encoding_rs",
1402
+ "futures-util",
1403
+ "http",
1404
+ "httparse",
1405
+ "memchr",
1406
+ "mime",
1407
+ "spin",
1408
+ "version_check",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "no-std-compat"
1413
+ version = "0.4.1"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
1416
+
1417
+ [[package]]
1418
+ name = "nom"
1419
+ version = "7.1.3"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1422
+ dependencies = [
1423
+ "memchr",
1424
+ "minimal-lexical",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "nonempty"
1429
+ version = "0.7.0"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7"
1432
+
1433
+ [[package]]
1434
+ name = "nonzero_ext"
1435
+ version = "0.3.0"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
1438
+
1439
+ [[package]]
1440
+ name = "nu-ansi-term"
1441
+ version = "0.50.3"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1444
+ dependencies = [
1445
+ "windows-sys 0.61.2",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "num"
1450
+ version = "0.4.3"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1453
+ dependencies = [
1454
+ "num-bigint",
1455
+ "num-complex",
1456
+ "num-integer",
1457
+ "num-iter",
1458
+ "num-rational",
1459
+ "num-traits",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "num-bigint"
1464
+ version = "0.4.6"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1467
+ dependencies = [
1468
+ "num-integer",
1469
+ "num-traits",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "num-cmp"
1474
+ version = "0.1.0"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
1477
+
1478
+ [[package]]
1479
+ name = "num-complex"
1480
+ version = "0.4.6"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1483
+ dependencies = [
1484
+ "num-traits",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "num-conv"
1489
+ version = "0.1.0"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1492
+
1493
+ [[package]]
1494
+ name = "num-integer"
1495
+ version = "0.1.46"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1498
+ dependencies = [
1499
+ "num-traits",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "num-iter"
1504
+ version = "0.1.45"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1507
+ dependencies = [
1508
+ "autocfg",
1509
+ "num-integer",
1510
+ "num-traits",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "num-rational"
1515
+ version = "0.4.2"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1518
+ dependencies = [
1519
+ "num-bigint",
1520
+ "num-integer",
1521
+ "num-traits",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "num-traits"
1526
+ version = "0.2.19"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1529
+ dependencies = [
1530
+ "autocfg",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "once_cell"
1535
+ version = "1.21.3"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1538
+
1539
+ [[package]]
1540
+ name = "outref"
1541
+ version = "0.5.2"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1544
+
1545
+ [[package]]
1546
+ name = "parking_lot"
1547
+ version = "0.12.5"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1550
+ dependencies = [
1551
+ "lock_api",
1552
+ "parking_lot_core",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "parking_lot_core"
1557
+ version = "0.9.12"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1560
+ dependencies = [
1561
+ "cfg-if",
1562
+ "libc",
1563
+ "redox_syscall",
1564
+ "smallvec",
1565
+ "windows-link",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "paste"
1570
+ version = "1.0.15"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1573
+
1574
+ [[package]]
1575
+ name = "pem"
1576
+ version = "3.0.6"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1579
+ dependencies = [
1580
+ "base64",
1581
+ "serde_core",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "percent-encoding"
1586
+ version = "2.3.2"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1589
+
1590
+ [[package]]
1591
+ name = "pin-project"
1592
+ version = "1.1.10"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1595
+ dependencies = [
1596
+ "pin-project-internal",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "pin-project-internal"
1601
+ version = "1.1.10"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1604
+ dependencies = [
1605
+ "proc-macro2",
1606
+ "quote",
1607
+ "syn",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "pin-project-lite"
1612
+ version = "0.2.16"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1615
+
1616
+ [[package]]
1617
+ name = "pin-utils"
1618
+ version = "0.1.0"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1621
+
1622
+ [[package]]
1623
+ name = "portable-atomic"
1624
+ version = "1.13.0"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
1627
+
1628
+ [[package]]
1629
+ name = "portable-atomic-util"
1630
+ version = "0.2.4"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1633
+ dependencies = [
1634
+ "portable-atomic",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "potential_utf"
1639
+ version = "0.1.4"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1642
+ dependencies = [
1643
+ "zerovec",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "powerfmt"
1648
+ version = "0.2.0"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1651
+
1652
+ [[package]]
1653
+ name = "ppv-lite86"
1654
+ version = "0.2.21"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1657
+ dependencies = [
1658
+ "zerocopy",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "pretty_assertions"
1663
+ version = "1.4.1"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1666
+ dependencies = [
1667
+ "diff",
1668
+ "yansi",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "proc-macro2"
1673
+ version = "1.0.104"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
1676
+ dependencies = [
1677
+ "unicode-ident",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "quanta"
1682
+ version = "0.12.6"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
1685
+ dependencies = [
1686
+ "crossbeam-utils",
1687
+ "libc",
1688
+ "once_cell",
1689
+ "raw-cpuid",
1690
+ "wasi",
1691
+ "web-sys",
1692
+ "winapi",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "quote"
1697
+ version = "1.0.42"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1700
+ dependencies = [
1701
+ "proc-macro2",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "r-efi"
1706
+ version = "5.3.0"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1709
+
1710
+ [[package]]
1711
+ name = "rand"
1712
+ version = "0.9.2"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1715
+ dependencies = [
1716
+ "rand_chacha",
1717
+ "rand_core",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "rand_chacha"
1722
+ version = "0.9.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1725
+ dependencies = [
1726
+ "ppv-lite86",
1727
+ "rand_core",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "rand_core"
1732
+ version = "0.9.3"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1735
+ dependencies = [
1736
+ "getrandom 0.3.4",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "raw-cpuid"
1741
+ version = "11.6.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
1744
+ dependencies = [
1745
+ "bitflags",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "rb-sys"
1750
+ version = "0.9.123"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
1753
+ dependencies = [
1754
+ "rb-sys-build",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "rb-sys-build"
1759
+ version = "0.9.123"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
1762
+ dependencies = [
1763
+ "bindgen",
1764
+ "lazy_static",
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "regex",
1768
+ "shell-words",
1769
+ "syn",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "rb-sys-env"
1774
+ version = "0.2.2"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
1777
+
1778
+ [[package]]
1779
+ name = "redox_syscall"
1780
+ version = "0.5.18"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1783
+ dependencies = [
1784
+ "bitflags",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "ref-cast"
1789
+ version = "1.0.25"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1792
+ dependencies = [
1793
+ "ref-cast-impl",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "ref-cast-impl"
1798
+ version = "1.0.25"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1801
+ dependencies = [
1802
+ "proc-macro2",
1803
+ "quote",
1804
+ "syn",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "referencing"
1809
+ version = "0.37.4"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "4283168a506f0dcbdce31c9f9cce3129c924da4c6bca46e46707fcb746d2d70c"
1812
+ dependencies = [
1813
+ "ahash",
1814
+ "fluent-uri",
1815
+ "getrandom 0.3.4",
1816
+ "hashbrown 0.16.1",
1817
+ "parking_lot",
1818
+ "percent-encoding",
1819
+ "serde_json",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "regex"
1824
+ version = "1.12.2"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1827
+ dependencies = [
1828
+ "aho-corasick",
1829
+ "memchr",
1830
+ "regex-automata",
1831
+ "regex-syntax",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "regex-automata"
1836
+ version = "0.4.13"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1839
+ dependencies = [
1840
+ "aho-corasick",
1841
+ "memchr",
1842
+ "regex-syntax",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "regex-syntax"
1847
+ version = "0.8.8"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1850
+
1851
+ [[package]]
1852
+ name = "reserve-port"
1853
+ version = "2.3.0"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "21918d6644020c6f6ef1993242989bf6d4952d2e025617744f184c02df51c356"
1856
+ dependencies = [
1857
+ "thiserror 2.0.17",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "ring"
1862
+ version = "0.17.14"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1865
+ dependencies = [
1866
+ "cc",
1867
+ "cfg-if",
1868
+ "getrandom 0.2.16",
1869
+ "libc",
1870
+ "untrusted",
1871
+ "windows-sys 0.52.0",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "rust-embed"
1876
+ version = "8.9.0"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca"
1879
+ dependencies = [
1880
+ "rust-embed-impl",
1881
+ "rust-embed-utils",
1882
+ "walkdir",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "rust-embed-impl"
1887
+ version = "8.9.0"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2"
1890
+ dependencies = [
1891
+ "proc-macro2",
1892
+ "quote",
1893
+ "rust-embed-utils",
1894
+ "syn",
1895
+ "walkdir",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "rust-embed-utils"
1900
+ version = "8.9.0"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475"
1903
+ dependencies = [
1904
+ "sha2",
1905
+ "walkdir",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "rust-multipart-rfc7578_2"
1910
+ version = "0.8.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "c839d037155ebc06a571e305af66ff9fd9063a6e662447051737e1ac75beea41"
1913
+ dependencies = [
1914
+ "bytes",
1915
+ "futures-core",
1916
+ "futures-util",
1917
+ "http",
1918
+ "mime",
1919
+ "rand",
1920
+ "thiserror 2.0.17",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "rustc-hash"
1925
+ version = "1.1.0"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1928
+
1929
+ [[package]]
1930
+ name = "rustc-hash"
1931
+ version = "2.1.1"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1934
+
1935
+ [[package]]
1936
+ name = "rustversion"
1937
+ version = "1.0.22"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1940
+
1941
+ [[package]]
1942
+ name = "ryu"
1943
+ version = "1.0.22"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
1946
+
1947
+ [[package]]
1948
+ name = "same-file"
1949
+ version = "1.0.6"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1952
+ dependencies = [
1953
+ "winapi-util",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "scopeguard"
1958
+ version = "1.2.0"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1961
+
1962
+ [[package]]
1963
+ name = "seq-macro"
1964
+ version = "0.3.6"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1967
+
1968
+ [[package]]
1969
+ name = "serde"
1970
+ version = "1.0.228"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1973
+ dependencies = [
1974
+ "serde_core",
1975
+ "serde_derive",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "serde_core"
1980
+ version = "1.0.228"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1983
+ dependencies = [
1984
+ "serde_derive",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "serde_derive"
1989
+ version = "1.0.228"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1992
+ dependencies = [
1993
+ "proc-macro2",
1994
+ "quote",
1995
+ "syn",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "serde_json"
2000
+ version = "1.0.148"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
2003
+ dependencies = [
2004
+ "itoa",
2005
+ "memchr",
2006
+ "serde",
2007
+ "serde_core",
2008
+ "zmij",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "serde_path_to_error"
2013
+ version = "0.1.20"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2016
+ dependencies = [
2017
+ "itoa",
2018
+ "serde",
2019
+ "serde_core",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "serde_qs"
2024
+ version = "0.15.0"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "f3faaf9e727533a19351a43cc5a8de957372163c7d35cc48c90b75cdda13c352"
2027
+ dependencies = [
2028
+ "percent-encoding",
2029
+ "serde",
2030
+ "thiserror 2.0.17",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "serde_urlencoded"
2035
+ version = "0.7.1"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2038
+ dependencies = [
2039
+ "form_urlencoded",
2040
+ "itoa",
2041
+ "ryu",
2042
+ "serde",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "sha1"
2047
+ version = "0.10.6"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2050
+ dependencies = [
2051
+ "cfg-if",
2052
+ "cpufeatures",
2053
+ "digest",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "sha2"
2058
+ version = "0.10.9"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2061
+ dependencies = [
2062
+ "cfg-if",
2063
+ "cpufeatures",
2064
+ "digest",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "sharded-slab"
2069
+ version = "0.1.7"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2072
+ dependencies = [
2073
+ "lazy_static",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "shell-words"
2078
+ version = "1.1.1"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2081
+
2082
+ [[package]]
2083
+ name = "shlex"
2084
+ version = "1.3.0"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2087
+
2088
+ [[package]]
2089
+ name = "signal-hook-registry"
2090
+ version = "1.4.8"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2093
+ dependencies = [
2094
+ "errno",
2095
+ "libc",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "simd-adler32"
2100
+ version = "0.3.8"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2103
+
2104
+ [[package]]
2105
+ name = "simple_asn1"
2106
+ version = "0.6.3"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
2109
+ dependencies = [
2110
+ "num-bigint",
2111
+ "num-traits",
2112
+ "thiserror 2.0.17",
2113
+ "time",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "slab"
2118
+ version = "0.4.11"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2121
+
2122
+ [[package]]
2123
+ name = "smallvec"
2124
+ version = "1.15.1"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2127
+
2128
+ [[package]]
2129
+ name = "socket2"
2130
+ version = "0.6.1"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2133
+ dependencies = [
2134
+ "libc",
2135
+ "windows-sys 0.60.2",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "spikard-bindings-shared"
2140
+ version = "0.7.0"
2141
+ dependencies = [
2142
+ "axum 0.8.8",
2143
+ "http",
2144
+ "http-body-util",
2145
+ "serde",
2146
+ "serde_json",
2147
+ "spikard-core",
2148
+ "spikard-http",
2149
+ "thiserror 2.0.17",
2150
+ "tokio",
2151
+ "tracing",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "spikard-core"
2156
+ version = "0.7.0"
2157
+ dependencies = [
2158
+ "anyhow",
2159
+ "base64",
2160
+ "brotli",
2161
+ "bytes",
2162
+ "flate2",
2163
+ "http",
2164
+ "indexmap",
2165
+ "jiff",
2166
+ "jsonschema",
2167
+ "regex",
2168
+ "serde",
2169
+ "serde_json",
2170
+ "serde_qs",
2171
+ "thiserror 2.0.17",
2172
+ "tokio",
2173
+ "tracing",
2174
+ "url",
2175
+ "uuid",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "spikard-http"
2180
+ version = "0.7.0"
2181
+ dependencies = [
2182
+ "anyhow",
2183
+ "axum 0.8.8",
2184
+ "axum-test",
2185
+ "base64",
2186
+ "brotli",
2187
+ "bytes",
2188
+ "cookie",
2189
+ "flate2",
2190
+ "futures",
2191
+ "futures-util",
2192
+ "http-body",
2193
+ "http-body-util",
2194
+ "jiff",
2195
+ "jsonschema",
2196
+ "jsonwebtoken",
2197
+ "lazy_static",
2198
+ "lru",
2199
+ "mime",
2200
+ "regex",
2201
+ "rustc-hash 2.1.1",
2202
+ "serde",
2203
+ "serde_json",
2204
+ "serde_qs",
2205
+ "spikard-core",
2206
+ "tokio",
2207
+ "tokio-util",
2208
+ "tower",
2209
+ "tower-http",
2210
+ "tower_governor",
2211
+ "tracing",
2212
+ "tracing-subscriber",
2213
+ "url",
2214
+ "urlencoding",
2215
+ "utoipa",
2216
+ "utoipa-redoc",
2217
+ "utoipa-swagger-ui",
2218
+ "uuid",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "spikard-rb"
2223
+ version = "0.7.0"
2224
+ dependencies = [
2225
+ "async-stream",
2226
+ "axum 0.8.8",
2227
+ "axum-test",
2228
+ "bytes",
2229
+ "cookie",
2230
+ "http",
2231
+ "magnus",
2232
+ "once_cell",
2233
+ "paste",
2234
+ "rb-sys",
2235
+ "rb-sys-build",
2236
+ "serde",
2237
+ "serde_json",
2238
+ "serde_qs",
2239
+ "spikard-bindings-shared",
2240
+ "spikard-core",
2241
+ "spikard-http",
2242
+ "spikard-rb-macros",
2243
+ "tokio",
2244
+ "tracing",
2245
+ "tungstenite",
2246
+ "url",
2247
+ "urlencoding",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "spikard-rb-ext"
2252
+ version = "0.7.0"
2253
+ dependencies = [
2254
+ "magnus",
2255
+ "spikard-rb",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "spikard-rb-macros"
2260
+ version = "0.7.0"
2261
+ dependencies = [
2262
+ "proc-macro2",
2263
+ "quote",
2264
+ "syn",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "spin"
2269
+ version = "0.9.8"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2272
+
2273
+ [[package]]
2274
+ name = "spinning_top"
2275
+ version = "0.3.0"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
2278
+ dependencies = [
2279
+ "lock_api",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "stable_deref_trait"
2284
+ version = "1.2.1"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2287
+
2288
+ [[package]]
2289
+ name = "syn"
2290
+ version = "2.0.111"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2293
+ dependencies = [
2294
+ "proc-macro2",
2295
+ "quote",
2296
+ "unicode-ident",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "sync_wrapper"
2301
+ version = "1.0.2"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2304
+
2305
+ [[package]]
2306
+ name = "synstructure"
2307
+ version = "0.13.2"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2310
+ dependencies = [
2311
+ "proc-macro2",
2312
+ "quote",
2313
+ "syn",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "thiserror"
2318
+ version = "1.0.69"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2321
+ dependencies = [
2322
+ "thiserror-impl 1.0.69",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "thiserror"
2327
+ version = "2.0.17"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2330
+ dependencies = [
2331
+ "thiserror-impl 2.0.17",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "thiserror-impl"
2336
+ version = "1.0.69"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2339
+ dependencies = [
2340
+ "proc-macro2",
2341
+ "quote",
2342
+ "syn",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "thiserror-impl"
2347
+ version = "2.0.17"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2350
+ dependencies = [
2351
+ "proc-macro2",
2352
+ "quote",
2353
+ "syn",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "thread_local"
2358
+ version = "1.1.9"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2361
+ dependencies = [
2362
+ "cfg-if",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "time"
2367
+ version = "0.3.44"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
2370
+ dependencies = [
2371
+ "deranged",
2372
+ "itoa",
2373
+ "num-conv",
2374
+ "powerfmt",
2375
+ "serde",
2376
+ "time-core",
2377
+ "time-macros",
2378
+ ]
2379
+
2380
+ [[package]]
2381
+ name = "time-core"
2382
+ version = "0.1.6"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
2385
+
2386
+ [[package]]
2387
+ name = "time-macros"
2388
+ version = "0.2.24"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
2391
+ dependencies = [
2392
+ "num-conv",
2393
+ "time-core",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "tinystr"
2398
+ version = "0.8.2"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2401
+ dependencies = [
2402
+ "displaydoc",
2403
+ "zerovec",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "tokio"
2408
+ version = "1.48.0"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2411
+ dependencies = [
2412
+ "bytes",
2413
+ "libc",
2414
+ "mio",
2415
+ "parking_lot",
2416
+ "pin-project-lite",
2417
+ "signal-hook-registry",
2418
+ "socket2",
2419
+ "tokio-macros",
2420
+ "windows-sys 0.61.2",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "tokio-macros"
2425
+ version = "2.6.0"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2428
+ dependencies = [
2429
+ "proc-macro2",
2430
+ "quote",
2431
+ "syn",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "tokio-tungstenite"
2436
+ version = "0.28.0"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
2439
+ dependencies = [
2440
+ "futures-util",
2441
+ "log",
2442
+ "tokio",
2443
+ "tungstenite",
2444
+ ]
2445
+
2446
+ [[package]]
2447
+ name = "tokio-util"
2448
+ version = "0.7.17"
2449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2450
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2451
+ dependencies = [
2452
+ "bytes",
2453
+ "futures-core",
2454
+ "futures-sink",
2455
+ "pin-project-lite",
2456
+ "tokio",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "tower"
2461
+ version = "0.5.2"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2464
+ dependencies = [
2465
+ "futures-core",
2466
+ "futures-util",
2467
+ "pin-project-lite",
2468
+ "sync_wrapper",
2469
+ "tokio",
2470
+ "tower-layer",
2471
+ "tower-service",
2472
+ "tracing",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "tower-http"
2477
+ version = "0.6.8"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2480
+ dependencies = [
2481
+ "async-compression",
2482
+ "bitflags",
2483
+ "bytes",
2484
+ "futures-core",
2485
+ "futures-util",
2486
+ "http",
2487
+ "http-body",
2488
+ "http-body-util",
2489
+ "http-range-header",
2490
+ "httpdate",
2491
+ "mime",
2492
+ "mime_guess",
2493
+ "percent-encoding",
2494
+ "pin-project-lite",
2495
+ "tokio",
2496
+ "tokio-util",
2497
+ "tower-layer",
2498
+ "tower-service",
2499
+ "tracing",
2500
+ "uuid",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "tower-layer"
2505
+ version = "0.3.3"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2508
+
2509
+ [[package]]
2510
+ name = "tower-service"
2511
+ version = "0.3.3"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2514
+
2515
+ [[package]]
2516
+ name = "tower_governor"
2517
+ version = "0.5.0"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "fe9ce4d13ec8b7228fa4003e31ea6cfe27b113c9ba51d323aeb4bbe394ef06fe"
2520
+ dependencies = [
2521
+ "axum 0.7.9",
2522
+ "forwarded-header-value",
2523
+ "governor",
2524
+ "http",
2525
+ "pin-project",
2526
+ "thiserror 2.0.17",
2527
+ "tower",
2528
+ "tracing",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "tracing"
2533
+ version = "0.1.44"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2536
+ dependencies = [
2537
+ "log",
2538
+ "pin-project-lite",
2539
+ "tracing-attributes",
2540
+ "tracing-core",
2541
+ ]
2542
+
2543
+ [[package]]
2544
+ name = "tracing-attributes"
2545
+ version = "0.1.31"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2548
+ dependencies = [
2549
+ "proc-macro2",
2550
+ "quote",
2551
+ "syn",
2552
+ ]
2553
+
2554
+ [[package]]
2555
+ name = "tracing-core"
2556
+ version = "0.1.36"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2559
+ dependencies = [
2560
+ "once_cell",
2561
+ "valuable",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "tracing-log"
2566
+ version = "0.2.0"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2569
+ dependencies = [
2570
+ "log",
2571
+ "once_cell",
2572
+ "tracing-core",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "tracing-subscriber"
2577
+ version = "0.3.22"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2580
+ dependencies = [
2581
+ "nu-ansi-term",
2582
+ "sharded-slab",
2583
+ "smallvec",
2584
+ "thread_local",
2585
+ "tracing-core",
2586
+ "tracing-log",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "try-lock"
2591
+ version = "0.2.5"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2594
+
2595
+ [[package]]
2596
+ name = "tungstenite"
2597
+ version = "0.28.0"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
2600
+ dependencies = [
2601
+ "bytes",
2602
+ "data-encoding",
2603
+ "http",
2604
+ "httparse",
2605
+ "log",
2606
+ "rand",
2607
+ "sha1",
2608
+ "thiserror 2.0.17",
2609
+ "utf-8",
2610
+ ]
2611
+
2612
+ [[package]]
2613
+ name = "typeid"
2614
+ version = "1.0.3"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
2617
+
2618
+ [[package]]
2619
+ name = "typenum"
2620
+ version = "1.19.0"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2623
+
2624
+ [[package]]
2625
+ name = "typetag"
2626
+ version = "0.2.21"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf"
2629
+ dependencies = [
2630
+ "erased-serde",
2631
+ "inventory",
2632
+ "once_cell",
2633
+ "serde",
2634
+ "typetag-impl",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "typetag-impl"
2639
+ version = "0.2.21"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
2642
+ dependencies = [
2643
+ "proc-macro2",
2644
+ "quote",
2645
+ "syn",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "unicase"
2650
+ version = "2.8.1"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2653
+
2654
+ [[package]]
2655
+ name = "unicode-general-category"
2656
+ version = "1.1.0"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
2659
+
2660
+ [[package]]
2661
+ name = "unicode-ident"
2662
+ version = "1.0.22"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2665
+
2666
+ [[package]]
2667
+ name = "untrusted"
2668
+ version = "0.9.0"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2671
+
2672
+ [[package]]
2673
+ name = "url"
2674
+ version = "2.5.7"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2677
+ dependencies = [
2678
+ "form_urlencoded",
2679
+ "idna",
2680
+ "percent-encoding",
2681
+ "serde",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "urlencoding"
2686
+ version = "2.1.3"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2689
+
2690
+ [[package]]
2691
+ name = "utf-8"
2692
+ version = "0.7.6"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2695
+
2696
+ [[package]]
2697
+ name = "utf8_iter"
2698
+ version = "1.0.4"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2701
+
2702
+ [[package]]
2703
+ name = "utoipa"
2704
+ version = "5.4.0"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993"
2707
+ dependencies = [
2708
+ "indexmap",
2709
+ "serde",
2710
+ "serde_json",
2711
+ "utoipa-gen",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "utoipa-gen"
2716
+ version = "5.4.0"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b"
2719
+ dependencies = [
2720
+ "proc-macro2",
2721
+ "quote",
2722
+ "syn",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "utoipa-redoc"
2727
+ version = "5.0.0"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "9218304bba9a0ea5e92085b0a427ccce5fd56eaaf6436d245b7578e6a95787e1"
2730
+ dependencies = [
2731
+ "axum 0.7.9",
2732
+ "serde",
2733
+ "serde_json",
2734
+ "utoipa",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "utoipa-swagger-ui"
2739
+ version = "8.1.0"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "db4b5ac679cc6dfc5ea3f2823b0291c777750ffd5e13b21137e0f7ac0e8f9617"
2742
+ dependencies = [
2743
+ "axum 0.7.9",
2744
+ "base64",
2745
+ "mime_guess",
2746
+ "regex",
2747
+ "rust-embed",
2748
+ "serde",
2749
+ "serde_json",
2750
+ "url",
2751
+ "utoipa",
2752
+ "zip",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "uuid"
2757
+ version = "1.19.0"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
2760
+ dependencies = [
2761
+ "getrandom 0.3.4",
2762
+ "js-sys",
2763
+ "wasm-bindgen",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "uuid-simd"
2768
+ version = "0.8.0"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
2771
+ dependencies = [
2772
+ "outref",
2773
+ "vsimd",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "valuable"
2778
+ version = "0.1.1"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2781
+
2782
+ [[package]]
2783
+ name = "version_check"
2784
+ version = "0.9.5"
2785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2786
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2787
+
2788
+ [[package]]
2789
+ name = "vsimd"
2790
+ version = "0.8.0"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2793
+
2794
+ [[package]]
2795
+ name = "walkdir"
2796
+ version = "2.5.0"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2799
+ dependencies = [
2800
+ "same-file",
2801
+ "winapi-util",
2802
+ ]
2803
+
2804
+ [[package]]
2805
+ name = "want"
2806
+ version = "0.3.1"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2809
+ dependencies = [
2810
+ "try-lock",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "wasi"
2815
+ version = "0.11.1+wasi-snapshot-preview1"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2818
+
2819
+ [[package]]
2820
+ name = "wasip2"
2821
+ version = "1.0.1+wasi-0.2.4"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2824
+ dependencies = [
2825
+ "wit-bindgen",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "wasm-bindgen"
2830
+ version = "0.2.106"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
2833
+ dependencies = [
2834
+ "cfg-if",
2835
+ "once_cell",
2836
+ "rustversion",
2837
+ "wasm-bindgen-macro",
2838
+ "wasm-bindgen-shared",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "wasm-bindgen-macro"
2843
+ version = "0.2.106"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
2846
+ dependencies = [
2847
+ "quote",
2848
+ "wasm-bindgen-macro-support",
2849
+ ]
2850
+
2851
+ [[package]]
2852
+ name = "wasm-bindgen-macro-support"
2853
+ version = "0.2.106"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
2856
+ dependencies = [
2857
+ "bumpalo",
2858
+ "proc-macro2",
2859
+ "quote",
2860
+ "syn",
2861
+ "wasm-bindgen-shared",
2862
+ ]
2863
+
2864
+ [[package]]
2865
+ name = "wasm-bindgen-shared"
2866
+ version = "0.2.106"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
2869
+ dependencies = [
2870
+ "unicode-ident",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "web-sys"
2875
+ version = "0.3.83"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2878
+ dependencies = [
2879
+ "js-sys",
2880
+ "wasm-bindgen",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "web-time"
2885
+ version = "1.1.0"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2888
+ dependencies = [
2889
+ "js-sys",
2890
+ "wasm-bindgen",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "winapi"
2895
+ version = "0.3.9"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2898
+ dependencies = [
2899
+ "winapi-i686-pc-windows-gnu",
2900
+ "winapi-x86_64-pc-windows-gnu",
2901
+ ]
2902
+
2903
+ [[package]]
2904
+ name = "winapi-i686-pc-windows-gnu"
2905
+ version = "0.4.0"
2906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2907
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2908
+
2909
+ [[package]]
2910
+ name = "winapi-util"
2911
+ version = "0.1.11"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2914
+ dependencies = [
2915
+ "windows-sys 0.61.2",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "winapi-x86_64-pc-windows-gnu"
2920
+ version = "0.4.0"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2923
+
2924
+ [[package]]
2925
+ name = "windows-core"
2926
+ version = "0.62.2"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2929
+ dependencies = [
2930
+ "windows-implement",
2931
+ "windows-interface",
2932
+ "windows-link",
2933
+ "windows-result",
2934
+ "windows-strings",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "windows-implement"
2939
+ version = "0.60.2"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2942
+ dependencies = [
2943
+ "proc-macro2",
2944
+ "quote",
2945
+ "syn",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "windows-interface"
2950
+ version = "0.59.3"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2953
+ dependencies = [
2954
+ "proc-macro2",
2955
+ "quote",
2956
+ "syn",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "windows-link"
2961
+ version = "0.2.1"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2964
+
2965
+ [[package]]
2966
+ name = "windows-result"
2967
+ version = "0.4.1"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2970
+ dependencies = [
2971
+ "windows-link",
2972
+ ]
2973
+
2974
+ [[package]]
2975
+ name = "windows-strings"
2976
+ version = "0.5.1"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2979
+ dependencies = [
2980
+ "windows-link",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "windows-sys"
2985
+ version = "0.52.0"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2988
+ dependencies = [
2989
+ "windows-targets 0.52.6",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "windows-sys"
2994
+ version = "0.60.2"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2997
+ dependencies = [
2998
+ "windows-targets 0.53.5",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "windows-sys"
3003
+ version = "0.61.2"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3006
+ dependencies = [
3007
+ "windows-link",
3008
+ ]
3009
+
3010
+ [[package]]
3011
+ name = "windows-targets"
3012
+ version = "0.52.6"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3015
+ dependencies = [
3016
+ "windows_aarch64_gnullvm 0.52.6",
3017
+ "windows_aarch64_msvc 0.52.6",
3018
+ "windows_i686_gnu 0.52.6",
3019
+ "windows_i686_gnullvm 0.52.6",
3020
+ "windows_i686_msvc 0.52.6",
3021
+ "windows_x86_64_gnu 0.52.6",
3022
+ "windows_x86_64_gnullvm 0.52.6",
3023
+ "windows_x86_64_msvc 0.52.6",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "windows-targets"
3028
+ version = "0.53.5"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3031
+ dependencies = [
3032
+ "windows-link",
3033
+ "windows_aarch64_gnullvm 0.53.1",
3034
+ "windows_aarch64_msvc 0.53.1",
3035
+ "windows_i686_gnu 0.53.1",
3036
+ "windows_i686_gnullvm 0.53.1",
3037
+ "windows_i686_msvc 0.53.1",
3038
+ "windows_x86_64_gnu 0.53.1",
3039
+ "windows_x86_64_gnullvm 0.53.1",
3040
+ "windows_x86_64_msvc 0.53.1",
3041
+ ]
3042
+
3043
+ [[package]]
3044
+ name = "windows_aarch64_gnullvm"
3045
+ version = "0.52.6"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3048
+
3049
+ [[package]]
3050
+ name = "windows_aarch64_gnullvm"
3051
+ version = "0.53.1"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3054
+
3055
+ [[package]]
3056
+ name = "windows_aarch64_msvc"
3057
+ version = "0.52.6"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3060
+
3061
+ [[package]]
3062
+ name = "windows_aarch64_msvc"
3063
+ version = "0.53.1"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3066
+
3067
+ [[package]]
3068
+ name = "windows_i686_gnu"
3069
+ version = "0.52.6"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3072
+
3073
+ [[package]]
3074
+ name = "windows_i686_gnu"
3075
+ version = "0.53.1"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3078
+
3079
+ [[package]]
3080
+ name = "windows_i686_gnullvm"
3081
+ version = "0.52.6"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3084
+
3085
+ [[package]]
3086
+ name = "windows_i686_gnullvm"
3087
+ version = "0.53.1"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3090
+
3091
+ [[package]]
3092
+ name = "windows_i686_msvc"
3093
+ version = "0.52.6"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3096
+
3097
+ [[package]]
3098
+ name = "windows_i686_msvc"
3099
+ version = "0.53.1"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3102
+
3103
+ [[package]]
3104
+ name = "windows_x86_64_gnu"
3105
+ version = "0.52.6"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3108
+
3109
+ [[package]]
3110
+ name = "windows_x86_64_gnu"
3111
+ version = "0.53.1"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3114
+
3115
+ [[package]]
3116
+ name = "windows_x86_64_gnullvm"
3117
+ version = "0.52.6"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3120
+
3121
+ [[package]]
3122
+ name = "windows_x86_64_gnullvm"
3123
+ version = "0.53.1"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3126
+
3127
+ [[package]]
3128
+ name = "windows_x86_64_msvc"
3129
+ version = "0.52.6"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3132
+
3133
+ [[package]]
3134
+ name = "windows_x86_64_msvc"
3135
+ version = "0.53.1"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3138
+
3139
+ [[package]]
3140
+ name = "wit-bindgen"
3141
+ version = "0.46.0"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3144
+
3145
+ [[package]]
3146
+ name = "writeable"
3147
+ version = "0.6.2"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3150
+
3151
+ [[package]]
3152
+ name = "yansi"
3153
+ version = "1.0.1"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3156
+
3157
+ [[package]]
3158
+ name = "yoke"
3159
+ version = "0.8.1"
3160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3161
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3162
+ dependencies = [
3163
+ "stable_deref_trait",
3164
+ "yoke-derive",
3165
+ "zerofrom",
3166
+ ]
3167
+
3168
+ [[package]]
3169
+ name = "yoke-derive"
3170
+ version = "0.8.1"
3171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3172
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3173
+ dependencies = [
3174
+ "proc-macro2",
3175
+ "quote",
3176
+ "syn",
3177
+ "synstructure",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "zerocopy"
3182
+ version = "0.8.31"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3185
+ dependencies = [
3186
+ "zerocopy-derive",
3187
+ ]
3188
+
3189
+ [[package]]
3190
+ name = "zerocopy-derive"
3191
+ version = "0.8.31"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3194
+ dependencies = [
3195
+ "proc-macro2",
3196
+ "quote",
3197
+ "syn",
3198
+ ]
3199
+
3200
+ [[package]]
3201
+ name = "zerofrom"
3202
+ version = "0.1.6"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3205
+ dependencies = [
3206
+ "zerofrom-derive",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "zerofrom-derive"
3211
+ version = "0.1.6"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3214
+ dependencies = [
3215
+ "proc-macro2",
3216
+ "quote",
3217
+ "syn",
3218
+ "synstructure",
3219
+ ]
3220
+
3221
+ [[package]]
3222
+ name = "zerotrie"
3223
+ version = "0.2.3"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3226
+ dependencies = [
3227
+ "displaydoc",
3228
+ "yoke",
3229
+ "zerofrom",
3230
+ ]
3231
+
3232
+ [[package]]
3233
+ name = "zerovec"
3234
+ version = "0.11.5"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3237
+ dependencies = [
3238
+ "yoke",
3239
+ "zerofrom",
3240
+ "zerovec-derive",
3241
+ ]
3242
+
3243
+ [[package]]
3244
+ name = "zerovec-derive"
3245
+ version = "0.11.2"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3248
+ dependencies = [
3249
+ "proc-macro2",
3250
+ "quote",
3251
+ "syn",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "zip"
3256
+ version = "2.4.2"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
3259
+ dependencies = [
3260
+ "arbitrary",
3261
+ "crc32fast",
3262
+ "crossbeam-utils",
3263
+ "displaydoc",
3264
+ "flate2",
3265
+ "indexmap",
3266
+ "memchr",
3267
+ "thiserror 2.0.17",
3268
+ "zopfli",
3269
+ ]
3270
+
3271
+ [[package]]
3272
+ name = "zmij"
3273
+ version = "1.0.1"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "f5858cd3a46fff31e77adea2935e357e3a2538d870741617bfb7c943e218fee6"
3276
+
3277
+ [[package]]
3278
+ name = "zopfli"
3279
+ version = "0.8.3"
3280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3281
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
3282
+ dependencies = [
3283
+ "bumpalo",
3284
+ "crc32fast",
3285
+ "log",
3286
+ "simd-adler32",
3287
+ ]