prosody 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.cargo/config.toml +2 -0
  3. data/.release-please-manifest.json +3 -0
  4. data/.rspec +3 -0
  5. data/.ruby-version +1 -0
  6. data/.standard.yml +9 -0
  7. data/.taplo.toml +6 -0
  8. data/ARCHITECTURE.md +591 -0
  9. data/CHANGELOG.md +92 -0
  10. data/Cargo.lock +3513 -0
  11. data/Cargo.toml +77 -0
  12. data/LICENSE +21 -0
  13. data/Makefile +36 -0
  14. data/README.md +946 -0
  15. data/Rakefile +26 -0
  16. data/ext/prosody/Cargo.toml +38 -0
  17. data/ext/prosody/extconf.rb +6 -0
  18. data/ext/prosody/src/admin.rs +171 -0
  19. data/ext/prosody/src/bridge/callback.rs +60 -0
  20. data/ext/prosody/src/bridge/mod.rs +332 -0
  21. data/ext/prosody/src/client/config.rs +819 -0
  22. data/ext/prosody/src/client/mod.rs +379 -0
  23. data/ext/prosody/src/gvl.rs +149 -0
  24. data/ext/prosody/src/handler/context.rs +436 -0
  25. data/ext/prosody/src/handler/message.rs +144 -0
  26. data/ext/prosody/src/handler/mod.rs +338 -0
  27. data/ext/prosody/src/handler/trigger.rs +93 -0
  28. data/ext/prosody/src/lib.rs +82 -0
  29. data/ext/prosody/src/logging.rs +353 -0
  30. data/ext/prosody/src/scheduler/cancellation.rs +67 -0
  31. data/ext/prosody/src/scheduler/handle.rs +50 -0
  32. data/ext/prosody/src/scheduler/mod.rs +169 -0
  33. data/ext/prosody/src/scheduler/processor.rs +166 -0
  34. data/ext/prosody/src/scheduler/result.rs +197 -0
  35. data/ext/prosody/src/tracing_util.rs +56 -0
  36. data/ext/prosody/src/util.rs +219 -0
  37. data/lib/prosody/configuration.rb +333 -0
  38. data/lib/prosody/handler.rb +177 -0
  39. data/lib/prosody/native_stubs.rb +417 -0
  40. data/lib/prosody/processor.rb +321 -0
  41. data/lib/prosody/sentry.rb +36 -0
  42. data/lib/prosody/version.rb +10 -0
  43. data/lib/prosody.rb +42 -0
  44. data/release-please-config.json +10 -0
  45. data/sig/configuration.rbs +252 -0
  46. data/sig/handler.rbs +79 -0
  47. data/sig/processor.rbs +100 -0
  48. data/sig/prosody.rbs +171 -0
  49. data/sig/version.rbs +9 -0
  50. metadata +193 -0
