opencloudtool 0.4.1__tar.gz

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