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