smbcloud-sdk-auth 0.3.33__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 (55) hide show
  1. smbcloud_sdk_auth-0.3.33/Cargo.lock +3709 -0
  2. smbcloud_sdk_auth-0.3.33/Cargo.toml +47 -0
  3. smbcloud_sdk_auth-0.3.33/PKG-INFO +78 -0
  4. smbcloud_sdk_auth-0.3.33/README.md +52 -0
  5. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/.gitignore +1 -0
  6. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/Cargo.toml +31 -0
  7. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/README.md +3 -0
  8. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/check_email.rs +27 -0
  9. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/client_credentials.rs +17 -0
  10. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/lib.rs +12 -0
  11. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/login.rs +64 -0
  12. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/logout.rs +83 -0
  13. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/me.rs +44 -0
  14. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oauth/get_account_status.rs +27 -0
  15. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oauth/get_consent_url.rs +25 -0
  16. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oauth/get_profile.rs +15 -0
  17. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oauth/get_token.rs +28 -0
  18. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oauth/mod.rs +5 -0
  19. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oauth/provider.rs +11 -0
  20. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/oidc.rs +163 -0
  21. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/remove.rs +43 -0
  22. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/resend_email_verification.rs +29 -0
  23. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/resend_reset_password_instruction.rs +34 -0
  24. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/reset_password.rs +42 -0
  25. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth/src/signup.rs +54 -0
  26. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth-py/Cargo.toml +26 -0
  27. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth-py/README.md +3 -0
  28. smbcloud_sdk_auth-0.3.33/crates/smbcloud-auth-py/src/lib.rs +221 -0
  29. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/Cargo.toml +33 -0
  30. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/README.md +1 -0
  31. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/account.rs +115 -0
  32. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/app_auth.rs +38 -0
  33. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/error_codes.rs +138 -0
  34. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/forgot.rs +43 -0
  35. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/lib.rs +63 -0
  36. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/login.rs +55 -0
  37. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/oauth.rs +36 -0
  38. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/project.rs +164 -0
  39. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/repository.rs +14 -0
  40. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/reset_password_response.rs +11 -0
  41. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/runner.rs +100 -0
  42. smbcloud_sdk_auth-0.3.33/crates/smbcloud-model/src/signup.rs +72 -0
  43. smbcloud_sdk_auth-0.3.33/crates/smbcloud-network/Cargo.toml +30 -0
  44. smbcloud_sdk_auth-0.3.33/crates/smbcloud-network/README.md +1 -0
  45. smbcloud_sdk_auth-0.3.33/crates/smbcloud-network/src/environment.rs +57 -0
  46. smbcloud_sdk_auth-0.3.33/crates/smbcloud-network/src/lib.rs +2 -0
  47. smbcloud_sdk_auth-0.3.33/crates/smbcloud-network/src/network.rs +280 -0
  48. smbcloud_sdk_auth-0.3.33/crates/smbcloud-networking/Cargo.toml +25 -0
  49. smbcloud_sdk_auth-0.3.33/crates/smbcloud-networking/README.md +3 -0
  50. smbcloud_sdk_auth-0.3.33/crates/smbcloud-networking/src/constants.rs +24 -0
  51. smbcloud_sdk_auth-0.3.33/crates/smbcloud-networking/src/lib.rs +17 -0
  52. smbcloud_sdk_auth-0.3.33/crates/smbcloud-networking/src/smb_client.rs +17 -0
  53. smbcloud_sdk_auth-0.3.33/pyproject.toml +37 -0
  54. smbcloud_sdk_auth-0.3.33/smbcloud_auth/__init__.py +141 -0
  55. smbcloud_sdk_auth-0.3.33/smbcloud_auth/py.typed +0 -0