data/Cargo.lock ADDED
@@ -0,0 +1,3513 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "allocator-api2"
29
+ version = "0.2.21"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
32
+
33
+ [[package]]
34
+ name = "android_system_properties"
35
+ version = "0.1.5"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
38
+ dependencies = [
39
+ "libc",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "anyhow"
44
+ version = "1.0.102"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
47
+
48
+ [[package]]
49
+ name = "arc-swap"
50
+ version = "1.9.1"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
53
+ dependencies = [
54
+ "rustversion",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "async-stream"
59
+ version = "0.3.6"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
62
+ dependencies = [
63
+ "async-stream-impl",
64
+ "futures-core",
65
+ "pin-project-lite",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "async-stream-impl"
70
+ version = "0.3.6"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
73
+ dependencies = [
74
+ "proc-macro2",
75
+ "quote",
76
+ "syn",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "async-trait"
81
+ version = "0.1.89"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
84
+ dependencies = [
85
+ "proc-macro2",
86
+ "quote",
87
+ "syn",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "atomic-take"
92
+ version = "1.1.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "a8ab6b55fe97976e46f91ddbed8d147d966475dc29b2032757ba47e02376fbc3"
95
+
96
+ [[package]]
97
+ name = "atomic-waker"
98
+ version = "1.1.2"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
101
+
102
+ [[package]]
103
+ name = "autocfg"
104
+ version = "1.5.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
107
+
108
+ [[package]]
109
+ name = "axum"
110
+ version = "0.8.9"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
113
+ dependencies = [
114
+ "axum-core",
115
+ "bytes",
116
+ "form_urlencoded",
117
+ "futures-util",
118
+ "http",
119
+ "http-body",
120
+ "http-body-util",
121
+ "hyper",
122
+ "hyper-util",
123
+ "itoa",
124
+ "matchit",
125
+ "memchr",
126
+ "mime",
127
+ "percent-encoding",
128
+ "pin-project-lite",
129
+ "serde_core",
130
+ "serde_json",
131
+ "serde_path_to_error",
132
+ "serde_urlencoded",
133
+ "sync_wrapper",
134
+ "tokio",
135
+ "tower",
136
+ "tower-layer",
137
+ "tower-service",
138
+ "tracing",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "axum-core"
143
+ version = "0.5.6"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
146
+ dependencies = [
147
+ "bytes",
148
+ "futures-core",
149
+ "http",
150
+ "http-body",
151
+ "http-body-util",
152
+ "mime",
153
+ "pin-project-lite",
154
+ "sync_wrapper",
155
+ "tower-layer",
156
+ "tower-service",
157
+ "tracing",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "axum-extra"
162
+ version = "0.12.6"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "be44683b41ccb9ab2d23a5230015c9c3c55be97a25e4428366de8873103f7970"
165
+ dependencies = [
166
+ "axum",
167
+ "axum-core",
168
+ "bytes",
169
+ "futures-core",
170
+ "futures-util",
171
+ "http",
172
+ "http-body",
173
+ "http-body-util",
174
+ "mime",
175
+ "pin-project-lite",
176
+ "rustversion",
177
+ "tower-layer",
178
+ "tower-service",
179
+ "tracing",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "base16ct"
184
+ version = "1.0.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
187
+
188
+ [[package]]
189
+ name = "base64"
190
+ version = "0.22.1"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
193
+
194
+ [[package]]
195
+ name = "bindgen"
196
+ version = "0.72.1"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
199
+ dependencies = [
200
+ "bitflags",
201
+ "cexpr",
202
+ "clang-sys",
203
+ "itertools 0.13.0",
204
+ "proc-macro2",
205
+ "quote",
206
+ "regex",
207
+ "rustc-hash",
208
+ "shlex",
209
+ "syn",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "bit-set"
214
+ version = "0.8.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
217
+ dependencies = [
218
+ "bit-vec 0.8.0",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "bit-set"
223
+ version = "0.9.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "34ddef2995421ab6a5c779542c81ee77c115206f4ad9d5a8e05f4ff49716a3dd"
226
+ dependencies = [
227
+ "bit-vec 0.9.1",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "bit-vec"
232
+ version = "0.8.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
235
+
236
+ [[package]]
237
+ name = "bit-vec"
238
+ version = "0.9.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
241
+ dependencies = [
242
+ "serde",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "bitflags"
247
+ version = "2.11.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
250
+
251
+ [[package]]
252
+ name = "block-buffer"
253
+ version = "0.10.4"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
256
+ dependencies = [
257
+ "generic-array",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "block-buffer"
262
+ version = "0.12.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
265
+ dependencies = [
266
+ "hybrid-array",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "bstr"
271
+ version = "1.12.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
274
+ dependencies = [
275
+ "memchr",
276
+ "serde",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "bumpalo"
281
+ version = "3.20.2"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
284
+
285
+ [[package]]
286
+ name = "byteorder"
287
+ version = "1.5.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
290
+
291
+ [[package]]
292
+ name = "bytes"
293
+ version = "1.11.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
296
+
297
+ [[package]]
298
+ name = "cc"
299
+ version = "1.2.60"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
302
+ dependencies = [
303
+ "find-msvc-tools",
304
+ "shlex",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "cexpr"
309
+ version = "0.6.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
312
+ dependencies = [
313
+ "nom",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "cfg-if"
318
+ version = "1.0.4"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
321
+
322
+ [[package]]
323
+ name = "chacha20"
324
+ version = "0.10.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
327
+ dependencies = [
328
+ "cfg-if",
329
+ "cpufeatures 0.3.0",
330
+ "rand_core 0.10.1",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "chrono"
335
+ version = "0.4.44"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
338
+ dependencies = [
339
+ "iana-time-zone",
340
+ "js-sys",
341
+ "num-traits",
342
+ "wasm-bindgen",
343
+ "windows-link",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "clang-sys"
348
+ version = "1.8.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
351
+ dependencies = [
352
+ "glob",
353
+ "libc",
354
+ "libloading",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "cmake"
359
+ version = "0.1.58"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
362
+ dependencies = [
363
+ "cc",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "const-hex"
368
+ version = "1.18.1"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b"
371
+ dependencies = [
372
+ "cfg-if",
373
+ "cpufeatures 0.2.17",
374
+ "proptest",
375
+ "serde_core",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "const-oid"
380
+ version = "0.10.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
383
+
384
+ [[package]]
385
+ name = "core-foundation-sys"
386
+ version = "0.8.7"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
389
+
390
+ [[package]]
391
+ name = "cpufeatures"
392
+ version = "0.2.17"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
395
+ dependencies = [
396
+ "libc",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "cpufeatures"
401
+ version = "0.3.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
404
+ dependencies = [
405
+ "libc",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "crossbeam-utils"
410
+ version = "0.8.21"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
413
+
414
+ [[package]]
415
+ name = "crypto-common"
416
+ version = "0.1.7"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
419
+ dependencies = [
420
+ "generic-array",
421
+ "typenum",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "crypto-common"
426
+ version = "0.2.1"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
429
+ dependencies = [
430
+ "hybrid-array",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "darling"
435
+ version = "0.20.11"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
438
+ dependencies = [
439
+ "darling_core",
440
+ "darling_macro",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "darling_core"
445
+ version = "0.20.11"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
448
+ dependencies = [
449
+ "fnv",
450
+ "ident_case",
451
+ "proc-macro2",
452
+ "quote",
453
+ "strsim",
454
+ "syn",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "darling_macro"
459
+ version = "0.20.11"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
462
+ dependencies = [
463
+ "darling_core",
464
+ "quote",
465
+ "syn",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "dashmap"
470
+ version = "6.1.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
473
+ dependencies = [
474
+ "cfg-if",
475
+ "crossbeam-utils",
476
+ "hashbrown 0.14.5",
477
+ "lock_api",
478
+ "once_cell",
479
+ "parking_lot_core",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "derive_builder"
484
+ version = "0.20.2"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
487
+ dependencies = [
488
+ "derive_builder_macro",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "derive_builder_core"
493
+ version = "0.20.2"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
496
+ dependencies = [
497
+ "darling",
498
+ "proc-macro2",
499
+ "quote",
500
+ "syn",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "derive_builder_macro"
505
+ version = "0.20.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
508
+ dependencies = [
509
+ "derive_builder_core",
510
+ "syn",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "digest"
515
+ version = "0.10.7"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
518
+ dependencies = [
519
+ "block-buffer 0.10.4",
520
+ "crypto-common 0.1.7",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "digest"
525
+ version = "0.11.2"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
528
+ dependencies = [
529
+ "block-buffer 0.12.0",
530
+ "const-oid",
531
+ "crypto-common 0.2.1",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "displaydoc"
536
+ version = "0.2.5"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
539
+ dependencies = [
540
+ "proc-macro2",
541
+ "quote",
542
+ "syn",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "dyn-clone"
547
+ version = "1.0.20"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
550
+
551
+ [[package]]
552
+ name = "educe"
553
+ version = "0.6.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417"
556
+ dependencies = [
557
+ "enum-ordinalize",
558
+ "proc-macro2",
559
+ "quote",
560
+ "syn",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "either"
565
+ version = "1.15.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
568
+
569
+ [[package]]
570
+ name = "enum-ordinalize"
571
+ version = "4.3.2"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0"
574
+ dependencies = [
575
+ "enum-ordinalize-derive",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "enum-ordinalize-derive"
580
+ version = "4.3.2"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631"
583
+ dependencies = [
584
+ "proc-macro2",
585
+ "quote",
586
+ "syn",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "equivalent"
591
+ version = "1.0.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
594
+
595
+ [[package]]
596
+ name = "erased-serde"
597
+ version = "0.4.10"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
600
+ dependencies = [
601
+ "serde",
602
+ "serde_core",
603
+ "typeid",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "find-msvc-tools"
608
+ version = "0.1.9"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
611
+
612
+ [[package]]
613
+ name = "fixedstr"
614
+ version = "0.5.10"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "75a7e79cc11f1195d9e07bd11509e1d75b51e1f48ddff52f54a25815b4abbde3"
617
+
618
+ [[package]]
619
+ name = "float-cmp"
620
+ version = "0.10.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
623
+ dependencies = [
624
+ "num-traits",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "fnv"
629
+ version = "1.0.7"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
632
+
633
+ [[package]]
634
+ name = "foldhash"
635
+ version = "0.1.5"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
638
+
639
+ [[package]]
640
+ name = "foldhash"
641
+ version = "0.2.0"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
644
+
645
+ [[package]]
646
+ name = "form_urlencoded"
647
+ version = "1.2.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
650
+ dependencies = [
651
+ "percent-encoding",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "futures"
656
+ version = "0.3.32"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
659
+ dependencies = [
660
+ "futures-channel",
661
+ "futures-core",
662
+ "futures-executor",
663
+ "futures-io",
664
+ "futures-sink",
665
+ "futures-task",
666
+ "futures-util",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "futures-channel"
671
+ version = "0.3.32"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
674
+ dependencies = [
675
+ "futures-core",
676
+ "futures-sink",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "futures-core"
681
+ version = "0.3.32"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
684
+
685
+ [[package]]
686
+ name = "futures-executor"
687
+ version = "0.3.32"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
690
+ dependencies = [
691
+ "futures-core",
692
+ "futures-task",
693
+ "futures-util",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "futures-io"
698
+ version = "0.3.32"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
701
+
702
+ [[package]]
703
+ name = "futures-macro"
704
+ version = "0.3.32"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
707
+ dependencies = [
708
+ "proc-macro2",
709
+ "quote",
710
+ "syn",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "futures-sink"
715
+ version = "0.3.32"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
718
+
719
+ [[package]]
720
+ name = "futures-task"
721
+ version = "0.3.32"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
724
+
725
+ [[package]]
726
+ name = "futures-util"
727
+ version = "0.3.32"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
730
+ dependencies = [
731
+ "futures-channel",
732
+ "futures-core",
733
+ "futures-io",
734
+ "futures-macro",
735
+ "futures-sink",
736
+ "futures-task",
737
+ "memchr",
738
+ "pin-project-lite",
739
+ "slab",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "gcollections"
744
+ version = "1.6.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "59a367c4b0823b6e5ef4d39b8d7e63a16dc2f330fd8064ce53b615e8dd78accb"
747
+ dependencies = [
748
+ "bit-set 0.9.1",
749
+ "num-integer",
750
+ "num-traits",
751
+ "trilean",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "generic-array"
756
+ version = "0.14.7"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
759
+ dependencies = [
760
+ "typenum",
761
+ "version_check",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "getrandom"
766
+ version = "0.3.4"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
769
+ dependencies = [
770
+ "cfg-if",
771
+ "libc",
772
+ "r-efi 5.3.0",
773
+ "wasip2",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "getrandom"
778
+ version = "0.4.2"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
781
+ dependencies = [
782
+ "cfg-if",
783
+ "libc",
784
+ "r-efi 6.0.0",
785
+ "rand_core 0.10.1",
786
+ "wasip2",
787
+ "wasip3",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "glob"
792
+ version = "0.3.3"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
795
+
796
+ [[package]]
797
+ name = "globset"
798
+ version = "0.4.18"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
801
+ dependencies = [
802
+ "aho-corasick",
803
+ "bstr",
804
+ "log",
805
+ "regex-automata",
806
+ "regex-syntax",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "h2"
811
+ version = "0.4.13"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
814
+ dependencies = [
815
+ "atomic-waker",
816
+ "bytes",
817
+ "fnv",
818
+ "futures-core",
819
+ "futures-sink",
820
+ "http",
821
+ "indexmap",
822
+ "slab",
823
+ "tokio",
824
+ "tokio-util",
825
+ "tracing",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "halfbrown"
830
+ version = "0.4.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
833
+ dependencies = [
834
+ "hashbrown 0.16.1",
835
+ "serde",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "hashbrown"
840
+ version = "0.14.5"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
843
+
844
+ [[package]]
845
+ name = "hashbrown"
846
+ version = "0.15.5"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
849
+ dependencies = [
850
+ "allocator-api2",
851
+ "equivalent",
852
+ "foldhash 0.1.5",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "hashbrown"
857
+ version = "0.16.1"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
860
+ dependencies = [
861
+ "allocator-api2",
862
+ "equivalent",
863
+ "foldhash 0.2.0",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "hashbrown"
868
+ version = "0.17.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
871
+
872
+ [[package]]
873
+ name = "heck"
874
+ version = "0.5.0"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
877
+
878
+ [[package]]
879
+ name = "http"
880
+ version = "1.4.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
883
+ dependencies = [
884
+ "bytes",
885
+ "itoa",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "http-body"
890
+ version = "1.0.1"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
893
+ dependencies = [
894
+ "bytes",
895
+ "http",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "http-body-util"
900
+ version = "0.1.3"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
903
+ dependencies = [
904
+ "bytes",
905
+ "futures-core",
906
+ "http",
907
+ "http-body",
908
+ "pin-project-lite",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "httparse"
913
+ version = "1.10.1"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
916
+
917
+ [[package]]
918
+ name = "httpdate"
919
+ version = "1.0.3"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
922
+
923
+ [[package]]
924
+ name = "humantime"
925
+ version = "2.3.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
928
+
929
+ [[package]]
930
+ name = "hybrid-array"
931
+ version = "0.4.10"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
934
+ dependencies = [
935
+ "typenum",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "hyper"
940
+ version = "1.9.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
943
+ dependencies = [
944
+ "atomic-waker",
945
+ "bytes",
946
+ "futures-channel",
947
+ "futures-core",
948
+ "h2",
949
+ "http",
950
+ "http-body",
951
+ "httparse",
952
+ "httpdate",
953
+ "itoa",
954
+ "pin-project-lite",
955
+ "smallvec",
956
+ "tokio",
957
+ "want",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "hyper-timeout"
962
+ version = "0.5.2"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
965
+ dependencies = [
966
+ "hyper",
967
+ "hyper-util",
968
+ "pin-project-lite",
969
+ "tokio",
970
+ "tower-service",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "hyper-util"
975
+ version = "0.1.20"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
978
+ dependencies = [
979
+ "base64",
980
+ "bytes",
981
+ "futures-channel",
982
+ "futures-util",
983
+ "http",
984
+ "http-body",
985
+ "hyper",
986
+ "ipnet",
987
+ "libc",
988
+ "percent-encoding",
989
+ "pin-project-lite",
990
+ "socket2 0.6.3",
991
+ "tokio",
992
+ "tower-service",
993
+ "tracing",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "iana-time-zone"
998
+ version = "0.1.65"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1001
+ dependencies = [
1002
+ "android_system_properties",
1003
+ "core-foundation-sys",
1004
+ "iana-time-zone-haiku",
1005
+ "js-sys",
1006
+ "log",
1007
+ "wasm-bindgen",
1008
+ "windows-core",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "iana-time-zone-haiku"
1013
+ version = "0.1.2"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1016
+ dependencies = [
1017
+ "cc",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "icu_collections"
1022
+ version = "2.2.0"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1025
+ dependencies = [
1026
+ "displaydoc",
1027
+ "potential_utf",
1028
+ "utf8_iter",
1029
+ "yoke",
1030
+ "zerofrom",
1031
+ "zerovec",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "icu_locale_core"
1036
+ version = "2.2.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1039
+ dependencies = [
1040
+ "displaydoc",
1041
+ "litemap",
1042
+ "tinystr",
1043
+ "writeable",
1044
+ "zerovec",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "icu_normalizer"
1049
+ version = "2.2.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
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.2.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1066
+
1067
+ [[package]]
1068
+ name = "icu_properties"
1069
+ version = "2.2.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
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.2.0"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1086
+
1087
+ [[package]]
1088
+ name = "icu_provider"
1089
+ version = "2.2.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1092
+ dependencies = [
1093
+ "displaydoc",
1094
+ "icu_locale_core",
1095
+ "writeable",
1096
+ "yoke",
1097
+ "zerofrom",
1098
+ "zerotrie",
1099
+ "zerovec",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "id-arena"
1104
+ version = "2.3.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1107
+
1108
+ [[package]]
1109
+ name = "ident_case"
1110
+ version = "1.0.1"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1113
+
1114
+ [[package]]
1115
+ name = "idna"
1116
+ version = "1.1.0"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1119
+ dependencies = [
1120
+ "idna_adapter",
1121
+ "smallvec",
1122
+ "utf8_iter",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "idna_adapter"
1127
+ version = "1.2.1"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1130
+ dependencies = [
1131
+ "icu_normalizer",
1132
+ "icu_properties",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "indexmap"
1137
+ version = "2.14.0"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1140
+ dependencies = [
1141
+ "equivalent",
1142
+ "hashbrown 0.17.0",
1143
+ "serde",
1144
+ "serde_core",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "internment"
1149
+ version = "0.8.6"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "636d4b0f6a39fd684effe2a73f5310df16a3fa7954c26d36833e98f44d1977a2"
1152
+ dependencies = [
1153
+ "hashbrown 0.15.5",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "intervallum"
1158
+ version = "1.4.4"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "412d970960179c81fd2ae4be0459dee697fb7d01bdcb343ec18199ae2aa7e481"
1161
+ dependencies = [
1162
+ "bit-set 0.8.0",
1163
+ "gcollections",
1164
+ "num-integer",
1165
+ "num-traits",
1166
+ "serde",
1167
+ "trilean",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "ipnet"
1172
+ version = "2.12.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1175
+
1176
+ [[package]]
1177
+ name = "iri-string"
1178
+ version = "0.7.12"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
1181
+ dependencies = [
1182
+ "memchr",
1183
+ "serde",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "itertools"
1188
+ version = "0.13.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1191
+ dependencies = [
1192
+ "either",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "itertools"
1197
+ version = "0.14.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1200
+ dependencies = [
1201
+ "either",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "itoa"
1206
+ version = "1.0.18"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1209
+
1210
+ [[package]]
1211
+ name = "js-sys"
1212
+ version = "0.3.95"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
1215
+ dependencies = [
1216
+ "cfg-if",
1217
+ "futures-util",
1218
+ "once_cell",
1219
+ "wasm-bindgen",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "lazy_static"
1224
+ version = "1.5.0"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1227
+
1228
+ [[package]]
1229
+ name = "leb128fmt"
1230
+ version = "0.1.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1233
+
1234
+ [[package]]
1235
+ name = "libc"
1236
+ version = "0.2.185"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
1239
+
1240
+ [[package]]
1241
+ name = "libloading"
1242
+ version = "0.8.9"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1245
+ dependencies = [
1246
+ "cfg-if",
1247
+ "windows-link",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "libredox"
1252
+ version = "0.1.16"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
1255
+ dependencies = [
1256
+ "libc",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "libz-sys"
1261
+ version = "1.1.28"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
1264
+ dependencies = [
1265
+ "cc",
1266
+ "libc",
1267
+ "pkg-config",
1268
+ "vcpkg",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "litemap"
1273
+ version = "0.8.2"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1276
+
1277
+ [[package]]
1278
+ name = "lock_api"
1279
+ version = "0.4.14"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1282
+ dependencies = [
1283
+ "scopeguard",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "log"
1288
+ version = "0.4.29"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1291
+
1292
+ [[package]]
1293
+ name = "lz4_flex"
1294
+ version = "0.11.6"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
1297
+ dependencies = [
1298
+ "twox-hash",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "magnus"
1303
+ version = "0.8.2"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1306
+ dependencies = [
1307
+ "magnus-macros",
1308
+ "rb-sys",
1309
+ "rb-sys-env",
1310
+ "seq-macro",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "magnus-macros"
1315
+ version = "0.8.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1318
+ dependencies = [
1319
+ "proc-macro2",
1320
+ "quote",
1321
+ "syn",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "matchers"
1326
+ version = "0.2.0"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1329
+ dependencies = [
1330
+ "regex-automata",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "matchit"
1335
+ version = "0.8.4"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1338
+
1339
+ [[package]]
1340
+ name = "memchr"
1341
+ version = "2.8.0"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1344
+
1345
+ [[package]]
1346
+ name = "mime"
1347
+ version = "0.3.17"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1350
+
1351
+ [[package]]
1352
+ name = "minimal-lexical"
1353
+ version = "0.2.1"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1356
+
1357
+ [[package]]
1358
+ name = "mio"
1359
+ version = "1.2.0"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1362
+ dependencies = [
1363
+ "libc",
1364
+ "wasi 0.11.1+wasi-snapshot-preview1",
1365
+ "windows-sys 0.61.2",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "nohash-hasher"
1370
+ version = "0.2.0"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1373
+
1374
+ [[package]]
1375
+ name = "nom"
1376
+ version = "7.1.3"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1379
+ dependencies = [
1380
+ "memchr",
1381
+ "minimal-lexical",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "nu-ansi-term"
1386
+ version = "0.50.3"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1389
+ dependencies = [
1390
+ "windows-sys 0.61.2",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "num-integer"
1395
+ version = "0.1.46"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1398
+ dependencies = [
1399
+ "num-traits",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "num-traits"
1404
+ version = "0.2.19"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1407
+ dependencies = [
1408
+ "autocfg",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "num_enum"
1413
+ version = "0.7.6"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1416
+ dependencies = [
1417
+ "num_enum_derive",
1418
+ "rustversion",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "num_enum_derive"
1423
+ version = "0.7.6"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1426
+ dependencies = [
1427
+ "proc-macro-crate",
1428
+ "proc-macro2",
1429
+ "quote",
1430
+ "syn",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "objc2-core-foundation"
1435
+ version = "0.3.2"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1438
+ dependencies = [
1439
+ "bitflags",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "objc2-system-configuration"
1444
+ version = "0.3.2"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
1447
+ dependencies = [
1448
+ "objc2-core-foundation",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "once_cell"
1453
+ version = "1.21.4"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1456
+
1457
+ [[package]]
1458
+ name = "opentelemetry"
1459
+ version = "0.31.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
1462
+ dependencies = [
1463
+ "futures-core",
1464
+ "futures-sink",
1465
+ "js-sys",
1466
+ "pin-project-lite",
1467
+ "thiserror",
1468
+ "tracing",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "opentelemetry-http"
1473
+ version = "0.31.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
1476
+ dependencies = [
1477
+ "async-trait",
1478
+ "bytes",
1479
+ "http",
1480
+ "opentelemetry",
1481
+ "reqwest",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "opentelemetry-otlp"
1486
+ version = "0.31.1"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f"
1489
+ dependencies = [
1490
+ "http",
1491
+ "opentelemetry",
1492
+ "opentelemetry-http",
1493
+ "opentelemetry-proto",
1494
+ "opentelemetry_sdk",
1495
+ "prost",
1496
+ "reqwest",
1497
+ "serde_json",
1498
+ "thiserror",
1499
+ "tokio",
1500
+ "tonic",
1501
+ "tracing",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "opentelemetry-proto"
1506
+ version = "0.31.0"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
1509
+ dependencies = [
1510
+ "base64",
1511
+ "const-hex",
1512
+ "opentelemetry",
1513
+ "opentelemetry_sdk",
1514
+ "prost",
1515
+ "serde",
1516
+ "serde_json",
1517
+ "tonic",
1518
+ "tonic-prost",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "opentelemetry_sdk"
1523
+ version = "0.31.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
1526
+ dependencies = [
1527
+ "futures-channel",
1528
+ "futures-executor",
1529
+ "futures-util",
1530
+ "opentelemetry",
1531
+ "percent-encoding",
1532
+ "rand 0.9.4",
1533
+ "thiserror",
1534
+ "tokio",
1535
+ "tokio-stream",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "parking_lot"
1540
+ version = "0.12.5"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1543
+ dependencies = [
1544
+ "lock_api",
1545
+ "parking_lot_core",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "parking_lot_core"
1550
+ version = "0.9.12"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1553
+ dependencies = [
1554
+ "cfg-if",
1555
+ "libc",
1556
+ "redox_syscall",
1557
+ "smallvec",
1558
+ "windows-link",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "paste"
1563
+ version = "1.0.15"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1566
+
1567
+ [[package]]
1568
+ name = "percent-encoding"
1569
+ version = "2.3.2"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1572
+
1573
+ [[package]]
1574
+ name = "pin-project"
1575
+ version = "1.1.11"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1578
+ dependencies = [
1579
+ "pin-project-internal",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "pin-project-internal"
1584
+ version = "1.1.11"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1587
+ dependencies = [
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "syn",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "pin-project-lite"
1595
+ version = "0.2.17"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1598
+
1599
+ [[package]]
1600
+ name = "pkg-config"
1601
+ version = "0.3.33"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1604
+
1605
+ [[package]]
1606
+ name = "portable-atomic"
1607
+ version = "1.13.1"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1610
+
1611
+ [[package]]
1612
+ name = "potential_utf"
1613
+ version = "0.1.5"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1616
+ dependencies = [
1617
+ "zerovec",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "ppv-lite86"
1622
+ version = "0.2.21"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1625
+ dependencies = [
1626
+ "zerocopy",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "prettyplease"
1631
+ version = "0.2.37"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1634
+ dependencies = [
1635
+ "proc-macro2",
1636
+ "syn",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "proc-macro-crate"
1641
+ version = "3.5.0"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1644
+ dependencies = [
1645
+ "toml_edit",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "proc-macro-error-attr2"
1650
+ version = "2.0.0"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1653
+ dependencies = [
1654
+ "proc-macro2",
1655
+ "quote",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "proc-macro-error2"
1660
+ version = "2.0.1"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1663
+ dependencies = [
1664
+ "proc-macro-error-attr2",
1665
+ "proc-macro2",
1666
+ "quote",
1667
+ "syn",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "proc-macro2"
1672
+ version = "1.0.106"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1675
+ dependencies = [
1676
+ "unicode-ident",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "proptest"
1681
+ version = "1.11.0"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1684
+ dependencies = [
1685
+ "bitflags",
1686
+ "num-traits",
1687
+ "rand 0.9.4",
1688
+ "rand_chacha",
1689
+ "rand_xorshift",
1690
+ "regex-syntax",
1691
+ "unarray",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "prosody"
1696
+ version = "0.1.0"
1697
+ dependencies = [
1698
+ "atomic-take",
1699
+ "bumpalo",
1700
+ "educe",
1701
+ "futures",
1702
+ "magnus",
1703
+ "opentelemetry",
1704
+ "prosody 0.1.1",
1705
+ "rb-sys",
1706
+ "serde",
1707
+ "serde-untagged",
1708
+ "serde_magnus",
1709
+ "thiserror",
1710
+ "tikv-jemallocator",
1711
+ "tokio",
1712
+ "tokio-stream",
1713
+ "tracing",
1714
+ "tracing-opentelemetry",
1715
+ "tracing-subscriber",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "prosody"
1720
+ version = "0.1.1"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "cf07bd61886febe163f11b58a99e1d02d5b9ea56b1bb43af63e3c94251e5123b"
1723
+ dependencies = [
1724
+ "ahash",
1725
+ "aho-corasick",
1726
+ "arc-swap",
1727
+ "async-stream",
1728
+ "async-trait",
1729
+ "axum",
1730
+ "axum-extra",
1731
+ "base16ct",
1732
+ "bytes",
1733
+ "chrono",
1734
+ "crossbeam-utils",
1735
+ "derive_builder",
1736
+ "dyn-clone",
1737
+ "educe",
1738
+ "fixedstr",
1739
+ "futures",
1740
+ "humantime",
1741
+ "internment",
1742
+ "intervallum",
1743
+ "nohash-hasher",
1744
+ "opentelemetry",
1745
+ "opentelemetry-otlp",
1746
+ "opentelemetry_sdk",
1747
+ "parking_lot",
1748
+ "paste",
1749
+ "pin-project",
1750
+ "portable-atomic",
1751
+ "quanta",
1752
+ "quick_cache",
1753
+ "rand 0.10.1",
1754
+ "rdkafka",
1755
+ "rust-embed",
1756
+ "scc",
1757
+ "scylla",
1758
+ "serde",
1759
+ "serde_json",
1760
+ "sha2 0.11.0",
1761
+ "simd-json",
1762
+ "smallvec",
1763
+ "strum",
1764
+ "thiserror",
1765
+ "tokio",
1766
+ "tokio-stream",
1767
+ "tokio-util",
1768
+ "tracing",
1769
+ "tracing-opentelemetry",
1770
+ "tracing-subscriber",
1771
+ "uuid",
1772
+ "validator",
1773
+ "whoami",
1774
+ "xxhash-rust",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "prost"
1779
+ version = "0.14.3"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
1782
+ dependencies = [
1783
+ "bytes",
1784
+ "prost-derive",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "prost-derive"
1789
+ version = "0.14.3"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
1792
+ dependencies = [
1793
+ "anyhow",
1794
+ "itertools 0.14.0",
1795
+ "proc-macro2",
1796
+ "quote",
1797
+ "syn",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "quanta"
1802
+ version = "0.12.6"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
1805
+ dependencies = [
1806
+ "crossbeam-utils",
1807
+ "libc",
1808
+ "once_cell",
1809
+ "raw-cpuid",
1810
+ "wasi 0.11.1+wasi-snapshot-preview1",
1811
+ "web-sys",
1812
+ "winapi",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "quick_cache"
1817
+ version = "0.6.21"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "5a70b1b8b47e31d0498ecbc3c5470bb931399a8bfed1fd79d1717a61ce7f96e3"
1820
+ dependencies = [
1821
+ "ahash",
1822
+ "equivalent",
1823
+ "hashbrown 0.16.1",
1824
+ "parking_lot",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "quote"
1829
+ version = "1.0.45"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1832
+ dependencies = [
1833
+ "proc-macro2",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "r-efi"
1838
+ version = "5.3.0"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1841
+
1842
+ [[package]]
1843
+ name = "r-efi"
1844
+ version = "6.0.0"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1847
+
1848
+ [[package]]
1849
+ name = "rand"
1850
+ version = "0.9.4"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1853
+ dependencies = [
1854
+ "rand_chacha",
1855
+ "rand_core 0.9.5",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "rand"
1860
+ version = "0.10.1"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
1863
+ dependencies = [
1864
+ "chacha20",
1865
+ "getrandom 0.4.2",
1866
+ "rand_core 0.10.1",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "rand_chacha"
1871
+ version = "0.9.0"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1874
+ dependencies = [
1875
+ "ppv-lite86",
1876
+ "rand_core 0.9.5",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "rand_core"
1881
+ version = "0.9.5"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1884
+ dependencies = [
1885
+ "getrandom 0.3.4",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "rand_core"
1890
+ version = "0.10.1"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1893
+
1894
+ [[package]]
1895
+ name = "rand_pcg"
1896
+ version = "0.9.0"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "b48ac3f7ffaab7fac4d2376632268aa5f89abdb55f7ebf8f4d11fffccb2320f7"
1899
+ dependencies = [
1900
+ "rand_core 0.9.5",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "rand_xorshift"
1905
+ version = "0.4.0"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1908
+ dependencies = [
1909
+ "rand_core 0.9.5",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "raw-cpuid"
1914
+ version = "11.6.0"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
1917
+ dependencies = [
1918
+ "bitflags",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "rb-sys"
1923
+ version = "0.9.126"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "284799e73e899fe946fd77c7211b83bff61a1356e039ade7a2516a779e3212d0"
1926
+ dependencies = [
1927
+ "rb-sys-build",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "rb-sys-build"
1932
+ version = "0.9.126"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "855fc1ad8943d12c89ef12f9147f1cc531f5bf19fb744112fdd317bb6ee7b5c5"
1935
+ dependencies = [
1936
+ "bindgen",
1937
+ "lazy_static",
1938
+ "proc-macro2",
1939
+ "quote",
1940
+ "regex",
1941
+ "shell-words",
1942
+ "syn",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "rb-sys-env"
1947
+ version = "0.2.3"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
1950
+
1951
+ [[package]]
1952
+ name = "rdkafka"
1953
+ version = "0.39.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "d7956f9ac12b5712e50372d9749a3102f4810a8d42481c5eae3748d36d585bcf"
1956
+ dependencies = [
1957
+ "futures-channel",
1958
+ "futures-util",
1959
+ "libc",
1960
+ "log",
1961
+ "rdkafka-sys",
1962
+ "serde",
1963
+ "serde_derive",
1964
+ "serde_json",
1965
+ "slab",
1966
+ "tokio",
1967
+ "tracing",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "rdkafka-sys"
1972
+ version = "4.10.0+2.12.1"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "e234cf318915c1059d4921ef7f75616b5219b10b46e9f3a511a15eb4b56a3f77"
1975
+ dependencies = [
1976
+ "cmake",
1977
+ "libc",
1978
+ "libz-sys",
1979
+ "num_enum",
1980
+ "pkg-config",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "redox_syscall"
1985
+ version = "0.5.18"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1988
+ dependencies = [
1989
+ "bitflags",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "ref-cast"
1994
+ version = "1.0.25"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1997
+ dependencies = [
1998
+ "ref-cast-impl",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "ref-cast-impl"
2003
+ version = "1.0.25"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2006
+ dependencies = [
2007
+ "proc-macro2",
2008
+ "quote",
2009
+ "syn",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "regex"
2014
+ version = "1.12.3"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2017
+ dependencies = [
2018
+ "aho-corasick",
2019
+ "memchr",
2020
+ "regex-automata",
2021
+ "regex-syntax",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "regex-automata"
2026
+ version = "0.4.14"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2029
+ dependencies = [
2030
+ "aho-corasick",
2031
+ "memchr",
2032
+ "regex-syntax",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "regex-syntax"
2037
+ version = "0.8.10"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2040
+
2041
+ [[package]]
2042
+ name = "reqwest"
2043
+ version = "0.12.28"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2046
+ dependencies = [
2047
+ "base64",
2048
+ "bytes",
2049
+ "futures-channel",
2050
+ "futures-core",
2051
+ "futures-util",
2052
+ "http",
2053
+ "http-body",
2054
+ "http-body-util",
2055
+ "hyper",
2056
+ "hyper-util",
2057
+ "js-sys",
2058
+ "log",
2059
+ "percent-encoding",
2060
+ "pin-project-lite",
2061
+ "serde",
2062
+ "serde_json",
2063
+ "serde_urlencoded",
2064
+ "sync_wrapper",
2065
+ "tokio",
2066
+ "tower",
2067
+ "tower-http",
2068
+ "tower-service",
2069
+ "url",
2070
+ "wasm-bindgen",
2071
+ "wasm-bindgen-futures",
2072
+ "web-sys",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "rust-embed"
2077
+ version = "8.11.0"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
2080
+ dependencies = [
2081
+ "rust-embed-impl",
2082
+ "rust-embed-utils",
2083
+ "walkdir",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "rust-embed-impl"
2088
+ version = "8.11.0"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
2091
+ dependencies = [
2092
+ "proc-macro2",
2093
+ "quote",
2094
+ "rust-embed-utils",
2095
+ "syn",
2096
+ "walkdir",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "rust-embed-utils"
2101
+ version = "8.11.0"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
2104
+ dependencies = [
2105
+ "globset",
2106
+ "sha2 0.10.9",
2107
+ "walkdir",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "rustc-hash"
2112
+ version = "2.1.2"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2115
+
2116
+ [[package]]
2117
+ name = "rustversion"
2118
+ version = "1.0.22"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2121
+
2122
+ [[package]]
2123
+ name = "ryu"
2124
+ version = "1.0.23"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2127
+
2128
+ [[package]]
2129
+ name = "saa"
2130
+ version = "5.5.1"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "bd8d438861332c3b1ac396c77bd9cac620ea1ff347efb63c05a83d8f0a593899"
2133
+
2134
+ [[package]]
2135
+ name = "same-file"
2136
+ version = "1.0.6"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2139
+ dependencies = [
2140
+ "winapi-util",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "scc"
2145
+ version = "3.7.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "16c154cf1d115a1e901d7f4e3f279eb6eb455f0d670c1cf3c1aa74d50ad37fa9"
2148
+ dependencies = [
2149
+ "saa",
2150
+ "sdd",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "scopeguard"
2155
+ version = "1.2.0"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2158
+
2159
+ [[package]]
2160
+ name = "scylla"
2161
+ version = "1.5.0"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "7ab73aaea18839882f43c08bc6367dfd1d4e9d285a2ab6ac4335b9dc06b63c19"
2164
+ dependencies = [
2165
+ "arc-swap",
2166
+ "async-trait",
2167
+ "bytes",
2168
+ "chrono",
2169
+ "dashmap",
2170
+ "futures",
2171
+ "hashbrown 0.15.5",
2172
+ "itertools 0.14.0",
2173
+ "rand 0.9.4",
2174
+ "rand_pcg",
2175
+ "scylla-cql",
2176
+ "smallvec",
2177
+ "socket2 0.5.10",
2178
+ "thiserror",
2179
+ "tokio",
2180
+ "tracing",
2181
+ "uuid",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "scylla-cql"
2186
+ version = "1.5.0"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "87834c927e9336270725aac24fada6e86f9d14aa04a8c8f93223b002e86f3891"
2189
+ dependencies = [
2190
+ "byteorder",
2191
+ "bytes",
2192
+ "chrono",
2193
+ "itertools 0.14.0",
2194
+ "lz4_flex",
2195
+ "scylla-macros",
2196
+ "snap",
2197
+ "stable_deref_trait",
2198
+ "thiserror",
2199
+ "tokio",
2200
+ "uuid",
2201
+ "yoke",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "scylla-macros"
2206
+ version = "1.5.0"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "ad97e5f7ccd8a1d41e631e361c9851c21b093e15ff5dcd08861f6ac83215d434"
2209
+ dependencies = [
2210
+ "darling",
2211
+ "proc-macro2",
2212
+ "quote",
2213
+ "syn",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "sdd"
2218
+ version = "4.8.3"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "0ec3c6d3fde776a6aadfda5991a2e14ba161c9bbe317da88732a5ded4ac4c493"
2221
+ dependencies = [
2222
+ "saa",
2223
+ ]
2224
+
2225
+ [[package]]
2226
+ name = "semver"
2227
+ version = "1.0.28"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2230
+
2231
+ [[package]]
2232
+ name = "seq-macro"
2233
+ version = "0.3.6"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2236
+
2237
+ [[package]]
2238
+ name = "serde"
2239
+ version = "1.0.228"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2242
+ dependencies = [
2243
+ "serde_core",
2244
+ "serde_derive",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "serde-untagged"
2249
+ version = "0.1.9"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
2252
+ dependencies = [
2253
+ "erased-serde",
2254
+ "serde",
2255
+ "serde_core",
2256
+ "typeid",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "serde_core"
2261
+ version = "1.0.228"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2264
+ dependencies = [
2265
+ "serde_derive",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "serde_derive"
2270
+ version = "1.0.228"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2273
+ dependencies = [
2274
+ "proc-macro2",
2275
+ "quote",
2276
+ "syn",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "serde_json"
2281
+ version = "1.0.149"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2284
+ dependencies = [
2285
+ "itoa",
2286
+ "memchr",
2287
+ "serde",
2288
+ "serde_core",
2289
+ "zmij",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "serde_magnus"
2294
+ version = "0.11.0"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
2297
+ dependencies = [
2298
+ "magnus",
2299
+ "serde",
2300
+ "tap",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "serde_path_to_error"
2305
+ version = "0.1.20"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2308
+ dependencies = [
2309
+ "itoa",
2310
+ "serde",
2311
+ "serde_core",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "serde_urlencoded"
2316
+ version = "0.7.1"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2319
+ dependencies = [
2320
+ "form_urlencoded",
2321
+ "itoa",
2322
+ "ryu",
2323
+ "serde",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "sha1_smol"
2328
+ version = "1.0.1"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2331
+
2332
+ [[package]]
2333
+ name = "sha2"
2334
+ version = "0.10.9"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2337
+ dependencies = [
2338
+ "cfg-if",
2339
+ "cpufeatures 0.2.17",
2340
+ "digest 0.10.7",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "sha2"
2345
+ version = "0.11.0"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2348
+ dependencies = [
2349
+ "cfg-if",
2350
+ "cpufeatures 0.3.0",
2351
+ "digest 0.11.2",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "sharded-slab"
2356
+ version = "0.1.7"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2359
+ dependencies = [
2360
+ "lazy_static",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "shell-words"
2365
+ version = "1.1.1"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2368
+
2369
+ [[package]]
2370
+ name = "shlex"
2371
+ version = "1.3.0"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2374
+
2375
+ [[package]]
2376
+ name = "simd-json"
2377
+ version = "0.17.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
2380
+ dependencies = [
2381
+ "halfbrown",
2382
+ "ref-cast",
2383
+ "serde",
2384
+ "serde_json",
2385
+ "simdutf8",
2386
+ "value-trait",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "simdutf8"
2391
+ version = "0.1.5"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2394
+
2395
+ [[package]]
2396
+ name = "slab"
2397
+ version = "0.4.12"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2400
+
2401
+ [[package]]
2402
+ name = "smallvec"
2403
+ version = "1.15.1"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2406
+
2407
+ [[package]]
2408
+ name = "snap"
2409
+ version = "1.1.1"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2412
+
2413
+ [[package]]
2414
+ name = "socket2"
2415
+ version = "0.5.10"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2418
+ dependencies = [
2419
+ "libc",
2420
+ "windows-sys 0.52.0",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "socket2"
2425
+ version = "0.6.3"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2428
+ dependencies = [
2429
+ "libc",
2430
+ "windows-sys 0.61.2",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "stable_deref_trait"
2435
+ version = "1.2.1"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2438
+
2439
+ [[package]]
2440
+ name = "strsim"
2441
+ version = "0.11.1"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2444
+
2445
+ [[package]]
2446
+ name = "strum"
2447
+ version = "0.28.0"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
2450
+ dependencies = [
2451
+ "strum_macros",
2452
+ ]
2453
+
2454
+ [[package]]
2455
+ name = "strum_macros"
2456
+ version = "0.28.0"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
2459
+ dependencies = [
2460
+ "heck",
2461
+ "proc-macro2",
2462
+ "quote",
2463
+ "syn",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "syn"
2468
+ version = "2.0.117"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2471
+ dependencies = [
2472
+ "proc-macro2",
2473
+ "quote",
2474
+ "unicode-ident",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "sync_wrapper"
2479
+ version = "1.0.2"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2482
+ dependencies = [
2483
+ "futures-core",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "synstructure"
2488
+ version = "0.13.2"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2491
+ dependencies = [
2492
+ "proc-macro2",
2493
+ "quote",
2494
+ "syn",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "tap"
2499
+ version = "1.0.1"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2502
+
2503
+ [[package]]
2504
+ name = "thiserror"
2505
+ version = "2.0.18"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2508
+ dependencies = [
2509
+ "thiserror-impl",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "thiserror-impl"
2514
+ version = "2.0.18"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2517
+ dependencies = [
2518
+ "proc-macro2",
2519
+ "quote",
2520
+ "syn",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "thread_local"
2525
+ version = "1.1.9"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2528
+ dependencies = [
2529
+ "cfg-if",
2530
+ ]
2531
+
2532
+ [[package]]
2533
+ name = "tikv-jemalloc-sys"
2534
+ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
2537
+ dependencies = [
2538
+ "cc",
2539
+ "libc",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "tikv-jemallocator"
2544
+ version = "0.6.1"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
2547
+ dependencies = [
2548
+ "libc",
2549
+ "tikv-jemalloc-sys",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "tinystr"
2554
+ version = "0.8.3"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2557
+ dependencies = [
2558
+ "displaydoc",
2559
+ "zerovec",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "tokio"
2564
+ version = "1.52.0"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "a91135f59b1cbf38c91e73cf3386fca9bb77915c45ce2771460c9d92f0f3d776"
2567
+ dependencies = [
2568
+ "bytes",
2569
+ "libc",
2570
+ "mio",
2571
+ "parking_lot",
2572
+ "pin-project-lite",
2573
+ "socket2 0.6.3",
2574
+ "tokio-macros",
2575
+ "windows-sys 0.61.2",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "tokio-macros"
2580
+ version = "2.7.0"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2583
+ dependencies = [
2584
+ "proc-macro2",
2585
+ "quote",
2586
+ "syn",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "tokio-stream"
2591
+ version = "0.1.18"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2594
+ dependencies = [
2595
+ "futures-core",
2596
+ "pin-project-lite",
2597
+ "tokio",
2598
+ "tokio-util",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "tokio-util"
2603
+ version = "0.7.18"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2606
+ dependencies = [
2607
+ "bytes",
2608
+ "futures-core",
2609
+ "futures-sink",
2610
+ "pin-project-lite",
2611
+ "slab",
2612
+ "tokio",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "toml_datetime"
2617
+ version = "1.1.1+spec-1.1.0"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2620
+ dependencies = [
2621
+ "serde_core",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "toml_edit"
2626
+ version = "0.25.11+spec-1.1.0"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
2629
+ dependencies = [
2630
+ "indexmap",
2631
+ "toml_datetime",
2632
+ "toml_parser",
2633
+ "winnow",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "toml_parser"
2638
+ version = "1.1.2+spec-1.1.0"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2641
+ dependencies = [
2642
+ "winnow",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "tonic"
2647
+ version = "0.14.5"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec"
2650
+ dependencies = [
2651
+ "async-trait",
2652
+ "base64",
2653
+ "bytes",
2654
+ "http",
2655
+ "http-body",
2656
+ "http-body-util",
2657
+ "hyper",
2658
+ "hyper-timeout",
2659
+ "hyper-util",
2660
+ "percent-encoding",
2661
+ "pin-project",
2662
+ "sync_wrapper",
2663
+ "tokio",
2664
+ "tokio-stream",
2665
+ "tower",
2666
+ "tower-layer",
2667
+ "tower-service",
2668
+ "tracing",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "tonic-prost"
2673
+ version = "0.14.5"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309"
2676
+ dependencies = [
2677
+ "bytes",
2678
+ "prost",
2679
+ "tonic",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "tower"
2684
+ version = "0.5.3"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2687
+ dependencies = [
2688
+ "futures-core",
2689
+ "futures-util",
2690
+ "indexmap",
2691
+ "pin-project-lite",
2692
+ "slab",
2693
+ "sync_wrapper",
2694
+ "tokio",
2695
+ "tokio-util",
2696
+ "tower-layer",
2697
+ "tower-service",
2698
+ "tracing",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "tower-http"
2703
+ version = "0.6.8"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2706
+ dependencies = [
2707
+ "bitflags",
2708
+ "bytes",
2709
+ "futures-util",
2710
+ "http",
2711
+ "http-body",
2712
+ "iri-string",
2713
+ "pin-project-lite",
2714
+ "tower",
2715
+ "tower-layer",
2716
+ "tower-service",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "tower-layer"
2721
+ version = "0.3.3"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2724
+
2725
+ [[package]]
2726
+ name = "tower-service"
2727
+ version = "0.3.3"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2730
+
2731
+ [[package]]
2732
+ name = "tracing"
2733
+ version = "0.1.44"
2734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2735
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2736
+ dependencies = [
2737
+ "log",
2738
+ "pin-project-lite",
2739
+ "tracing-attributes",
2740
+ "tracing-core",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "tracing-attributes"
2745
+ version = "0.1.31"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2748
+ dependencies = [
2749
+ "proc-macro2",
2750
+ "quote",
2751
+ "syn",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "tracing-core"
2756
+ version = "0.1.36"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2759
+ dependencies = [
2760
+ "once_cell",
2761
+ "valuable",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "tracing-log"
2766
+ version = "0.2.0"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2769
+ dependencies = [
2770
+ "log",
2771
+ "once_cell",
2772
+ "tracing-core",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "tracing-opentelemetry"
2777
+ version = "0.32.1"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc"
2780
+ dependencies = [
2781
+ "js-sys",
2782
+ "opentelemetry",
2783
+ "smallvec",
2784
+ "tracing",
2785
+ "tracing-core",
2786
+ "tracing-log",
2787
+ "tracing-subscriber",
2788
+ "web-time",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "tracing-subscriber"
2793
+ version = "0.3.23"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2796
+ dependencies = [
2797
+ "matchers",
2798
+ "nu-ansi-term",
2799
+ "once_cell",
2800
+ "parking_lot",
2801
+ "regex-automata",
2802
+ "sharded-slab",
2803
+ "smallvec",
2804
+ "thread_local",
2805
+ "tracing",
2806
+ "tracing-core",
2807
+ "tracing-log",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "trilean"
2812
+ version = "1.1.0"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "683ba5022fe6dbd7133cad150478ccf51bdb6d861515181e5fc6b4323d4fa424"
2815
+
2816
+ [[package]]
2817
+ name = "try-lock"
2818
+ version = "0.2.5"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2821
+
2822
+ [[package]]
2823
+ name = "twox-hash"
2824
+ version = "2.1.2"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
2827
+
2828
+ [[package]]
2829
+ name = "typeid"
2830
+ version = "1.0.3"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
2833
+
2834
+ [[package]]
2835
+ name = "typenum"
2836
+ version = "1.19.0"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2839
+
2840
+ [[package]]
2841
+ name = "unarray"
2842
+ version = "0.1.4"
2843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2844
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2845
+
2846
+ [[package]]
2847
+ name = "unicode-ident"
2848
+ version = "1.0.24"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2851
+
2852
+ [[package]]
2853
+ name = "unicode-xid"
2854
+ version = "0.2.6"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2857
+
2858
+ [[package]]
2859
+ name = "url"
2860
+ version = "2.5.8"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2863
+ dependencies = [
2864
+ "form_urlencoded",
2865
+ "idna",
2866
+ "percent-encoding",
2867
+ "serde",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "utf8_iter"
2872
+ version = "1.0.4"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2875
+
2876
+ [[package]]
2877
+ name = "uuid"
2878
+ version = "1.23.0"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
2881
+ dependencies = [
2882
+ "getrandom 0.4.2",
2883
+ "js-sys",
2884
+ "sha1_smol",
2885
+ "wasm-bindgen",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "validator"
2890
+ version = "0.20.0"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "43fb22e1a008ece370ce08a3e9e4447a910e92621bb49b85d6e48a45397e7cfa"
2893
+ dependencies = [
2894
+ "idna",
2895
+ "once_cell",
2896
+ "regex",
2897
+ "serde",
2898
+ "serde_derive",
2899
+ "serde_json",
2900
+ "url",
2901
+ "validator_derive",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "validator_derive"
2906
+ version = "0.20.0"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "b7df16e474ef958526d1205f6dda359fdfab79d9aa6d54bafcb92dcd07673dca"
2909
+ dependencies = [
2910
+ "darling",
2911
+ "once_cell",
2912
+ "proc-macro-error2",
2913
+ "proc-macro2",
2914
+ "quote",
2915
+ "syn",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "valuable"
2920
+ version = "0.1.1"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2923
+
2924
+ [[package]]
2925
+ name = "value-trait"
2926
+ version = "0.12.1"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
2929
+ dependencies = [
2930
+ "float-cmp",
2931
+ "halfbrown",
2932
+ "itoa",
2933
+ "ryu",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "vcpkg"
2938
+ version = "0.2.15"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2941
+
2942
+ [[package]]
2943
+ name = "version_check"
2944
+ version = "0.9.5"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2947
+
2948
+ [[package]]
2949
+ name = "walkdir"
2950
+ version = "2.5.0"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2953
+ dependencies = [
2954
+ "same-file",
2955
+ "winapi-util",
2956
+ ]
2957
+
2958
+ [[package]]
2959
+ name = "want"
2960
+ version = "0.3.1"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2963
+ dependencies = [
2964
+ "try-lock",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "wasi"
2969
+ version = "0.11.1+wasi-snapshot-preview1"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2972
+
2973
+ [[package]]
2974
+ name = "wasi"
2975
+ version = "0.14.7+wasi-0.2.4"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
2978
+ dependencies = [
2979
+ "wasip2",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "wasip2"
2984
+ version = "1.0.2+wasi-0.2.9"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2987
+ dependencies = [
2988
+ "wit-bindgen",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "wasip3"
2993
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2996
+ dependencies = [
2997
+ "wit-bindgen",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "wasite"
3002
+ version = "1.0.2"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
3005
+ dependencies = [
3006
+ "wasi 0.14.7+wasi-0.2.4",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "wasm-bindgen"
3011
+ version = "0.2.118"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
3014
+ dependencies = [
3015
+ "cfg-if",
3016
+ "once_cell",
3017
+ "rustversion",
3018
+ "wasm-bindgen-macro",
3019
+ "wasm-bindgen-shared",
3020
+ ]
3021
+
3022
+ [[package]]
3023
+ name = "wasm-bindgen-futures"
3024
+ version = "0.4.68"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
3027
+ dependencies = [
3028
+ "js-sys",
3029
+ "wasm-bindgen",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "wasm-bindgen-macro"
3034
+ version = "0.2.118"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
3037
+ dependencies = [
3038
+ "quote",
3039
+ "wasm-bindgen-macro-support",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "wasm-bindgen-macro-support"
3044
+ version = "0.2.118"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
3047
+ dependencies = [
3048
+ "bumpalo",
3049
+ "proc-macro2",
3050
+ "quote",
3051
+ "syn",
3052
+ "wasm-bindgen-shared",
3053
+ ]
3054
+
3055
+ [[package]]
3056
+ name = "wasm-bindgen-shared"
3057
+ version = "0.2.118"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
3060
+ dependencies = [
3061
+ "unicode-ident",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "wasm-encoder"
3066
+ version = "0.244.0"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3069
+ dependencies = [
3070
+ "leb128fmt",
3071
+ "wasmparser",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "wasm-metadata"
3076
+ version = "0.244.0"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3079
+ dependencies = [
3080
+ "anyhow",
3081
+ "indexmap",
3082
+ "wasm-encoder",
3083
+ "wasmparser",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "wasmparser"
3088
+ version = "0.244.0"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3091
+ dependencies = [
3092
+ "bitflags",
3093
+ "hashbrown 0.15.5",
3094
+ "indexmap",
3095
+ "semver",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "web-sys"
3100
+ version = "0.3.95"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
3103
+ dependencies = [
3104
+ "js-sys",
3105
+ "wasm-bindgen",
3106
+ ]
3107
+
3108
+ [[package]]
3109
+ name = "web-time"
3110
+ version = "1.1.0"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3113
+ dependencies = [
3114
+ "js-sys",
3115
+ "wasm-bindgen",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "whoami"
3120
+ version = "2.1.1"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d"
3123
+ dependencies = [
3124
+ "libc",
3125
+ "libredox",
3126
+ "objc2-system-configuration",
3127
+ "wasite",
3128
+ "web-sys",
3129
+ ]
3130
+
3131
+ [[package]]
3132
+ name = "winapi"
3133
+ version = "0.3.9"
3134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3135
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3136
+ dependencies = [
3137
+ "winapi-i686-pc-windows-gnu",
3138
+ "winapi-x86_64-pc-windows-gnu",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "winapi-i686-pc-windows-gnu"
3143
+ version = "0.4.0"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3146
+
3147
+ [[package]]
3148
+ name = "winapi-util"
3149
+ version = "0.1.11"
3150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3151
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3152
+ dependencies = [
3153
+ "windows-sys 0.61.2",
3154
+ ]
3155
+
3156
+ [[package]]
3157
+ name = "winapi-x86_64-pc-windows-gnu"
3158
+ version = "0.4.0"
3159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3160
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3161
+
3162
+ [[package]]
3163
+ name = "windows-core"
3164
+ version = "0.62.2"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3167
+ dependencies = [
3168
+ "windows-implement",
3169
+ "windows-interface",
3170
+ "windows-link",
3171
+ "windows-result",
3172
+ "windows-strings",
3173
+ ]
3174
+
3175
+ [[package]]
3176
+ name = "windows-implement"
3177
+ version = "0.60.2"
3178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3179
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3180
+ dependencies = [
3181
+ "proc-macro2",
3182
+ "quote",
3183
+ "syn",
3184
+ ]
3185
+
3186
+ [[package]]
3187
+ name = "windows-interface"
3188
+ version = "0.59.3"
3189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3190
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3191
+ dependencies = [
3192
+ "proc-macro2",
3193
+ "quote",
3194
+ "syn",
3195
+ ]
3196
+
3197
+ [[package]]
3198
+ name = "windows-link"
3199
+ version = "0.2.1"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3202
+
3203
+ [[package]]
3204
+ name = "windows-result"
3205
+ version = "0.4.1"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3208
+ dependencies = [
3209
+ "windows-link",
3210
+ ]
3211
+
3212
+ [[package]]
3213
+ name = "windows-strings"
3214
+ version = "0.5.1"
3215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3216
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3217
+ dependencies = [
3218
+ "windows-link",
3219
+ ]
3220
+
3221
+ [[package]]
3222
+ name = "windows-sys"
3223
+ version = "0.52.0"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3226
+ dependencies = [
3227
+ "windows-targets",
3228
+ ]
3229
+
3230
+ [[package]]
3231
+ name = "windows-sys"
3232
+ version = "0.61.2"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3235
+ dependencies = [
3236
+ "windows-link",
3237
+ ]
3238
+
3239
+ [[package]]
3240
+ name = "windows-targets"
3241
+ version = "0.52.6"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3244
+ dependencies = [
3245
+ "windows_aarch64_gnullvm",
3246
+ "windows_aarch64_msvc",
3247
+ "windows_i686_gnu",
3248
+ "windows_i686_gnullvm",
3249
+ "windows_i686_msvc",
3250
+ "windows_x86_64_gnu",
3251
+ "windows_x86_64_gnullvm",
3252
+ "windows_x86_64_msvc",
3253
+ ]
3254
+
3255
+ [[package]]
3256
+ name = "windows_aarch64_gnullvm"
3257
+ version = "0.52.6"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3260
+
3261
+ [[package]]
3262
+ name = "windows_aarch64_msvc"
3263
+ version = "0.52.6"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3266
+
3267
+ [[package]]
3268
+ name = "windows_i686_gnu"
3269
+ version = "0.52.6"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3272
+
3273
+ [[package]]
3274
+ name = "windows_i686_gnullvm"
3275
+ version = "0.52.6"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3278
+
3279
+ [[package]]
3280
+ name = "windows_i686_msvc"
3281
+ version = "0.52.6"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3284
+
3285
+ [[package]]
3286
+ name = "windows_x86_64_gnu"
3287
+ version = "0.52.6"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3290
+
3291
+ [[package]]
3292
+ name = "windows_x86_64_gnullvm"
3293
+ version = "0.52.6"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3296
+
3297
+ [[package]]
3298
+ name = "windows_x86_64_msvc"
3299
+ version = "0.52.6"
3300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3301
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3302
+
3303
+ [[package]]
3304
+ name = "winnow"
3305
+ version = "1.0.1"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
3308
+ dependencies = [
3309
+ "memchr",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "wit-bindgen"
3314
+ version = "0.51.0"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3317
+ dependencies = [
3318
+ "wit-bindgen-rust-macro",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "wit-bindgen-core"
3323
+ version = "0.51.0"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3326
+ dependencies = [
3327
+ "anyhow",
3328
+ "heck",
3329
+ "wit-parser",
3330
+ ]
3331
+
3332
+ [[package]]
3333
+ name = "wit-bindgen-rust"
3334
+ version = "0.51.0"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3337
+ dependencies = [
3338
+ "anyhow",
3339
+ "heck",
3340
+ "indexmap",
3341
+ "prettyplease",
3342
+ "syn",
3343
+ "wasm-metadata",
3344
+ "wit-bindgen-core",
3345
+ "wit-component",
3346
+ ]
3347
+
3348
+ [[package]]
3349
+ name = "wit-bindgen-rust-macro"
3350
+ version = "0.51.0"
3351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3352
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3353
+ dependencies = [
3354
+ "anyhow",
3355
+ "prettyplease",
3356
+ "proc-macro2",
3357
+ "quote",
3358
+ "syn",
3359
+ "wit-bindgen-core",
3360
+ "wit-bindgen-rust",
3361
+ ]
3362
+
3363
+ [[package]]
3364
+ name = "wit-component"
3365
+ version = "0.244.0"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3368
+ dependencies = [
3369
+ "anyhow",
3370
+ "bitflags",
3371
+ "indexmap",
3372
+ "log",
3373
+ "serde",
3374
+ "serde_derive",
3375
+ "serde_json",
3376
+ "wasm-encoder",
3377
+ "wasm-metadata",
3378
+ "wasmparser",
3379
+ "wit-parser",
3380
+ ]
3381
+
3382
+ [[package]]
3383
+ name = "wit-parser"
3384
+ version = "0.244.0"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3387
+ dependencies = [
3388
+ "anyhow",
3389
+ "id-arena",
3390
+ "indexmap",
3391
+ "log",
3392
+ "semver",
3393
+ "serde",
3394
+ "serde_derive",
3395
+ "serde_json",
3396
+ "unicode-xid",
3397
+ "wasmparser",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "writeable"
3402
+ version = "0.6.3"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3405
+
3406
+ [[package]]
3407
+ name = "xxhash-rust"
3408
+ version = "0.8.15"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3411
+
3412
+ [[package]]
3413
+ name = "yoke"
3414
+ version = "0.8.2"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3417
+ dependencies = [
3418
+ "stable_deref_trait",
3419
+ "yoke-derive",
3420
+ "zerofrom",
3421
+ ]
3422
+
3423
+ [[package]]
3424
+ name = "yoke-derive"
3425
+ version = "0.8.2"
3426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3427
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3428
+ dependencies = [
3429
+ "proc-macro2",
3430
+ "quote",
3431
+ "syn",
3432
+ "synstructure",
3433
+ ]
3434
+
3435
+ [[package]]
3436
+ name = "zerocopy"
3437
+ version = "0.8.48"
3438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3439
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3440
+ dependencies = [
3441
+ "zerocopy-derive",
3442
+ ]
3443
+
3444
+ [[package]]
3445
+ name = "zerocopy-derive"
3446
+ version = "0.8.48"
3447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3448
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3449
+ dependencies = [
3450
+ "proc-macro2",
3451
+ "quote",
3452
+ "syn",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "zerofrom"
3457
+ version = "0.1.7"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
3460
+ dependencies = [
3461
+ "zerofrom-derive",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "zerofrom-derive"
3466
+ version = "0.1.7"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3469
+ dependencies = [
3470
+ "proc-macro2",
3471
+ "quote",
3472
+ "syn",
3473
+ "synstructure",
3474
+ ]
3475
+
3476
+ [[package]]
3477
+ name = "zerotrie"
3478
+ version = "0.2.4"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3481
+ dependencies = [
3482
+ "displaydoc",
3483
+ "yoke",
3484
+ "zerofrom",
3485
+ ]
3486
+
3487
+ [[package]]
3488
+ name = "zerovec"
3489
+ version = "0.11.6"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3492
+ dependencies = [
3493
+ "yoke",
3494
+ "zerofrom",
3495
+ "zerovec-derive",
3496
+ ]
3497
+
3498
+ [[package]]
3499
+ name = "zerovec-derive"
3500
+ version = "0.11.3"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3503
+ dependencies = [
3504
+ "proc-macro2",
3505
+ "quote",
3506
+ "syn",
3507
+ ]
3508
+
3509
+ [[package]]
3510
+ name = "zmij"
3511
+ version = "1.0.21"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"