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