@@ -0,0 +1,3709 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "android_system_properties"
29
+ version = "0.1.5"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
32
+ dependencies = [
33
+ "libc",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "ansi_term"
38
+ version = "0.12.1"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
41
+ dependencies = [
42
+ "winapi",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "anstream"
47
+ version = "0.6.21"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
50
+ dependencies = [
51
+ "anstyle",
52
+ "anstyle-parse",
53
+ "anstyle-query",
54
+ "anstyle-wincon",
55
+ "colorchoice",
56
+ "is_terminal_polyfill",
57
+ "utf8parse",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "anstyle"
62
+ version = "1.0.13"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
65
+
66
+ [[package]]
67
+ name = "anstyle-parse"
68
+ version = "0.2.7"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
71
+ dependencies = [
72
+ "utf8parse",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstyle-query"
77
+ version = "1.1.5"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
80
+ dependencies = [
81
+ "windows-sys 0.61.2",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "anstyle-wincon"
86
+ version = "3.0.11"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
89
+ dependencies = [
90
+ "anstyle",
91
+ "once_cell_polyfill",
92
+ "windows-sys 0.61.2",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "anyhow"
97
+ version = "1.0.101"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
100
+
101
+ [[package]]
102
+ name = "async-trait"
103
+ version = "0.1.89"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
106
+ dependencies = [
107
+ "proc-macro2",
108
+ "quote",
109
+ "syn 2.0.114",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "atomic-waker"
114
+ version = "1.1.2"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
117
+
118
+ [[package]]
119
+ name = "atty"
120
+ version = "0.2.14"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
123
+ dependencies = [
124
+ "hermit-abi",
125
+ "libc",
126
+ "winapi",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "autocfg"
131
+ version = "1.5.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
134
+
135
+ [[package]]
136
+ name = "base64"
137
+ version = "0.22.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
140
+
141
+ [[package]]
142
+ name = "bitflags"
143
+ version = "1.3.2"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
146
+
147
+ [[package]]
148
+ name = "bitflags"
149
+ version = "2.10.0"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
152
+
153
+ [[package]]
154
+ name = "block-buffer"
155
+ version = "0.10.4"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
158
+ dependencies = [
159
+ "generic-array",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "bumpalo"
164
+ version = "3.19.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
167
+
168
+ [[package]]
169
+ name = "bytecount"
170
+ version = "0.6.9"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
173
+
174
+ [[package]]
175
+ name = "byteorder"
176
+ version = "1.5.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
179
+
180
+ [[package]]
181
+ name = "bytes"
182
+ version = "1.11.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
185
+
186
+ [[package]]
187
+ name = "cc"
188
+ version = "1.2.55"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
191
+ dependencies = [
192
+ "find-msvc-tools",
193
+ "jobserver",
194
+ "libc",
195
+ "shlex",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "cfg-if"
200
+ version = "1.0.4"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
203
+
204
+ [[package]]
205
+ name = "cfg_aliases"
206
+ version = "0.2.1"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
209
+
210
+ [[package]]
211
+ name = "chrono"
212
+ version = "0.4.43"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
215
+ dependencies = [
216
+ "iana-time-zone",
217
+ "js-sys",
218
+ "num-traits",
219
+ "serde",
220
+ "wasm-bindgen",
221
+ "windows-link",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "clap"
226
+ version = "2.34.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
229
+ dependencies = [
230
+ "ansi_term",
231
+ "atty",
232
+ "bitflags 1.3.2",
233
+ "strsim 0.8.0",
234
+ "textwrap",
235
+ "unicode-width 0.1.14",
236
+ "vec_map",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "clap"
241
+ version = "4.5.57"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
244
+ dependencies = [
245
+ "clap_builder",
246
+ "clap_derive",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "clap_builder"
251
+ version = "4.5.57"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
254
+ dependencies = [
255
+ "anstream",
256
+ "anstyle",
257
+ "clap_lex",
258
+ "strsim 0.11.1",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "clap_derive"
263
+ version = "4.5.55"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
266
+ dependencies = [
267
+ "heck 0.5.0",
268
+ "proc-macro2",
269
+ "quote",
270
+ "syn 2.0.114",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "clap_lex"
275
+ version = "0.7.7"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
278
+
279
+ [[package]]
280
+ name = "clap_mangen"
281
+ version = "0.2.31"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301"
284
+ dependencies = [
285
+ "clap 4.5.57",
286
+ "roff",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "colorchoice"
291
+ version = "1.0.4"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
294
+
295
+ [[package]]
296
+ name = "console"
297
+ version = "0.15.11"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
300
+ dependencies = [
301
+ "encode_unicode",
302
+ "libc",
303
+ "once_cell",
304
+ "unicode-width 0.2.2",
305
+ "windows-sys 0.59.0",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "console"
310
+ version = "0.16.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
313
+ dependencies = [
314
+ "encode_unicode",
315
+ "libc",
316
+ "once_cell",
317
+ "unicode-width 0.2.2",
318
+ "windows-sys 0.61.2",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "convert_case"
323
+ version = "0.6.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
326
+ dependencies = [
327
+ "unicode-segmentation",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "core-foundation"
332
+ version = "0.9.4"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
335
+ dependencies = [
336
+ "core-foundation-sys",
337
+ "libc",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "core-foundation"
342
+ version = "0.10.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
345
+ dependencies = [
346
+ "core-foundation-sys",
347
+ "libc",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "core-foundation-sys"
352
+ version = "0.8.7"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
355
+
356
+ [[package]]
357
+ name = "cpufeatures"
358
+ version = "0.2.17"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
361
+ dependencies = [
362
+ "libc",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "crypto-common"
367
+ version = "0.1.7"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
370
+ dependencies = [
371
+ "generic-array",
372
+ "typenum",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "deranged"
377
+ version = "0.5.5"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
380
+ dependencies = [
381
+ "powerfmt",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "dialoguer"
386
+ version = "0.11.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
389
+ dependencies = [
390
+ "console 0.15.11",
391
+ "shell-words",
392
+ "tempfile",
393
+ "thiserror 1.0.69",
394
+ "zeroize",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "digest"
399
+ version = "0.10.7"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
402
+ dependencies = [
403
+ "block-buffer",
404
+ "crypto-common",
405
+ "subtle",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "dirs"
410
+ version = "6.0.0"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
413
+ dependencies = [
414
+ "dirs-sys",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "dirs-sys"
419
+ version = "0.5.0"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
422
+ dependencies = [
423
+ "libc",
424
+ "option-ext",
425
+ "redox_users",
426
+ "windows-sys 0.61.2",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "displaydoc"
431
+ version = "0.2.5"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
434
+ dependencies = [
435
+ "proc-macro2",
436
+ "quote",
437
+ "syn 2.0.114",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "dotenv"
442
+ version = "0.15.0"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
445
+
446
+ [[package]]
447
+ name = "dotenv_codegen"
448
+ version = "0.15.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "56966279c10e4f8ee8c22123a15ed74e7c8150b658b26c619c53f4a56eb4a8aa"
451
+ dependencies = [
452
+ "dotenv_codegen_implementation",
453
+ "proc-macro-hack",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "dotenv_codegen_implementation"
458
+ version = "0.15.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "53e737a3522cd45f6adc19b644ce43ef53e1e9045f2d2de425c1f468abd4cf33"
461
+ dependencies = [
462
+ "dotenv",
463
+ "proc-macro-hack",
464
+ "proc-macro2",
465
+ "quote",
466
+ "syn 1.0.109",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "encode_unicode"
471
+ version = "1.0.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
474
+
475
+ [[package]]
476
+ name = "encoding_rs"
477
+ version = "0.8.35"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
480
+ dependencies = [
481
+ "cfg-if",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "equivalent"
486
+ version = "1.0.2"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
489
+
490
+ [[package]]
491
+ name = "errno"
492
+ version = "0.3.14"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
495
+ dependencies = [
496
+ "libc",
497
+ "windows-sys 0.61.2",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "fallible-iterator"
502
+ version = "0.2.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
505
+
506
+ [[package]]
507
+ name = "fastrand"
508
+ version = "2.3.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
511
+
512
+ [[package]]
513
+ name = "find-msvc-tools"
514
+ version = "0.1.9"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
517
+
518
+ [[package]]
519
+ name = "fnv"
520
+ version = "1.0.7"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
523
+
524
+ [[package]]
525
+ name = "foreign-types"
526
+ version = "0.3.2"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
529
+ dependencies = [
530
+ "foreign-types-shared",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "foreign-types-shared"
535
+ version = "0.1.1"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
538
+
539
+ [[package]]
540
+ name = "form_urlencoded"
541
+ version = "1.2.2"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
544
+ dependencies = [
545
+ "percent-encoding",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "futures-channel"
550
+ version = "0.3.31"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
553
+ dependencies = [
554
+ "futures-core",
555
+ "futures-sink",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "futures-core"
560
+ version = "0.3.31"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
563
+
564
+ [[package]]
565
+ name = "futures-sink"
566
+ version = "0.3.31"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
569
+
570
+ [[package]]
571
+ name = "futures-task"
572
+ version = "0.3.31"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
575
+
576
+ [[package]]
577
+ name = "futures-util"
578
+ version = "0.3.31"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
581
+ dependencies = [
582
+ "futures-core",
583
+ "futures-sink",
584
+ "futures-task",
585
+ "pin-project-lite",
586
+ "pin-utils",
587
+ "slab",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "generator"
592
+ version = "0.7.5"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
595
+ dependencies = [
596
+ "cc",
597
+ "libc",
598
+ "log",
599
+ "rustversion",
600
+ "windows",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "generic-array"
605
+ version = "0.14.7"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
608
+ dependencies = [
609
+ "typenum",
610
+ "version_check",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "gethostname"
615
+ version = "0.2.3"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
618
+ dependencies = [
619
+ "libc",
620
+ "winapi",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "getrandom"
625
+ version = "0.2.17"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
628
+ dependencies = [
629
+ "cfg-if",
630
+ "js-sys",
631
+ "libc",
632
+ "wasi 0.11.1+wasi-snapshot-preview1",
633
+ "wasm-bindgen",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "getrandom"
638
+ version = "0.3.4"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
641
+ dependencies = [
642
+ "cfg-if",
643
+ "js-sys",
644
+ "libc",
645
+ "r-efi",
646
+ "wasip2",
647
+ "wasm-bindgen",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "git2"
652
+ version = "0.20.4"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
655
+ dependencies = [
656
+ "bitflags 2.10.0",
657
+ "libc",
658
+ "libgit2-sys",
659
+ "log",
660
+ "openssl-probe 0.1.6",
661
+ "openssl-sys",
662
+ "url",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "gresiq"
667
+ version = "0.3.26"
668
+ dependencies = [
669
+ "tokio",
670
+ "tokio-postgres",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "h2"
675
+ version = "0.4.13"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
678
+ dependencies = [
679
+ "atomic-waker",
680
+ "bytes",
681
+ "fnv",
682
+ "futures-core",
683
+ "futures-sink",
684
+ "http",
685
+ "indexmap",
686
+ "slab",
687
+ "tokio",
688
+ "tokio-util",
689
+ "tracing",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "hashbrown"
694
+ version = "0.16.1"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
697
+
698
+ [[package]]
699
+ name = "heck"
700
+ version = "0.3.3"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
703
+ dependencies = [
704
+ "unicode-segmentation",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "heck"
709
+ version = "0.4.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
712
+
713
+ [[package]]
714
+ name = "heck"
715
+ version = "0.5.0"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
718
+
719
+ [[package]]
720
+ name = "hermit-abi"
721
+ version = "0.1.19"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
724
+ dependencies = [
725
+ "libc",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "hmac"
730
+ version = "0.12.1"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
733
+ dependencies = [
734
+ "digest",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "home"
739
+ version = "0.5.12"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
742
+ dependencies = [
743
+ "windows-sys 0.61.2",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "http"
748
+ version = "1.4.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
751
+ dependencies = [
752
+ "bytes",
753
+ "itoa",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "http-body"
758
+ version = "1.0.1"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
761
+ dependencies = [
762
+ "bytes",
763
+ "http",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "http-body-util"
768
+ version = "0.1.3"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
771
+ dependencies = [
772
+ "bytes",
773
+ "futures-core",
774
+ "http",
775
+ "http-body",
776
+ "pin-project-lite",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "httparse"
781
+ version = "1.10.1"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
784
+
785
+ [[package]]
786
+ name = "hyper"
787
+ version = "1.8.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
790
+ dependencies = [
791
+ "atomic-waker",
792
+ "bytes",
793
+ "futures-channel",
794
+ "futures-core",
795
+ "h2",
796
+ "http",
797
+ "http-body",
798
+ "httparse",
799
+ "itoa",
800
+ "pin-project-lite",
801
+ "pin-utils",
802
+ "smallvec",
803
+ "tokio",
804
+ "want",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "hyper-rustls"
809
+ version = "0.27.7"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
812
+ dependencies = [
813
+ "http",
814
+ "hyper",
815
+ "hyper-util",
816
+ "rustls",
817
+ "rustls-native-certs",
818
+ "rustls-pki-types",
819
+ "tokio",
820
+ "tokio-rustls",
821
+ "tower-service",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "hyper-tls"
826
+ version = "0.6.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
829
+ dependencies = [
830
+ "bytes",
831
+ "http-body-util",
832
+ "hyper",
833
+ "hyper-util",
834
+ "native-tls",
835
+ "tokio",
836
+ "tokio-native-tls",
837
+ "tower-service",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "hyper-util"
842
+ version = "0.1.20"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
845
+ dependencies = [
846
+ "base64",
847
+ "bytes",
848
+ "futures-channel",
849
+ "futures-util",
850
+ "http",
851
+ "http-body",
852
+ "hyper",
853
+ "ipnet",
854
+ "libc",
855
+ "percent-encoding",
856
+ "pin-project-lite",
857
+ "socket2",
858
+ "system-configuration",
859
+ "tokio",
860
+ "tower-service",
861
+ "tracing",
862
+ "windows-registry",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "iana-time-zone"
867
+ version = "0.1.65"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
870
+ dependencies = [
871
+ "android_system_properties",
872
+ "core-foundation-sys",
873
+ "iana-time-zone-haiku",
874
+ "js-sys",
875
+ "log",
876
+ "wasm-bindgen",
877
+ "windows-core",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "iana-time-zone-haiku"
882
+ version = "0.1.2"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
885
+ dependencies = [
886
+ "cc",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "icu_collections"
891
+ version = "2.1.1"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
894
+ dependencies = [
895
+ "displaydoc",
896
+ "potential_utf",
897
+ "yoke",
898
+ "zerofrom",
899
+ "zerovec",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "icu_locale_core"
904
+ version = "2.1.1"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
907
+ dependencies = [
908
+ "displaydoc",
909
+ "litemap",
910
+ "tinystr",
911
+ "writeable",
912
+ "zerovec",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "icu_normalizer"
917
+ version = "2.1.1"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
920
+ dependencies = [
921
+ "icu_collections",
922
+ "icu_normalizer_data",
923
+ "icu_properties",
924
+ "icu_provider",
925
+ "smallvec",
926
+ "zerovec",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "icu_normalizer_data"
931
+ version = "2.1.1"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
934
+
935
+ [[package]]
936
+ name = "icu_properties"
937
+ version = "2.1.2"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
940
+ dependencies = [
941
+ "icu_collections",
942
+ "icu_locale_core",
943
+ "icu_properties_data",
944
+ "icu_provider",
945
+ "zerotrie",
946
+ "zerovec",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "icu_properties_data"
951
+ version = "2.1.2"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
954
+
955
+ [[package]]
956
+ name = "icu_provider"
957
+ version = "2.1.1"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
960
+ dependencies = [
961
+ "displaydoc",
962
+ "icu_locale_core",
963
+ "writeable",
964
+ "yoke",
965
+ "zerofrom",
966
+ "zerotrie",
967
+ "zerovec",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "idna"
972
+ version = "1.1.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
975
+ dependencies = [
976
+ "idna_adapter",
977
+ "smallvec",
978
+ "utf8_iter",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "idna_adapter"
983
+ version = "1.2.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
986
+ dependencies = [
987
+ "icu_normalizer",
988
+ "icu_properties",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "indexmap"
993
+ version = "2.13.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
996
+ dependencies = [
997
+ "equivalent",
998
+ "hashbrown",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "indicatif"
1003
+ version = "0.17.11"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1006
+ dependencies = [
1007
+ "console 0.15.11",
1008
+ "number_prefix",
1009
+ "portable-atomic",
1010
+ "unicode-width 0.2.2",
1011
+ "web-time",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "indoc"
1016
+ version = "2.0.7"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1019
+ dependencies = [
1020
+ "rustversion",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "ipnet"
1025
+ version = "2.11.0"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1028
+
1029
+ [[package]]
1030
+ name = "iri-string"
1031
+ version = "0.7.10"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1034
+ dependencies = [
1035
+ "memchr",
1036
+ "serde",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "is-docker"
1041
+ version = "0.2.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
1044
+ dependencies = [
1045
+ "once_cell",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "is-wsl"
1050
+ version = "0.4.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
1053
+ dependencies = [
1054
+ "is-docker",
1055
+ "once_cell",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "is_terminal_polyfill"
1060
+ version = "1.70.2"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1063
+
1064
+ [[package]]
1065
+ name = "itoa"
1066
+ version = "1.0.17"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1069
+
1070
+ [[package]]
1071
+ name = "jobserver"
1072
+ version = "0.1.34"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1075
+ dependencies = [
1076
+ "getrandom 0.3.4",
1077
+ "libc",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "js-sys"
1082
+ version = "0.3.85"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1085
+ dependencies = [
1086
+ "once_cell",
1087
+ "wasm-bindgen",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "lazy_static"
1092
+ version = "1.5.0"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1095
+
1096
+ [[package]]
1097
+ name = "libc"
1098
+ version = "0.2.180"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1101
+
1102
+ [[package]]
1103
+ name = "libgit2-sys"
1104
+ version = "0.18.3+1.9.2"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "c9b3acc4b91781bb0b3386669d325163746af5f6e4f73e6d2d630e09a35f3487"
1107
+ dependencies = [
1108
+ "cc",
1109
+ "libc",
1110
+ "libssh2-sys",
1111
+ "libz-sys",
1112
+ "openssl-sys",
1113
+ "pkg-config",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "libredox"
1118
+ version = "0.1.12"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1121
+ dependencies = [
1122
+ "bitflags 2.10.0",
1123
+ "libc",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "libssh2-sys"
1128
+ version = "0.3.1"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "220e4f05ad4a218192533b300327f5150e809b54c4ec83b5a1d91833601811b9"
1131
+ dependencies = [
1132
+ "cc",
1133
+ "libc",
1134
+ "libz-sys",
1135
+ "openssl-sys",
1136
+ "pkg-config",
1137
+ "vcpkg",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "libz-sys"
1142
+ version = "1.1.23"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "15d118bbf3771060e7311cc7bb0545b01d08a8b4a7de949198dec1fa0ca1c0f7"
1145
+ dependencies = [
1146
+ "cc",
1147
+ "libc",
1148
+ "pkg-config",
1149
+ "vcpkg",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "linux-raw-sys"
1154
+ version = "0.11.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1157
+
1158
+ [[package]]
1159
+ name = "litemap"
1160
+ version = "0.8.1"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1163
+
1164
+ [[package]]
1165
+ name = "lock_api"
1166
+ version = "0.4.14"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1169
+ dependencies = [
1170
+ "scopeguard",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "log"
1175
+ version = "0.4.29"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1178
+
1179
+ [[package]]
1180
+ name = "loom"
1181
+ version = "0.5.6"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
1184
+ dependencies = [
1185
+ "cfg-if",
1186
+ "generator",
1187
+ "scoped-tls",
1188
+ "serde",
1189
+ "serde_json",
1190
+ "tracing",
1191
+ "tracing-subscriber",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "lru-slab"
1196
+ version = "0.1.2"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1199
+
1200
+ [[package]]
1201
+ name = "maplit"
1202
+ version = "1.0.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1205
+
1206
+ [[package]]
1207
+ name = "matchers"
1208
+ version = "0.2.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1211
+ dependencies = [
1212
+ "regex-automata",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "maybe-async"
1217
+ version = "0.2.10"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
1220
+ dependencies = [
1221
+ "proc-macro2",
1222
+ "quote",
1223
+ "syn 2.0.114",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "md-5"
1228
+ version = "0.10.6"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1231
+ dependencies = [
1232
+ "cfg-if",
1233
+ "digest",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "memchr"
1238
+ version = "2.8.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1241
+
1242
+ [[package]]
1243
+ name = "memoffset"
1244
+ version = "0.9.1"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1247
+ dependencies = [
1248
+ "autocfg",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "mime"
1253
+ version = "0.3.17"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1256
+
1257
+ [[package]]
1258
+ name = "mio"
1259
+ version = "1.1.1"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1262
+ dependencies = [
1263
+ "libc",
1264
+ "wasi 0.11.1+wasi-snapshot-preview1",
1265
+ "windows-sys 0.61.2",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "native-tls"
1270
+ version = "0.2.14"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1273
+ dependencies = [
1274
+ "libc",
1275
+ "log",
1276
+ "openssl",
1277
+ "openssl-probe 0.1.6",
1278
+ "openssl-sys",
1279
+ "schannel",
1280
+ "security-framework 2.11.1",
1281
+ "security-framework-sys",
1282
+ "tempfile",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "nu-ansi-term"
1287
+ version = "0.50.3"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1290
+ dependencies = [
1291
+ "windows-sys 0.61.2",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "num-conv"
1296
+ version = "0.2.0"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1299
+
1300
+ [[package]]
1301
+ name = "num-traits"
1302
+ version = "0.2.19"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1305
+ dependencies = [
1306
+ "autocfg",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "number_prefix"
1311
+ version = "0.4.0"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1314
+
1315
+ [[package]]
1316
+ name = "once_cell"
1317
+ version = "1.21.3"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1320
+
1321
+ [[package]]
1322
+ name = "once_cell_polyfill"
1323
+ version = "1.70.2"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1326
+
1327
+ [[package]]
1328
+ name = "open"
1329
+ version = "5.3.3"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc"
1332
+ dependencies = [
1333
+ "is-wsl",
1334
+ "libc",
1335
+ "pathdiff",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "openssl"
1340
+ version = "0.10.75"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1343
+ dependencies = [
1344
+ "bitflags 2.10.0",
1345
+ "cfg-if",
1346
+ "foreign-types",
1347
+ "libc",
1348
+ "once_cell",
1349
+ "openssl-macros",
1350
+ "openssl-sys",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "openssl-macros"
1355
+ version = "0.1.1"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1358
+ dependencies = [
1359
+ "proc-macro2",
1360
+ "quote",
1361
+ "syn 2.0.114",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "openssl-probe"
1366
+ version = "0.1.6"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1369
+
1370
+ [[package]]
1371
+ name = "openssl-probe"
1372
+ version = "0.2.1"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1375
+
1376
+ [[package]]
1377
+ name = "openssl-sys"
1378
+ version = "0.9.111"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1381
+ dependencies = [
1382
+ "cc",
1383
+ "libc",
1384
+ "pkg-config",
1385
+ "vcpkg",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "option-ext"
1390
+ version = "0.2.0"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1393
+
1394
+ [[package]]
1395
+ name = "papergrid"
1396
+ version = "0.17.0"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
1399
+ dependencies = [
1400
+ "bytecount",
1401
+ "fnv",
1402
+ "unicode-width 0.2.2",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "parking_lot"
1407
+ version = "0.12.5"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1410
+ dependencies = [
1411
+ "lock_api",
1412
+ "parking_lot_core",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "parking_lot_core"
1417
+ version = "0.9.12"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1420
+ dependencies = [
1421
+ "cfg-if",
1422
+ "libc",
1423
+ "redox_syscall",
1424
+ "smallvec",
1425
+ "windows-link",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "pathdiff"
1430
+ version = "0.2.3"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1433
+
1434
+ [[package]]
1435
+ name = "percent-encoding"
1436
+ version = "2.3.2"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1439
+
1440
+ [[package]]
1441
+ name = "phf"
1442
+ version = "0.13.1"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1445
+ dependencies = [
1446
+ "phf_shared",
1447
+ "serde",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "phf_shared"
1452
+ version = "0.13.1"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1455
+ dependencies = [
1456
+ "siphasher",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "pin-project-lite"
1461
+ version = "0.2.16"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1464
+
1465
+ [[package]]
1466
+ name = "pin-utils"
1467
+ version = "0.1.0"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1470
+
1471
+ [[package]]
1472
+ name = "pkg-config"
1473
+ version = "0.3.32"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1476
+
1477
+ [[package]]
1478
+ name = "portable-atomic"
1479
+ version = "1.13.1"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1482
+
1483
+ [[package]]
1484
+ name = "postgres-protocol"
1485
+ version = "0.6.10"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491"
1488
+ dependencies = [
1489
+ "base64",
1490
+ "byteorder",
1491
+ "bytes",
1492
+ "fallible-iterator",
1493
+ "hmac",
1494
+ "md-5",
1495
+ "memchr",
1496
+ "rand",
1497
+ "sha2",
1498
+ "stringprep",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "postgres-types"
1503
+ version = "0.2.12"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20"
1506
+ dependencies = [
1507
+ "bytes",
1508
+ "fallible-iterator",
1509
+ "postgres-protocol",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "potential_utf"
1514
+ version = "0.1.4"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1517
+ dependencies = [
1518
+ "zerovec",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "powerfmt"
1523
+ version = "0.2.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1526
+
1527
+ [[package]]
1528
+ name = "ppv-lite86"
1529
+ version = "0.2.21"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1532
+ dependencies = [
1533
+ "zerocopy",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "proc-macro-error"
1538
+ version = "1.0.4"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1541
+ dependencies = [
1542
+ "proc-macro-error-attr",
1543
+ "proc-macro2",
1544
+ "quote",
1545
+ "syn 1.0.109",
1546
+ "version_check",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "proc-macro-error-attr"
1551
+ version = "1.0.4"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1554
+ dependencies = [
1555
+ "proc-macro2",
1556
+ "quote",
1557
+ "version_check",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "proc-macro-error-attr2"
1562
+ version = "2.0.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1565
+ dependencies = [
1566
+ "proc-macro2",
1567
+ "quote",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "proc-macro-error2"
1572
+ version = "2.0.1"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1575
+ dependencies = [
1576
+ "proc-macro-error-attr2",
1577
+ "proc-macro2",
1578
+ "quote",
1579
+ "syn 2.0.114",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "proc-macro-hack"
1584
+ version = "0.5.20+deprecated"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
1587
+
1588
+ [[package]]
1589
+ name = "proc-macro2"
1590
+ version = "1.0.106"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1593
+ dependencies = [
1594
+ "unicode-ident",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "pyo3"
1599
+ version = "0.22.6"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1602
+ dependencies = [
1603
+ "cfg-if",
1604
+ "indoc",
1605
+ "libc",
1606
+ "memoffset",
1607
+ "once_cell",
1608
+ "portable-atomic",
1609
+ "pyo3-build-config",
1610
+ "pyo3-ffi",
1611
+ "pyo3-macros",
1612
+ "unindent",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "pyo3-build-config"
1617
+ version = "0.22.6"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1620
+ dependencies = [
1621
+ "once_cell",
1622
+ "target-lexicon",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "pyo3-ffi"
1627
+ version = "0.22.6"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1630
+ dependencies = [
1631
+ "libc",
1632
+ "pyo3-build-config",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "pyo3-macros"
1637
+ version = "0.22.6"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1640
+ dependencies = [
1641
+ "proc-macro2",
1642
+ "pyo3-macros-backend",
1643
+ "quote",
1644
+ "syn 2.0.114",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "pyo3-macros-backend"
1649
+ version = "0.22.6"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1652
+ dependencies = [
1653
+ "heck 0.5.0",
1654
+ "proc-macro2",
1655
+ "pyo3-build-config",
1656
+ "quote",
1657
+ "syn 2.0.114",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "pythonize"
1662
+ version = "0.22.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "90fcf491425978bd889015d5430f6473d91bdfa2097262f1e731aadcf6c2113e"
1665
+ dependencies = [
1666
+ "pyo3",
1667
+ "serde",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "quinn"
1672
+ version = "0.11.9"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1675
+ dependencies = [
1676
+ "bytes",
1677
+ "cfg_aliases",
1678
+ "pin-project-lite",
1679
+ "quinn-proto",
1680
+ "quinn-udp",
1681
+ "rustc-hash",
1682
+ "rustls",
1683
+ "socket2",
1684
+ "thiserror 2.0.18",
1685
+ "tokio",
1686
+ "tracing",
1687
+ "web-time",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "quinn-proto"
1692
+ version = "0.11.13"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1695
+ dependencies = [
1696
+ "bytes",
1697
+ "getrandom 0.3.4",
1698
+ "lru-slab",
1699
+ "rand",
1700
+ "ring",
1701
+ "rustc-hash",
1702
+ "rustls",
1703
+ "rustls-pki-types",
1704
+ "slab",
1705
+ "thiserror 2.0.18",
1706
+ "tinyvec",
1707
+ "tracing",
1708
+ "web-time",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "quinn-udp"
1713
+ version = "0.5.14"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1716
+ dependencies = [
1717
+ "cfg_aliases",
1718
+ "libc",
1719
+ "once_cell",
1720
+ "socket2",
1721
+ "tracing",
1722
+ "windows-sys 0.60.2",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "quote"
1727
+ version = "1.0.44"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1730
+ dependencies = [
1731
+ "proc-macro2",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "r-efi"
1736
+ version = "5.3.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1739
+
1740
+ [[package]]
1741
+ name = "rand"
1742
+ version = "0.9.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1745
+ dependencies = [
1746
+ "rand_chacha",
1747
+ "rand_core",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "rand_chacha"
1752
+ version = "0.9.0"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1755
+ dependencies = [
1756
+ "ppv-lite86",
1757
+ "rand_core",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "rand_core"
1762
+ version = "0.9.5"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1765
+ dependencies = [
1766
+ "getrandom 0.3.4",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "redox_syscall"
1771
+ version = "0.5.18"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1774
+ dependencies = [
1775
+ "bitflags 2.10.0",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "redox_users"
1780
+ version = "0.5.2"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1783
+ dependencies = [
1784
+ "getrandom 0.2.17",
1785
+ "libredox",
1786
+ "thiserror 2.0.18",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "regex"
1791
+ version = "1.12.3"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1794
+ dependencies = [
1795
+ "aho-corasick",
1796
+ "memchr",
1797
+ "regex-automata",
1798
+ "regex-syntax",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "regex-automata"
1803
+ version = "0.4.14"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1806
+ dependencies = [
1807
+ "aho-corasick",
1808
+ "memchr",
1809
+ "regex-syntax",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "regex-syntax"
1814
+ version = "0.8.9"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1817
+
1818
+ [[package]]
1819
+ name = "reqwest"
1820
+ version = "0.12.28"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1823
+ dependencies = [
1824
+ "base64",
1825
+ "bytes",
1826
+ "encoding_rs",
1827
+ "futures-core",
1828
+ "h2",
1829
+ "http",
1830
+ "http-body",
1831
+ "http-body-util",
1832
+ "hyper",
1833
+ "hyper-rustls",
1834
+ "hyper-tls",
1835
+ "hyper-util",
1836
+ "js-sys",
1837
+ "log",
1838
+ "mime",
1839
+ "native-tls",
1840
+ "percent-encoding",
1841
+ "pin-project-lite",
1842
+ "quinn",
1843
+ "rustls",
1844
+ "rustls-native-certs",
1845
+ "rustls-pki-types",
1846
+ "serde",
1847
+ "serde_json",
1848
+ "serde_urlencoded",
1849
+ "sync_wrapper",
1850
+ "tokio",
1851
+ "tokio-native-tls",
1852
+ "tokio-rustls",
1853
+ "tower",
1854
+ "tower-http",
1855
+ "tower-service",
1856
+ "url",
1857
+ "wasm-bindgen",
1858
+ "wasm-bindgen-futures",
1859
+ "web-sys",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "ring"
1864
+ version = "0.17.14"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1867
+ dependencies = [
1868
+ "cc",
1869
+ "cfg-if",
1870
+ "getrandom 0.2.17",
1871
+ "libc",
1872
+ "untrusted",
1873
+ "windows-sys 0.52.0",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "roff"
1878
+ version = "0.2.2"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
1881
+
1882
+ [[package]]
1883
+ name = "rustc-hash"
1884
+ version = "2.1.1"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1887
+
1888
+ [[package]]
1889
+ name = "rustix"
1890
+ version = "1.1.3"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1893
+ dependencies = [
1894
+ "bitflags 2.10.0",
1895
+ "errno",
1896
+ "libc",
1897
+ "linux-raw-sys",
1898
+ "windows-sys 0.61.2",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "rustls"
1903
+ version = "0.23.36"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1906
+ dependencies = [
1907
+ "once_cell",
1908
+ "ring",
1909
+ "rustls-pki-types",
1910
+ "rustls-webpki",
1911
+ "subtle",
1912
+ "zeroize",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "rustls-native-certs"
1917
+ version = "0.8.3"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1920
+ dependencies = [
1921
+ "openssl-probe 0.2.1",
1922
+ "rustls-pki-types",
1923
+ "schannel",
1924
+ "security-framework 3.5.1",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "rustls-pki-types"
1929
+ version = "1.14.0"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1932
+ dependencies = [
1933
+ "web-time",
1934
+ "zeroize",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "rustls-webpki"
1939
+ version = "0.103.9"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1942
+ dependencies = [
1943
+ "ring",
1944
+ "rustls-pki-types",
1945
+ "untrusted",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "rustversion"
1950
+ version = "1.0.22"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1953
+
1954
+ [[package]]
1955
+ name = "ryu"
1956
+ version = "1.0.23"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1959
+
1960
+ [[package]]
1961
+ name = "s6n"
1962
+ version = "0.1.0"
1963
+
1964
+ [[package]]
1965
+ name = "same-file"
1966
+ version = "1.0.6"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1969
+ dependencies = [
1970
+ "winapi-util",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "schannel"
1975
+ version = "0.1.28"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1978
+ dependencies = [
1979
+ "windows-sys 0.61.2",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "scoped-tls"
1984
+ version = "1.0.1"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1987
+
1988
+ [[package]]
1989
+ name = "scopeguard"
1990
+ version = "1.2.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1993
+
1994
+ [[package]]
1995
+ name = "security-framework"
1996
+ version = "2.11.1"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1999
+ dependencies = [
2000
+ "bitflags 2.10.0",
2001
+ "core-foundation 0.9.4",
2002
+ "core-foundation-sys",
2003
+ "libc",
2004
+ "security-framework-sys",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "security-framework"
2009
+ version = "3.5.1"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
2012
+ dependencies = [
2013
+ "bitflags 2.10.0",
2014
+ "core-foundation 0.10.1",
2015
+ "core-foundation-sys",
2016
+ "libc",
2017
+ "security-framework-sys",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "security-framework-sys"
2022
+ version = "2.15.0"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2025
+ dependencies = [
2026
+ "core-foundation-sys",
2027
+ "libc",
2028
+ ]
2029
+
2030
+ [[package]]
2031
+ name = "serde"
2032
+ version = "1.0.228"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2035
+ dependencies = [
2036
+ "serde_core",
2037
+ "serde_derive",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "serde-wasm-bindgen"
2042
+ version = "0.6.5"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2045
+ dependencies = [
2046
+ "js-sys",
2047
+ "serde",
2048
+ "wasm-bindgen",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "serde_core"
2053
+ version = "1.0.228"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2056
+ dependencies = [
2057
+ "serde_derive",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "serde_derive"
2062
+ version = "1.0.228"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2065
+ dependencies = [
2066
+ "proc-macro2",
2067
+ "quote",
2068
+ "syn 2.0.114",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "serde_json"
2073
+ version = "1.0.149"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2076
+ dependencies = [
2077
+ "itoa",
2078
+ "memchr",
2079
+ "serde",
2080
+ "serde_core",
2081
+ "zmij",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "serde_repr"
2086
+ version = "0.1.20"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2089
+ dependencies = [
2090
+ "proc-macro2",
2091
+ "quote",
2092
+ "syn 2.0.114",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "serde_spanned"
2097
+ version = "0.6.9"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2100
+ dependencies = [
2101
+ "serde",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "serde_urlencoded"
2106
+ version = "0.7.1"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2109
+ dependencies = [
2110
+ "form_urlencoded",
2111
+ "itoa",
2112
+ "ryu",
2113
+ "serde",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "sha2"
2118
+ version = "0.10.9"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2121
+ dependencies = [
2122
+ "cfg-if",
2123
+ "cpufeatures",
2124
+ "digest",
2125
+ ]
2126
+
2127
+ [[package]]
2128
+ name = "sharded-slab"
2129
+ version = "0.1.7"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2132
+ dependencies = [
2133
+ "lazy_static",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "shell-words"
2138
+ version = "1.1.1"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2141
+
2142
+ [[package]]
2143
+ name = "shlex"
2144
+ version = "1.3.0"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2147
+
2148
+ [[package]]
2149
+ name = "signal-hook-registry"
2150
+ version = "1.4.8"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2153
+ dependencies = [
2154
+ "errno",
2155
+ "libc",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "siphasher"
2160
+ version = "1.0.2"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2163
+
2164
+ [[package]]
2165
+ name = "slab"
2166
+ version = "0.4.12"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2169
+
2170
+ [[package]]
2171
+ name = "smallvec"
2172
+ version = "1.15.1"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2175
+
2176
+ [[package]]
2177
+ name = "smbcloud-auth"
2178
+ version = "0.3.33"
2179
+ dependencies = [
2180
+ "base64",
2181
+ "log",
2182
+ "reqwest",
2183
+ "serde",
2184
+ "serde_json",
2185
+ "sha2",
2186
+ "smbcloud-model",
2187
+ "smbcloud-network",
2188
+ "smbcloud-networking",
2189
+ "url-builder",
2190
+ "uuid",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "smbcloud-auth-py"
2195
+ version = "0.3.33"
2196
+ dependencies = [
2197
+ "pyo3",
2198
+ "pythonize",
2199
+ "serde",
2200
+ "serde_json",
2201
+ "smbcloud-auth",
2202
+ "smbcloud-model",
2203
+ "smbcloud-network",
2204
+ "tokio",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "smbcloud-auth-wasm"
2209
+ version = "0.3.33"
2210
+ dependencies = [
2211
+ "serde-wasm-bindgen",
2212
+ "smbcloud-auth",
2213
+ "smbcloud-network",
2214
+ "smbcloud-networking",
2215
+ "wasm-bindgen",
2216
+ "wasm-bindgen-futures",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "smbcloud-cli"
2221
+ version = "0.3.33"
2222
+ dependencies = [
2223
+ "anyhow",
2224
+ "chrono",
2225
+ "clap 4.5.57",
2226
+ "clap_mangen",
2227
+ "console 0.16.2",
2228
+ "dialoguer",
2229
+ "dirs",
2230
+ "dotenv_codegen",
2231
+ "git2",
2232
+ "home",
2233
+ "indicatif",
2234
+ "log",
2235
+ "open",
2236
+ "regex",
2237
+ "reqwest",
2238
+ "serde",
2239
+ "serde_json",
2240
+ "serde_repr",
2241
+ "smbcloud-auth",
2242
+ "smbcloud-model",
2243
+ "smbcloud-network",
2244
+ "smbcloud-networking",
2245
+ "smbcloud-networking-project",
2246
+ "smbcloud-utils",
2247
+ "spinners",
2248
+ "tabled",
2249
+ "tempfile",
2250
+ "thiserror 2.0.18",
2251
+ "tokio",
2252
+ "toml",
2253
+ "tracing",
2254
+ "tracing-bunyan-formatter",
2255
+ "tracing-subscriber",
2256
+ "url-builder",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "smbcloud-model"
2261
+ version = "0.3.33"
2262
+ dependencies = [
2263
+ "chrono",
2264
+ "log",
2265
+ "serde",
2266
+ "serde_json",
2267
+ "serde_repr",
2268
+ "spinners",
2269
+ "strum 0.27.2",
2270
+ "strum_macros 0.27.2",
2271
+ "thiserror 2.0.18",
2272
+ "tsync",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "smbcloud-network"
2277
+ version = "0.3.33"
2278
+ dependencies = [
2279
+ "clap 4.5.57",
2280
+ "log",
2281
+ "reqwest",
2282
+ "serde",
2283
+ "serde_json",
2284
+ "smbcloud-model",
2285
+ "wasm-bindgen",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "smbcloud-networking"
2290
+ version = "0.3.31"
2291
+ dependencies = [
2292
+ "smbcloud-network",
2293
+ "url-builder",
2294
+ ]
2295
+
2296
+ [[package]]
2297
+ name = "smbcloud-networking-project"
2298
+ version = "0.3.29"
2299
+ dependencies = [
2300
+ "anyhow",
2301
+ "async-trait",
2302
+ "dirs",
2303
+ "log",
2304
+ "maybe-async",
2305
+ "reqwest",
2306
+ "serde",
2307
+ "serde_json",
2308
+ "smbcloud-model",
2309
+ "smbcloud-network",
2310
+ "smbcloud-networking",
2311
+ "thiserror 2.0.18",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "smbcloud-utils"
2316
+ version = "0.3.31"
2317
+ dependencies = [
2318
+ "anyhow",
2319
+ "dirs",
2320
+ "home",
2321
+ "log",
2322
+ "regex",
2323
+ "serde",
2324
+ "serde_json",
2325
+ "smbcloud-model",
2326
+ "toml",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "socket2"
2331
+ version = "0.6.2"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2334
+ dependencies = [
2335
+ "libc",
2336
+ "windows-sys 0.60.2",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "spinners"
2341
+ version = "4.1.1"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "a0ef947f358b9c238923f764c72a4a9d42f2d637c46e059dbd319d6e7cfb4f82"
2344
+ dependencies = [
2345
+ "lazy_static",
2346
+ "maplit",
2347
+ "strum 0.24.1",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "stable_deref_trait"
2352
+ version = "1.2.1"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2355
+
2356
+ [[package]]
2357
+ name = "state"
2358
+ version = "0.6.0"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "2b8c4a4445d81357df8b1a650d0d0d6fbbbfe99d064aa5e02f3e4022061476d8"
2361
+ dependencies = [
2362
+ "loom",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "stringprep"
2367
+ version = "0.1.5"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2370
+ dependencies = [
2371
+ "unicode-bidi",
2372
+ "unicode-normalization",
2373
+ "unicode-properties",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "strsim"
2378
+ version = "0.8.0"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2381
+
2382
+ [[package]]
2383
+ name = "strsim"
2384
+ version = "0.11.1"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2387
+
2388
+ [[package]]
2389
+ name = "structopt"
2390
+ version = "0.3.26"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
2393
+ dependencies = [
2394
+ "clap 2.34.0",
2395
+ "lazy_static",
2396
+ "structopt-derive",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "structopt-derive"
2401
+ version = "0.4.18"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
2404
+ dependencies = [
2405
+ "heck 0.3.3",
2406
+ "proc-macro-error",
2407
+ "proc-macro2",
2408
+ "quote",
2409
+ "syn 1.0.109",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "strum"
2414
+ version = "0.24.1"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
2417
+ dependencies = [
2418
+ "strum_macros 0.24.3",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "strum"
2423
+ version = "0.27.2"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2426
+
2427
+ [[package]]
2428
+ name = "strum_macros"
2429
+ version = "0.24.3"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
2432
+ dependencies = [
2433
+ "heck 0.4.1",
2434
+ "proc-macro2",
2435
+ "quote",
2436
+ "rustversion",
2437
+ "syn 1.0.109",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "strum_macros"
2442
+ version = "0.27.2"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2445
+ dependencies = [
2446
+ "heck 0.5.0",
2447
+ "proc-macro2",
2448
+ "quote",
2449
+ "syn 2.0.114",
2450
+ ]
2451
+
2452
+ [[package]]
2453
+ name = "subtle"
2454
+ version = "2.6.1"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2457
+
2458
+ [[package]]
2459
+ name = "syn"
2460
+ version = "1.0.109"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2463
+ dependencies = [
2464
+ "proc-macro2",
2465
+ "quote",
2466
+ "unicode-ident",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "syn"
2471
+ version = "2.0.114"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
2474
+ dependencies = [
2475
+ "proc-macro2",
2476
+ "quote",
2477
+ "unicode-ident",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "sync_wrapper"
2482
+ version = "1.0.2"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2485
+ dependencies = [
2486
+ "futures-core",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "synstructure"
2491
+ version = "0.13.2"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2494
+ dependencies = [
2495
+ "proc-macro2",
2496
+ "quote",
2497
+ "syn 2.0.114",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "system-configuration"
2502
+ version = "0.7.0"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2505
+ dependencies = [
2506
+ "bitflags 2.10.0",
2507
+ "core-foundation 0.9.4",
2508
+ "system-configuration-sys",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "system-configuration-sys"
2513
+ version = "0.6.0"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2516
+ dependencies = [
2517
+ "core-foundation-sys",
2518
+ "libc",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "tabled"
2523
+ version = "0.20.0"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "e39a2ee1fbcd360805a771e1b300f78cc88fec7b8d3e2f71cd37bbf23e725c7d"
2526
+ dependencies = [
2527
+ "papergrid",
2528
+ "tabled_derive",
2529
+ "testing_table",
2530
+ ]
2531
+
2532
+ [[package]]
2533
+ name = "tabled_derive"
2534
+ version = "0.11.0"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "0ea5d1b13ca6cff1f9231ffd62f15eefd72543dab5e468735f1a456728a02846"
2537
+ dependencies = [
2538
+ "heck 0.5.0",
2539
+ "proc-macro-error2",
2540
+ "proc-macro2",
2541
+ "quote",
2542
+ "syn 2.0.114",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "target-lexicon"
2547
+ version = "0.12.16"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2550
+
2551
+ [[package]]
2552
+ name = "tempfile"
2553
+ version = "3.24.0"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
2556
+ dependencies = [
2557
+ "fastrand",
2558
+ "getrandom 0.3.4",
2559
+ "once_cell",
2560
+ "rustix",
2561
+ "windows-sys 0.61.2",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "testing_table"
2566
+ version = "0.3.0"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
2569
+ dependencies = [
2570
+ "unicode-width 0.2.2",
2571
+ ]
2572
+
2573
+ [[package]]
2574
+ name = "textwrap"
2575
+ version = "0.11.0"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2578
+ dependencies = [
2579
+ "unicode-width 0.1.14",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "thiserror"
2584
+ version = "1.0.69"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2587
+ dependencies = [
2588
+ "thiserror-impl 1.0.69",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "thiserror"
2593
+ version = "2.0.18"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2596
+ dependencies = [
2597
+ "thiserror-impl 2.0.18",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "thiserror-impl"
2602
+ version = "1.0.69"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2605
+ dependencies = [
2606
+ "proc-macro2",
2607
+ "quote",
2608
+ "syn 2.0.114",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "thiserror-impl"
2613
+ version = "2.0.18"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2616
+ dependencies = [
2617
+ "proc-macro2",
2618
+ "quote",
2619
+ "syn 2.0.114",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "thread_local"
2624
+ version = "1.1.9"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2627
+ dependencies = [
2628
+ "cfg-if",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "time"
2633
+ version = "0.3.47"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2636
+ dependencies = [
2637
+ "deranged",
2638
+ "itoa",
2639
+ "num-conv",
2640
+ "powerfmt",
2641
+ "serde_core",
2642
+ "time-core",
2643
+ "time-macros",
2644
+ ]
2645
+
2646
+ [[package]]
2647
+ name = "time-core"
2648
+ version = "0.1.8"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2651
+
2652
+ [[package]]
2653
+ name = "time-macros"
2654
+ version = "0.2.27"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2657
+ dependencies = [
2658
+ "num-conv",
2659
+ "time-core",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "tinystr"
2664
+ version = "0.8.2"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2667
+ dependencies = [
2668
+ "displaydoc",
2669
+ "zerovec",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "tinyvec"
2674
+ version = "1.10.0"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2677
+ dependencies = [
2678
+ "tinyvec_macros",
2679
+ ]
2680
+
2681
+ [[package]]
2682
+ name = "tinyvec_macros"
2683
+ version = "0.1.1"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2686
+
2687
+ [[package]]
2688
+ name = "tokio"
2689
+ version = "1.49.0"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2692
+ dependencies = [
2693
+ "bytes",
2694
+ "libc",
2695
+ "mio",
2696
+ "parking_lot",
2697
+ "pin-project-lite",
2698
+ "signal-hook-registry",
2699
+ "socket2",
2700
+ "tokio-macros",
2701
+ "windows-sys 0.61.2",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "tokio-macros"
2706
+ version = "2.6.0"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2709
+ dependencies = [
2710
+ "proc-macro2",
2711
+ "quote",
2712
+ "syn 2.0.114",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "tokio-native-tls"
2717
+ version = "0.3.1"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2720
+ dependencies = [
2721
+ "native-tls",
2722
+ "tokio",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "tokio-postgres"
2727
+ version = "0.7.16"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42"
2730
+ dependencies = [
2731
+ "async-trait",
2732
+ "byteorder",
2733
+ "bytes",
2734
+ "fallible-iterator",
2735
+ "futures-channel",
2736
+ "futures-util",
2737
+ "log",
2738
+ "parking_lot",
2739
+ "percent-encoding",
2740
+ "phf",
2741
+ "pin-project-lite",
2742
+ "postgres-protocol",
2743
+ "postgres-types",
2744
+ "rand",
2745
+ "socket2",
2746
+ "tokio",
2747
+ "tokio-util",
2748
+ "whoami",
2749
+ ]
2750
+
2751
+ [[package]]
2752
+ name = "tokio-rustls"
2753
+ version = "0.26.4"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2756
+ dependencies = [
2757
+ "rustls",
2758
+ "tokio",
2759
+ ]
2760
+
2761
+ [[package]]
2762
+ name = "tokio-util"
2763
+ version = "0.7.18"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2766
+ dependencies = [
2767
+ "bytes",
2768
+ "futures-core",
2769
+ "futures-sink",
2770
+ "pin-project-lite",
2771
+ "tokio",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "toml"
2776
+ version = "0.8.23"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2779
+ dependencies = [
2780
+ "serde",
2781
+ "serde_spanned",
2782
+ "toml_datetime",
2783
+ "toml_edit",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "toml_datetime"
2788
+ version = "0.6.11"
2789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2790
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2791
+ dependencies = [
2792
+ "serde",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "toml_edit"
2797
+ version = "0.22.27"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2800
+ dependencies = [
2801
+ "indexmap",
2802
+ "serde",
2803
+ "serde_spanned",
2804
+ "toml_datetime",
2805
+ "toml_write",
2806
+ "winnow",
2807
+ ]
2808
+
2809
+ [[package]]
2810
+ name = "toml_write"
2811
+ version = "0.1.2"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2814
+
2815
+ [[package]]
2816
+ name = "tower"
2817
+ version = "0.5.3"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2820
+ dependencies = [
2821
+ "futures-core",
2822
+ "futures-util",
2823
+ "pin-project-lite",
2824
+ "sync_wrapper",
2825
+ "tokio",
2826
+ "tower-layer",
2827
+ "tower-service",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "tower-http"
2832
+ version = "0.6.8"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2835
+ dependencies = [
2836
+ "bitflags 2.10.0",
2837
+ "bytes",
2838
+ "futures-util",
2839
+ "http",
2840
+ "http-body",
2841
+ "iri-string",
2842
+ "pin-project-lite",
2843
+ "tower",
2844
+ "tower-layer",
2845
+ "tower-service",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "tower-layer"
2850
+ version = "0.3.3"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2853
+
2854
+ [[package]]
2855
+ name = "tower-service"
2856
+ version = "0.3.3"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2859
+
2860
+ [[package]]
2861
+ name = "tracing"
2862
+ version = "0.1.44"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2865
+ dependencies = [
2866
+ "log",
2867
+ "pin-project-lite",
2868
+ "tracing-attributes",
2869
+ "tracing-core",
2870
+ ]
2871
+
2872
+ [[package]]
2873
+ name = "tracing-attributes"
2874
+ version = "0.1.31"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2877
+ dependencies = [
2878
+ "proc-macro2",
2879
+ "quote",
2880
+ "syn 2.0.114",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "tracing-bunyan-formatter"
2885
+ version = "0.3.10"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "2d637245a0d8774bd48df6482e086c59a8b5348a910c3b0579354045a9d82411"
2888
+ dependencies = [
2889
+ "ahash",
2890
+ "gethostname",
2891
+ "log",
2892
+ "serde",
2893
+ "serde_json",
2894
+ "time",
2895
+ "tracing",
2896
+ "tracing-core",
2897
+ "tracing-log 0.1.4",
2898
+ "tracing-subscriber",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "tracing-core"
2903
+ version = "0.1.36"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2906
+ dependencies = [
2907
+ "once_cell",
2908
+ "valuable",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "tracing-log"
2913
+ version = "0.1.4"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2"
2916
+ dependencies = [
2917
+ "log",
2918
+ "once_cell",
2919
+ "tracing-core",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "tracing-log"
2924
+ version = "0.2.0"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2927
+ dependencies = [
2928
+ "log",
2929
+ "once_cell",
2930
+ "tracing-core",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "tracing-subscriber"
2935
+ version = "0.3.22"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2938
+ dependencies = [
2939
+ "matchers",
2940
+ "nu-ansi-term",
2941
+ "once_cell",
2942
+ "regex-automata",
2943
+ "sharded-slab",
2944
+ "smallvec",
2945
+ "thread_local",
2946
+ "tracing",
2947
+ "tracing-core",
2948
+ "tracing-log 0.2.0",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "try-lock"
2953
+ version = "0.2.5"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2956
+
2957
+ [[package]]
2958
+ name = "tsync"
2959
+ version = "2.2.1"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "4fc20a25899c5ae43735253244214f3d5eb75dd28d9cc8491732294a985adb8c"
2962
+ dependencies = [
2963
+ "convert_case",
2964
+ "proc-macro2",
2965
+ "quote",
2966
+ "state",
2967
+ "structopt",
2968
+ "syn 2.0.114",
2969
+ "tsync-macro",
2970
+ "walkdir",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "tsync-macro"
2975
+ version = "0.1.0"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "8acc9e35a3072d9ea375093f321b3738ea3ac4fdebc18d2789b01581e5c2e4ae"
2978
+
2979
+ [[package]]
2980
+ name = "typenum"
2981
+ version = "1.19.0"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2984
+
2985
+ [[package]]
2986
+ name = "unicode-bidi"
2987
+ version = "0.3.18"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2990
+
2991
+ [[package]]
2992
+ name = "unicode-ident"
2993
+ version = "1.0.23"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
2996
+
2997
+ [[package]]
2998
+ name = "unicode-normalization"
2999
+ version = "0.1.25"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3002
+ dependencies = [
3003
+ "tinyvec",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "unicode-properties"
3008
+ version = "0.1.4"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3011
+
3012
+ [[package]]
3013
+ name = "unicode-segmentation"
3014
+ version = "1.12.0"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3017
+
3018
+ [[package]]
3019
+ name = "unicode-width"
3020
+ version = "0.1.14"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3023
+
3024
+ [[package]]
3025
+ name = "unicode-width"
3026
+ version = "0.2.2"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3029
+
3030
+ [[package]]
3031
+ name = "unindent"
3032
+ version = "0.2.4"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3035
+
3036
+ [[package]]
3037
+ name = "untrusted"
3038
+ version = "0.9.0"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3041
+
3042
+ [[package]]
3043
+ name = "url"
3044
+ version = "2.5.8"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3047
+ dependencies = [
3048
+ "form_urlencoded",
3049
+ "idna",
3050
+ "percent-encoding",
3051
+ "serde",
3052
+ ]
3053
+
3054
+ [[package]]
3055
+ name = "url-builder"
3056
+ version = "0.1.1"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "6c560d19163937c53680c515b82a9311c5a796691c67890b8ad579423123e194"
3059
+
3060
+ [[package]]
3061
+ name = "utf8_iter"
3062
+ version = "1.0.4"
3063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3065
+
3066
+ [[package]]
3067
+ name = "utf8parse"
3068
+ version = "0.2.2"
3069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3070
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3071
+
3072
+ [[package]]
3073
+ name = "uuid"
3074
+ version = "1.20.0"
3075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3076
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
3077
+ dependencies = [
3078
+ "getrandom 0.3.4",
3079
+ "js-sys",
3080
+ "wasm-bindgen",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "valuable"
3085
+ version = "0.1.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3088
+
3089
+ [[package]]
3090
+ name = "vcpkg"
3091
+ version = "0.2.15"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3094
+
3095
+ [[package]]
3096
+ name = "vec_map"
3097
+ version = "0.8.2"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3100
+
3101
+ [[package]]
3102
+ name = "version_check"
3103
+ version = "0.9.5"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3106
+
3107
+ [[package]]
3108
+ name = "walkdir"
3109
+ version = "2.5.0"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3112
+ dependencies = [
3113
+ "same-file",
3114
+ "winapi-util",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "want"
3119
+ version = "0.3.1"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3122
+ dependencies = [
3123
+ "try-lock",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "wasi"
3128
+ version = "0.11.1+wasi-snapshot-preview1"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3131
+
3132
+ [[package]]
3133
+ name = "wasi"
3134
+ version = "0.14.7+wasi-0.2.4"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
3137
+ dependencies = [
3138
+ "wasip2",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "wasip2"
3143
+ version = "1.0.2+wasi-0.2.9"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3146
+ dependencies = [
3147
+ "wit-bindgen",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "wasite"
3152
+ version = "1.0.2"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
3155
+ dependencies = [
3156
+ "wasi 0.14.7+wasi-0.2.4",
3157
+ ]
3158
+
3159
+ [[package]]
3160
+ name = "wasm-bindgen"
3161
+ version = "0.2.108"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
3164
+ dependencies = [
3165
+ "cfg-if",
3166
+ "once_cell",
3167
+ "rustversion",
3168
+ "wasm-bindgen-macro",
3169
+ "wasm-bindgen-shared",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "wasm-bindgen-futures"
3174
+ version = "0.4.58"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
3177
+ dependencies = [
3178
+ "cfg-if",
3179
+ "futures-util",
3180
+ "js-sys",
3181
+ "once_cell",
3182
+ "wasm-bindgen",
3183
+ "web-sys",
3184
+ ]
3185
+
3186
+ [[package]]
3187
+ name = "wasm-bindgen-macro"
3188
+ version = "0.2.108"
3189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3190
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
3191
+ dependencies = [
3192
+ "quote",
3193
+ "wasm-bindgen-macro-support",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "wasm-bindgen-macro-support"
3198
+ version = "0.2.108"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
3201
+ dependencies = [
3202
+ "bumpalo",
3203
+ "proc-macro2",
3204
+ "quote",
3205
+ "syn 2.0.114",
3206
+ "wasm-bindgen-shared",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "wasm-bindgen-shared"
3211
+ version = "0.2.108"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
3214
+ dependencies = [
3215
+ "unicode-ident",
3216
+ ]
3217
+
3218
+ [[package]]
3219
+ name = "web-sys"
3220
+ version = "0.3.85"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
3223
+ dependencies = [
3224
+ "js-sys",
3225
+ "wasm-bindgen",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "web-time"
3230
+ version = "1.1.0"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3233
+ dependencies = [
3234
+ "js-sys",
3235
+ "wasm-bindgen",
3236
+ ]
3237
+
3238
+ [[package]]
3239
+ name = "whoami"
3240
+ version = "2.1.0"
3241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3242
+ checksum = "8fae98cf96deed1b7572272dfc777713c249ae40aa1cf8862e091e8b745f5361"
3243
+ dependencies = [
3244
+ "libredox",
3245
+ "wasite",
3246
+ "web-sys",
3247
+ ]
3248
+
3249
+ [[package]]
3250
+ name = "winapi"
3251
+ version = "0.3.9"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3254
+ dependencies = [
3255
+ "winapi-i686-pc-windows-gnu",
3256
+ "winapi-x86_64-pc-windows-gnu",
3257
+ ]
3258
+
3259
+ [[package]]
3260
+ name = "winapi-i686-pc-windows-gnu"
3261
+ version = "0.4.0"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3264
+
3265
+ [[package]]
3266
+ name = "winapi-util"
3267
+ version = "0.1.11"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3270
+ dependencies = [
3271
+ "windows-sys 0.61.2",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "winapi-x86_64-pc-windows-gnu"
3276
+ version = "0.4.0"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3279
+
3280
+ [[package]]
3281
+ name = "windows"
3282
+ version = "0.48.0"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3285
+ dependencies = [
3286
+ "windows-targets 0.48.5",
3287
+ ]
3288
+
3289
+ [[package]]
3290
+ name = "windows-core"
3291
+ version = "0.62.2"
3292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3293
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3294
+ dependencies = [
3295
+ "windows-implement",
3296
+ "windows-interface",
3297
+ "windows-link",
3298
+ "windows-result",
3299
+ "windows-strings",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "windows-implement"
3304
+ version = "0.60.2"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3307
+ dependencies = [
3308
+ "proc-macro2",
3309
+ "quote",
3310
+ "syn 2.0.114",
3311
+ ]
3312
+
3313
+ [[package]]
3314
+ name = "windows-interface"
3315
+ version = "0.59.3"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3318
+ dependencies = [
3319
+ "proc-macro2",
3320
+ "quote",
3321
+ "syn 2.0.114",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "windows-link"
3326
+ version = "0.2.1"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3329
+
3330
+ [[package]]
3331
+ name = "windows-registry"
3332
+ version = "0.6.1"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3335
+ dependencies = [
3336
+ "windows-link",
3337
+ "windows-result",
3338
+ "windows-strings",
3339
+ ]
3340
+
3341
+ [[package]]
3342
+ name = "windows-result"
3343
+ version = "0.4.1"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3346
+ dependencies = [
3347
+ "windows-link",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "windows-strings"
3352
+ version = "0.5.1"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3355
+ dependencies = [
3356
+ "windows-link",
3357
+ ]
3358
+
3359
+ [[package]]
3360
+ name = "windows-sys"
3361
+ version = "0.52.0"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3364
+ dependencies = [
3365
+ "windows-targets 0.52.6",
3366
+ ]
3367
+
3368
+ [[package]]
3369
+ name = "windows-sys"
3370
+ version = "0.59.0"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3373
+ dependencies = [
3374
+ "windows-targets 0.52.6",
3375
+ ]
3376
+
3377
+ [[package]]
3378
+ name = "windows-sys"
3379
+ version = "0.60.2"
3380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3381
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3382
+ dependencies = [
3383
+ "windows-targets 0.53.5",
3384
+ ]
3385
+
3386
+ [[package]]
3387
+ name = "windows-sys"
3388
+ version = "0.61.2"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3391
+ dependencies = [
3392
+ "windows-link",
3393
+ ]
3394
+
3395
+ [[package]]
3396
+ name = "windows-targets"
3397
+ version = "0.48.5"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3400
+ dependencies = [
3401
+ "windows_aarch64_gnullvm 0.48.5",
3402
+ "windows_aarch64_msvc 0.48.5",
3403
+ "windows_i686_gnu 0.48.5",
3404
+ "windows_i686_msvc 0.48.5",
3405
+ "windows_x86_64_gnu 0.48.5",
3406
+ "windows_x86_64_gnullvm 0.48.5",
3407
+ "windows_x86_64_msvc 0.48.5",
3408
+ ]
3409
+
3410
+ [[package]]
3411
+ name = "windows-targets"
3412
+ version = "0.52.6"
3413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3414
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3415
+ dependencies = [
3416
+ "windows_aarch64_gnullvm 0.52.6",
3417
+ "windows_aarch64_msvc 0.52.6",
3418
+ "windows_i686_gnu 0.52.6",
3419
+ "windows_i686_gnullvm 0.52.6",
3420
+ "windows_i686_msvc 0.52.6",
3421
+ "windows_x86_64_gnu 0.52.6",
3422
+ "windows_x86_64_gnullvm 0.52.6",
3423
+ "windows_x86_64_msvc 0.52.6",
3424
+ ]
3425
+
3426
+ [[package]]
3427
+ name = "windows-targets"
3428
+ version = "0.53.5"
3429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3430
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3431
+ dependencies = [
3432
+ "windows-link",
3433
+ "windows_aarch64_gnullvm 0.53.1",
3434
+ "windows_aarch64_msvc 0.53.1",
3435
+ "windows_i686_gnu 0.53.1",
3436
+ "windows_i686_gnullvm 0.53.1",
3437
+ "windows_i686_msvc 0.53.1",
3438
+ "windows_x86_64_gnu 0.53.1",
3439
+ "windows_x86_64_gnullvm 0.53.1",
3440
+ "windows_x86_64_msvc 0.53.1",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "windows_aarch64_gnullvm"
3445
+ version = "0.48.5"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3448
+
3449
+ [[package]]
3450
+ name = "windows_aarch64_gnullvm"
3451
+ version = "0.52.6"
3452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3453
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3454
+
3455
+ [[package]]
3456
+ name = "windows_aarch64_gnullvm"
3457
+ version = "0.53.1"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3460
+
3461
+ [[package]]
3462
+ name = "windows_aarch64_msvc"
3463
+ version = "0.48.5"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3466
+
3467
+ [[package]]
3468
+ name = "windows_aarch64_msvc"
3469
+ version = "0.52.6"
3470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3471
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3472
+
3473
+ [[package]]
3474
+ name = "windows_aarch64_msvc"
3475
+ version = "0.53.1"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3478
+
3479
+ [[package]]
3480
+ name = "windows_i686_gnu"
3481
+ version = "0.48.5"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3484
+
3485
+ [[package]]
3486
+ name = "windows_i686_gnu"
3487
+ version = "0.52.6"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3490
+
3491
+ [[package]]
3492
+ name = "windows_i686_gnu"
3493
+ version = "0.53.1"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3496
+
3497
+ [[package]]
3498
+ name = "windows_i686_gnullvm"
3499
+ version = "0.52.6"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3502
+
3503
+ [[package]]
3504
+ name = "windows_i686_gnullvm"
3505
+ version = "0.53.1"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3508
+
3509
+ [[package]]
3510
+ name = "windows_i686_msvc"
3511
+ version = "0.48.5"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3514
+
3515
+ [[package]]
3516
+ name = "windows_i686_msvc"
3517
+ version = "0.52.6"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3520
+
3521
+ [[package]]
3522
+ name = "windows_i686_msvc"
3523
+ version = "0.53.1"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3526
+
3527
+ [[package]]
3528
+ name = "windows_x86_64_gnu"
3529
+ version = "0.48.5"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3532
+
3533
+ [[package]]
3534
+ name = "windows_x86_64_gnu"
3535
+ version = "0.52.6"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3538
+
3539
+ [[package]]
3540
+ name = "windows_x86_64_gnu"
3541
+ version = "0.53.1"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3544
+
3545
+ [[package]]
3546
+ name = "windows_x86_64_gnullvm"
3547
+ version = "0.48.5"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3550
+
3551
+ [[package]]
3552
+ name = "windows_x86_64_gnullvm"
3553
+ version = "0.52.6"
3554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3555
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3556
+
3557
+ [[package]]
3558
+ name = "windows_x86_64_gnullvm"
3559
+ version = "0.53.1"
3560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3561
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3562
+
3563
+ [[package]]
3564
+ name = "windows_x86_64_msvc"
3565
+ version = "0.48.5"
3566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3567
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3568
+
3569
+ [[package]]
3570
+ name = "windows_x86_64_msvc"
3571
+ version = "0.52.6"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3574
+
3575
+ [[package]]
3576
+ name = "windows_x86_64_msvc"
3577
+ version = "0.53.1"
3578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3579
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3580
+
3581
+ [[package]]
3582
+ name = "winnow"
3583
+ version = "0.7.14"
3584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3585
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3586
+ dependencies = [
3587
+ "memchr",
3588
+ ]
3589
+
3590
+ [[package]]
3591
+ name = "wit-bindgen"
3592
+ version = "0.51.0"
3593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3594
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3595
+
3596
+ [[package]]
3597
+ name = "writeable"
3598
+ version = "0.6.2"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3601
+
3602
+ [[package]]
3603
+ name = "yoke"
3604
+ version = "0.8.1"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3607
+ dependencies = [
3608
+ "stable_deref_trait",
3609
+ "yoke-derive",
3610
+ "zerofrom",
3611
+ ]
3612
+
3613
+ [[package]]
3614
+ name = "yoke-derive"
3615
+ version = "0.8.1"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3618
+ dependencies = [
3619
+ "proc-macro2",
3620
+ "quote",
3621
+ "syn 2.0.114",
3622
+ "synstructure",
3623
+ ]
3624
+
3625
+ [[package]]
3626
+ name = "zerocopy"
3627
+ version = "0.8.39"
3628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3629
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
3630
+ dependencies = [
3631
+ "zerocopy-derive",
3632
+ ]
3633
+
3634
+ [[package]]
3635
+ name = "zerocopy-derive"
3636
+ version = "0.8.39"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
3639
+ dependencies = [
3640
+ "proc-macro2",
3641
+ "quote",
3642
+ "syn 2.0.114",
3643
+ ]
3644
+
3645
+ [[package]]
3646
+ name = "zerofrom"
3647
+ version = "0.1.6"
3648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3649
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3650
+ dependencies = [
3651
+ "zerofrom-derive",
3652
+ ]
3653
+
3654
+ [[package]]
3655
+ name = "zerofrom-derive"
3656
+ version = "0.1.6"
3657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3658
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3659
+ dependencies = [
3660
+ "proc-macro2",
3661
+ "quote",
3662
+ "syn 2.0.114",
3663
+ "synstructure",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "zeroize"
3668
+ version = "1.8.2"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3671
+
3672
+ [[package]]
3673
+ name = "zerotrie"
3674
+ version = "0.2.3"
3675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3676
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3677
+ dependencies = [
3678
+ "displaydoc",
3679
+ "yoke",
3680
+ "zerofrom",
3681
+ ]
3682
+
3683
+ [[package]]
3684
+ name = "zerovec"
3685
+ version = "0.11.5"
3686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3687
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3688
+ dependencies = [
3689
+ "yoke",
3690
+ "zerofrom",
3691
+ "zerovec-derive",
3692
+ ]
3693
+
3694
+ [[package]]
3695
+ name = "zerovec-derive"
3696
+ version = "0.11.2"
3697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3698
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3699
+ dependencies = [
3700
+ "proc-macro2",
3701
+ "quote",
3702
+ "syn 2.0.114",
3703
+ ]
3704
+
3705
+ [[package]]
3706
+ name = "zmij"
3707
+ version = "1.0.20"
3708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3709
+ checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"