ematix-probe 0.1.1__tar.gz

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