smbcloud-cli 0.3.36__tar.gz → 0.3.38__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.
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/Cargo.lock +921 -313
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/Cargo.toml +5 -2
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/PKG-INFO +9 -7
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/README.md +7 -5
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/Cargo.toml +5 -4
- smbcloud_cli-0.3.38/crates/cli/README.md +90 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/logout/mod.rs +9 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/me/mod.rs +5 -29
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/known_hosts.rs +0 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/process_deploy_nextjs_ssr.rs +6 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/lib.rs +2 -3
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/main.rs +19 -9
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/crud_delete.rs +6 -7
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/crud_read.rs +12 -60
- smbcloud_cli-0.3.38/crates/cli/src/project/deployment.rs +55 -0
- smbcloud_cli-0.3.38/crates/cli/src/token/clear_smb_token.rs +11 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/token/mod.rs +1 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/confirm_dialog.rs +236 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/deployment_detail_view.rs +253 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/deployment_table.rs +292 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/me_view.rs +224 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/ui/mod.rs +8 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/project_detail_view.rs +235 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/project_table.rs +283 -0
- smbcloud_cli-0.3.38/crates/cli/src/ui/theme.rs +24 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/Cargo.toml +1 -3
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/lib.rs +0 -3
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/login.rs +0 -26
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/logout.rs +0 -38
- smbcloud_cli-0.3.38/crates/smbcloud-auth/src/me.rs +25 -0
- smbcloud_cli-0.3.38/crates/smbcloud-auth/src/remove.rs +24 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/signup.rs +0 -23
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/Cargo.toml +1 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/runner.rs +2 -2
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-network/Cargo.toml +1 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-network/src/network.rs +4 -4
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking/Cargo.toml +1 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking/src/constants.rs +0 -2
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/Cargo.toml +1 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-utils/Cargo.toml +1 -1
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/pyproject.toml +1 -1
- smbcloud_cli-0.3.36/crates/cli/README.md +0 -79
- smbcloud_cli-0.3.36/crates/cli/src/project/deployment.rs +0 -112
- smbcloud_cli-0.3.36/crates/smbcloud-auth/src/me.rs +0 -44
- smbcloud_cli-0.3.36/crates/smbcloud-auth/src/remove.rs +0 -43
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/cli.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/forgot/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/lib.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/login/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/login/process.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/signup/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/account/signup/process.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/cli/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/config.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/detect_runner.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/git.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/process_deploy.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/process_deploy_rails.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/process_deploy_vite_spa.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/remote_messages.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/rsync_deploy.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/setup.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/setup_create_new_project.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/setup_project.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/deploy/setup_select_project.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/cli.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/crud_create.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/crud_update.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/project/process.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/token/get_smb_token.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/token/is_logged_in.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/cli/src/token/smb_token_file_path.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/.gitignore +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/README.md +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/apple.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/check_email.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/client_credentials.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oauth/get_account_status.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oauth/get_consent_url.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oauth/get_profile.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oauth/get_token.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oauth/mod.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oauth/provider.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/oidc.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/resend_email_verification.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/resend_reset_password_instruction.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-auth/src/reset_password.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/README.md +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/account.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/app_auth.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/error_codes.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/forgot.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/frontend_app.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/lib.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/login.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/oauth.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/project.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/repository.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/reset_password_response.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-model/src/signup.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-network/README.md +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-network/src/environment.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-network/src/lib.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking/README.md +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking/src/lib.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking/src/smb_client.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/README.md +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_frontend_app_read.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_create.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_delete.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_deployment_create.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_deployment_read.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_deployment_update.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_read.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/crud_project_update.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/lib.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-networking-project/src/url_builder.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-utils/README.md +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-utils/src/config.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-utils/src/lib.rs +0 -0
- {smbcloud_cli-0.3.36 → smbcloud_cli-0.3.38}/crates/smbcloud-utils/src/write_config.rs +0 -0
|
@@ -24,6 +24,12 @@ dependencies = [
|
|
|
24
24
|
"memchr",
|
|
25
25
|
]
|
|
26
26
|
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "allocator-api2"
|
|
29
|
+
version = "0.2.21"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
32
|
+
|
|
27
33
|
[[package]]
|
|
28
34
|
name = "android_system_properties"
|
|
29
35
|
version = "0.1.5"
|
|
@@ -44,9 +50,9 @@ dependencies = [
|
|
|
44
50
|
|
|
45
51
|
[[package]]
|
|
46
52
|
name = "anstream"
|
|
47
|
-
version = "0.
|
|
53
|
+
version = "1.0.0"
|
|
48
54
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
-
checksum = "
|
|
55
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
50
56
|
dependencies = [
|
|
51
57
|
"anstyle",
|
|
52
58
|
"anstyle-parse",
|
|
@@ -59,15 +65,15 @@ dependencies = [
|
|
|
59
65
|
|
|
60
66
|
[[package]]
|
|
61
67
|
name = "anstyle"
|
|
62
|
-
version = "1.0.
|
|
68
|
+
version = "1.0.14"
|
|
63
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
-
checksum = "
|
|
70
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
65
71
|
|
|
66
72
|
[[package]]
|
|
67
73
|
name = "anstyle-parse"
|
|
68
|
-
version = "0.
|
|
74
|
+
version = "1.0.0"
|
|
69
75
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "
|
|
76
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
71
77
|
dependencies = [
|
|
72
78
|
"utf8parse",
|
|
73
79
|
]
|
|
@@ -94,9 +100,9 @@ dependencies = [
|
|
|
94
100
|
|
|
95
101
|
[[package]]
|
|
96
102
|
name = "anyhow"
|
|
97
|
-
version = "1.0.
|
|
103
|
+
version = "1.0.102"
|
|
98
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
-
checksum = "
|
|
105
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
100
106
|
|
|
101
107
|
[[package]]
|
|
102
108
|
name = "async-trait"
|
|
@@ -106,7 +112,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
|
106
112
|
dependencies = [
|
|
107
113
|
"proc-macro2",
|
|
108
114
|
"quote",
|
|
109
|
-
"syn 2.0.
|
|
115
|
+
"syn 2.0.117",
|
|
110
116
|
]
|
|
111
117
|
|
|
112
118
|
[[package]]
|
|
@@ -146,9 +152,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
146
152
|
|
|
147
153
|
[[package]]
|
|
148
154
|
name = "bitflags"
|
|
149
|
-
version = "2.
|
|
155
|
+
version = "2.11.0"
|
|
150
156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
157
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
152
158
|
|
|
153
159
|
[[package]]
|
|
154
160
|
name = "block-buffer"
|
|
@@ -159,11 +165,20 @@ dependencies = [
|
|
|
159
165
|
"generic-array",
|
|
160
166
|
]
|
|
161
167
|
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "block-buffer"
|
|
170
|
+
version = "0.12.0"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"hybrid-array",
|
|
175
|
+
]
|
|
176
|
+
|
|
162
177
|
[[package]]
|
|
163
178
|
name = "bumpalo"
|
|
164
|
-
version = "3.
|
|
179
|
+
version = "3.20.2"
|
|
165
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
181
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
167
182
|
|
|
168
183
|
[[package]]
|
|
169
184
|
name = "bytecount"
|
|
@@ -183,11 +198,26 @@ version = "1.11.1"
|
|
|
183
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
199
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
185
200
|
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "cassowary"
|
|
203
|
+
version = "0.3.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "castaway"
|
|
209
|
+
version = "0.2.4"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"rustversion",
|
|
214
|
+
]
|
|
215
|
+
|
|
186
216
|
[[package]]
|
|
187
217
|
name = "cc"
|
|
188
|
-
version = "1.2.
|
|
218
|
+
version = "1.2.60"
|
|
189
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
-
checksum = "
|
|
220
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
191
221
|
dependencies = [
|
|
192
222
|
"find-msvc-tools",
|
|
193
223
|
"jobserver",
|
|
@@ -207,11 +237,22 @@ version = "0.2.1"
|
|
|
207
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
238
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
209
239
|
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "chacha20"
|
|
242
|
+
version = "0.10.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"cfg-if",
|
|
247
|
+
"cpufeatures 0.3.0",
|
|
248
|
+
"rand_core 0.10.0",
|
|
249
|
+
]
|
|
250
|
+
|
|
210
251
|
[[package]]
|
|
211
252
|
name = "chrono"
|
|
212
|
-
version = "0.4.
|
|
253
|
+
version = "0.4.44"
|
|
213
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
-
checksum = "
|
|
255
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
215
256
|
dependencies = [
|
|
216
257
|
"iana-time-zone",
|
|
217
258
|
"js-sys",
|
|
@@ -238,9 +279,9 @@ dependencies = [
|
|
|
238
279
|
|
|
239
280
|
[[package]]
|
|
240
281
|
name = "clap"
|
|
241
|
-
version = "4.
|
|
282
|
+
version = "4.6.0"
|
|
242
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "
|
|
284
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
244
285
|
dependencies = [
|
|
245
286
|
"clap_builder",
|
|
246
287
|
"clap_derive",
|
|
@@ -248,9 +289,9 @@ dependencies = [
|
|
|
248
289
|
|
|
249
290
|
[[package]]
|
|
250
291
|
name = "clap_builder"
|
|
251
|
-
version = "4.
|
|
292
|
+
version = "4.6.0"
|
|
252
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
-
checksum = "
|
|
294
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
254
295
|
dependencies = [
|
|
255
296
|
"anstream",
|
|
256
297
|
"anstyle",
|
|
@@ -260,37 +301,57 @@ dependencies = [
|
|
|
260
301
|
|
|
261
302
|
[[package]]
|
|
262
303
|
name = "clap_derive"
|
|
263
|
-
version = "4.
|
|
304
|
+
version = "4.6.0"
|
|
264
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
-
checksum = "
|
|
306
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
266
307
|
dependencies = [
|
|
267
308
|
"heck 0.5.0",
|
|
268
309
|
"proc-macro2",
|
|
269
310
|
"quote",
|
|
270
|
-
"syn 2.0.
|
|
311
|
+
"syn 2.0.117",
|
|
271
312
|
]
|
|
272
313
|
|
|
273
314
|
[[package]]
|
|
274
315
|
name = "clap_lex"
|
|
275
|
-
version = "
|
|
316
|
+
version = "1.1.0"
|
|
276
317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
-
checksum = "
|
|
318
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
278
319
|
|
|
279
320
|
[[package]]
|
|
280
321
|
name = "clap_mangen"
|
|
281
|
-
version = "0.2.
|
|
322
|
+
version = "0.2.33"
|
|
282
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
-
checksum = "
|
|
324
|
+
checksum = "7e30ffc187e2e3aeafcd1c6e2aa416e29739454c0ccaa419226d5ecd181f2d78"
|
|
284
325
|
dependencies = [
|
|
285
|
-
"clap 4.
|
|
326
|
+
"clap 4.6.0",
|
|
286
327
|
"roff",
|
|
287
328
|
]
|
|
288
329
|
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "cmov"
|
|
332
|
+
version = "0.5.3"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
|
|
335
|
+
|
|
289
336
|
[[package]]
|
|
290
337
|
name = "colorchoice"
|
|
291
|
-
version = "1.0.
|
|
338
|
+
version = "1.0.5"
|
|
292
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
-
checksum = "
|
|
340
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "compact_str"
|
|
344
|
+
version = "0.8.1"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"castaway",
|
|
349
|
+
"cfg-if",
|
|
350
|
+
"itoa",
|
|
351
|
+
"rustversion",
|
|
352
|
+
"ryu",
|
|
353
|
+
"static_assertions",
|
|
354
|
+
]
|
|
294
355
|
|
|
295
356
|
[[package]]
|
|
296
357
|
name = "console"
|
|
@@ -301,23 +362,28 @@ dependencies = [
|
|
|
301
362
|
"encode_unicode",
|
|
302
363
|
"libc",
|
|
303
364
|
"once_cell",
|
|
304
|
-
"unicode-width 0.2.
|
|
365
|
+
"unicode-width 0.2.0",
|
|
305
366
|
"windows-sys 0.59.0",
|
|
306
367
|
]
|
|
307
368
|
|
|
308
369
|
[[package]]
|
|
309
370
|
name = "console"
|
|
310
|
-
version = "0.16.
|
|
371
|
+
version = "0.16.3"
|
|
311
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
-
checksum = "
|
|
373
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
313
374
|
dependencies = [
|
|
314
375
|
"encode_unicode",
|
|
315
376
|
"libc",
|
|
316
|
-
"
|
|
317
|
-
"unicode-width 0.2.2",
|
|
377
|
+
"unicode-width 0.2.0",
|
|
318
378
|
"windows-sys 0.61.2",
|
|
319
379
|
]
|
|
320
380
|
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "const-oid"
|
|
383
|
+
version = "0.10.2"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
386
|
+
|
|
321
387
|
[[package]]
|
|
322
388
|
name = "convert_case"
|
|
323
389
|
version = "0.6.0"
|
|
@@ -352,6 +418,40 @@ dependencies = [
|
|
|
352
418
|
"libc",
|
|
353
419
|
]
|
|
354
420
|
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "cpufeatures"
|
|
423
|
+
version = "0.3.0"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"libc",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "crossterm"
|
|
432
|
+
version = "0.28.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"bitflags 2.11.0",
|
|
437
|
+
"crossterm_winapi",
|
|
438
|
+
"mio",
|
|
439
|
+
"parking_lot",
|
|
440
|
+
"rustix 0.38.44",
|
|
441
|
+
"signal-hook",
|
|
442
|
+
"signal-hook-mio",
|
|
443
|
+
"winapi",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "crossterm_winapi"
|
|
448
|
+
version = "0.9.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"winapi",
|
|
453
|
+
]
|
|
454
|
+
|
|
355
455
|
[[package]]
|
|
356
456
|
name = "crypto-common"
|
|
357
457
|
version = "0.1.7"
|
|
@@ -362,11 +462,63 @@ dependencies = [
|
|
|
362
462
|
"typenum",
|
|
363
463
|
]
|
|
364
464
|
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "crypto-common"
|
|
467
|
+
version = "0.2.1"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"hybrid-array",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "ctutils"
|
|
476
|
+
version = "0.4.2"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"cmov",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "darling"
|
|
485
|
+
version = "0.23.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"darling_core",
|
|
490
|
+
"darling_macro",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "darling_core"
|
|
495
|
+
version = "0.23.0"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"ident_case",
|
|
500
|
+
"proc-macro2",
|
|
501
|
+
"quote",
|
|
502
|
+
"strsim 0.11.1",
|
|
503
|
+
"syn 2.0.117",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "darling_macro"
|
|
508
|
+
version = "0.23.0"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"darling_core",
|
|
513
|
+
"quote",
|
|
514
|
+
"syn 2.0.117",
|
|
515
|
+
]
|
|
516
|
+
|
|
365
517
|
[[package]]
|
|
366
518
|
name = "deranged"
|
|
367
|
-
version = "0.5.
|
|
519
|
+
version = "0.5.8"
|
|
368
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
521
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
370
522
|
dependencies = [
|
|
371
523
|
"powerfmt",
|
|
372
524
|
]
|
|
@@ -390,9 +542,20 @@ version = "0.10.7"
|
|
|
390
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
543
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
392
544
|
dependencies = [
|
|
393
|
-
"block-buffer",
|
|
394
|
-
"crypto-common",
|
|
395
|
-
|
|
545
|
+
"block-buffer 0.10.4",
|
|
546
|
+
"crypto-common 0.1.7",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "digest"
|
|
551
|
+
version = "0.11.2"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"block-buffer 0.12.0",
|
|
556
|
+
"const-oid",
|
|
557
|
+
"crypto-common 0.2.1",
|
|
558
|
+
"ctutils",
|
|
396
559
|
]
|
|
397
560
|
|
|
398
561
|
[[package]]
|
|
@@ -424,37 +587,14 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
424
587
|
dependencies = [
|
|
425
588
|
"proc-macro2",
|
|
426
589
|
"quote",
|
|
427
|
-
"syn 2.0.
|
|
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",
|
|
590
|
+
"syn 2.0.117",
|
|
444
591
|
]
|
|
445
592
|
|
|
446
593
|
[[package]]
|
|
447
|
-
name = "
|
|
448
|
-
version = "
|
|
594
|
+
name = "either"
|
|
595
|
+
version = "1.15.0"
|
|
449
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
-
checksum = "
|
|
451
|
-
dependencies = [
|
|
452
|
-
"dotenv",
|
|
453
|
-
"proc-macro-hack",
|
|
454
|
-
"proc-macro2",
|
|
455
|
-
"quote",
|
|
456
|
-
"syn 1.0.109",
|
|
457
|
-
]
|
|
597
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
458
598
|
|
|
459
599
|
[[package]]
|
|
460
600
|
name = "encode_unicode"
|
|
@@ -486,9 +626,9 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
|
486
626
|
|
|
487
627
|
[[package]]
|
|
488
628
|
name = "fastrand"
|
|
489
|
-
version = "2.
|
|
629
|
+
version = "2.4.1"
|
|
490
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
631
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
492
632
|
|
|
493
633
|
[[package]]
|
|
494
634
|
name = "find-msvc-tools"
|
|
@@ -502,6 +642,12 @@ version = "1.0.7"
|
|
|
502
642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
643
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
504
644
|
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "foldhash"
|
|
647
|
+
version = "0.1.5"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
650
|
+
|
|
505
651
|
[[package]]
|
|
506
652
|
name = "foreign-types"
|
|
507
653
|
version = "0.3.2"
|
|
@@ -528,9 +674,9 @@ dependencies = [
|
|
|
528
674
|
|
|
529
675
|
[[package]]
|
|
530
676
|
name = "futures-channel"
|
|
531
|
-
version = "0.3.
|
|
677
|
+
version = "0.3.32"
|
|
532
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
-
checksum = "
|
|
679
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
534
680
|
dependencies = [
|
|
535
681
|
"futures-core",
|
|
536
682
|
"futures-sink",
|
|
@@ -538,33 +684,32 @@ dependencies = [
|
|
|
538
684
|
|
|
539
685
|
[[package]]
|
|
540
686
|
name = "futures-core"
|
|
541
|
-
version = "0.3.
|
|
687
|
+
version = "0.3.32"
|
|
542
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
-
checksum = "
|
|
689
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
544
690
|
|
|
545
691
|
[[package]]
|
|
546
692
|
name = "futures-sink"
|
|
547
|
-
version = "0.3.
|
|
693
|
+
version = "0.3.32"
|
|
548
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "
|
|
695
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
550
696
|
|
|
551
697
|
[[package]]
|
|
552
698
|
name = "futures-task"
|
|
553
|
-
version = "0.3.
|
|
699
|
+
version = "0.3.32"
|
|
554
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
701
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
556
702
|
|
|
557
703
|
[[package]]
|
|
558
704
|
name = "futures-util"
|
|
559
|
-
version = "0.3.
|
|
705
|
+
version = "0.3.32"
|
|
560
706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
-
checksum = "
|
|
707
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
562
708
|
dependencies = [
|
|
563
709
|
"futures-core",
|
|
564
710
|
"futures-sink",
|
|
565
711
|
"futures-task",
|
|
566
712
|
"pin-project-lite",
|
|
567
|
-
"pin-utils",
|
|
568
713
|
"slab",
|
|
569
714
|
]
|
|
570
715
|
|
|
@@ -623,18 +768,32 @@ dependencies = [
|
|
|
623
768
|
"cfg-if",
|
|
624
769
|
"js-sys",
|
|
625
770
|
"libc",
|
|
626
|
-
"r-efi",
|
|
771
|
+
"r-efi 5.3.0",
|
|
627
772
|
"wasip2",
|
|
628
773
|
"wasm-bindgen",
|
|
629
774
|
]
|
|
630
775
|
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "getrandom"
|
|
778
|
+
version = "0.4.2"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"cfg-if",
|
|
783
|
+
"libc",
|
|
784
|
+
"r-efi 6.0.0",
|
|
785
|
+
"rand_core 0.10.0",
|
|
786
|
+
"wasip2",
|
|
787
|
+
"wasip3",
|
|
788
|
+
]
|
|
789
|
+
|
|
631
790
|
[[package]]
|
|
632
791
|
name = "git2"
|
|
633
792
|
version = "0.20.4"
|
|
634
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
794
|
checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
|
|
636
795
|
dependencies = [
|
|
637
|
-
"bitflags 2.
|
|
796
|
+
"bitflags 2.11.0",
|
|
638
797
|
"libc",
|
|
639
798
|
"libgit2-sys",
|
|
640
799
|
"log",
|
|
@@ -644,18 +803,21 @@ dependencies = [
|
|
|
644
803
|
]
|
|
645
804
|
|
|
646
805
|
[[package]]
|
|
647
|
-
name = "
|
|
648
|
-
version = "0.
|
|
806
|
+
name = "hashbrown"
|
|
807
|
+
version = "0.15.5"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
649
810
|
dependencies = [
|
|
650
|
-
"
|
|
651
|
-
"
|
|
811
|
+
"allocator-api2",
|
|
812
|
+
"equivalent",
|
|
813
|
+
"foldhash",
|
|
652
814
|
]
|
|
653
815
|
|
|
654
816
|
[[package]]
|
|
655
817
|
name = "hashbrown"
|
|
656
|
-
version = "0.
|
|
818
|
+
version = "0.17.0"
|
|
657
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
-
checksum = "
|
|
820
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
659
821
|
|
|
660
822
|
[[package]]
|
|
661
823
|
name = "heck"
|
|
@@ -689,11 +851,11 @@ dependencies = [
|
|
|
689
851
|
|
|
690
852
|
[[package]]
|
|
691
853
|
name = "hmac"
|
|
692
|
-
version = "0.
|
|
854
|
+
version = "0.13.0"
|
|
693
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
856
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
695
857
|
dependencies = [
|
|
696
|
-
"digest",
|
|
858
|
+
"digest 0.11.2",
|
|
697
859
|
]
|
|
698
860
|
|
|
699
861
|
[[package]]
|
|
@@ -744,11 +906,20 @@ version = "1.10.1"
|
|
|
744
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
907
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
746
908
|
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "hybrid-array"
|
|
911
|
+
version = "0.4.10"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"typenum",
|
|
916
|
+
]
|
|
917
|
+
|
|
747
918
|
[[package]]
|
|
748
919
|
name = "hyper"
|
|
749
|
-
version = "1.
|
|
920
|
+
version = "1.9.0"
|
|
750
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
-
checksum = "
|
|
922
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
752
923
|
dependencies = [
|
|
753
924
|
"atomic-waker",
|
|
754
925
|
"bytes",
|
|
@@ -759,7 +930,6 @@ dependencies = [
|
|
|
759
930
|
"httparse",
|
|
760
931
|
"itoa",
|
|
761
932
|
"pin-project-lite",
|
|
762
|
-
"pin-utils",
|
|
763
933
|
"smallvec",
|
|
764
934
|
"tokio",
|
|
765
935
|
"want",
|
|
@@ -780,6 +950,7 @@ dependencies = [
|
|
|
780
950
|
"tokio",
|
|
781
951
|
"tokio-rustls",
|
|
782
952
|
"tower-service",
|
|
953
|
+
"webpki-roots",
|
|
783
954
|
]
|
|
784
955
|
|
|
785
956
|
[[package]]
|
|
@@ -831,12 +1002,13 @@ dependencies = [
|
|
|
831
1002
|
|
|
832
1003
|
[[package]]
|
|
833
1004
|
name = "icu_collections"
|
|
834
|
-
version = "2.
|
|
1005
|
+
version = "2.2.0"
|
|
835
1006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
-
checksum = "
|
|
1007
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
837
1008
|
dependencies = [
|
|
838
1009
|
"displaydoc",
|
|
839
1010
|
"potential_utf",
|
|
1011
|
+
"utf8_iter",
|
|
840
1012
|
"yoke",
|
|
841
1013
|
"zerofrom",
|
|
842
1014
|
"zerovec",
|
|
@@ -844,9 +1016,9 @@ dependencies = [
|
|
|
844
1016
|
|
|
845
1017
|
[[package]]
|
|
846
1018
|
name = "icu_locale_core"
|
|
847
|
-
version = "2.
|
|
1019
|
+
version = "2.2.0"
|
|
848
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
-
checksum = "
|
|
1021
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
850
1022
|
dependencies = [
|
|
851
1023
|
"displaydoc",
|
|
852
1024
|
"litemap",
|
|
@@ -857,9 +1029,9 @@ dependencies = [
|
|
|
857
1029
|
|
|
858
1030
|
[[package]]
|
|
859
1031
|
name = "icu_normalizer"
|
|
860
|
-
version = "2.
|
|
1032
|
+
version = "2.2.0"
|
|
861
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
-
checksum = "
|
|
1034
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
863
1035
|
dependencies = [
|
|
864
1036
|
"icu_collections",
|
|
865
1037
|
"icu_normalizer_data",
|
|
@@ -871,15 +1043,15 @@ dependencies = [
|
|
|
871
1043
|
|
|
872
1044
|
[[package]]
|
|
873
1045
|
name = "icu_normalizer_data"
|
|
874
|
-
version = "2.
|
|
1046
|
+
version = "2.2.0"
|
|
875
1047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
-
checksum = "
|
|
1048
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
877
1049
|
|
|
878
1050
|
[[package]]
|
|
879
1051
|
name = "icu_properties"
|
|
880
|
-
version = "2.
|
|
1052
|
+
version = "2.2.0"
|
|
881
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "
|
|
1054
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
883
1055
|
dependencies = [
|
|
884
1056
|
"icu_collections",
|
|
885
1057
|
"icu_locale_core",
|
|
@@ -891,15 +1063,15 @@ dependencies = [
|
|
|
891
1063
|
|
|
892
1064
|
[[package]]
|
|
893
1065
|
name = "icu_properties_data"
|
|
894
|
-
version = "2.
|
|
1066
|
+
version = "2.2.0"
|
|
895
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
-
checksum = "
|
|
1068
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
897
1069
|
|
|
898
1070
|
[[package]]
|
|
899
1071
|
name = "icu_provider"
|
|
900
|
-
version = "2.
|
|
1072
|
+
version = "2.2.0"
|
|
901
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
-
checksum = "
|
|
1074
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
903
1075
|
dependencies = [
|
|
904
1076
|
"displaydoc",
|
|
905
1077
|
"icu_locale_core",
|
|
@@ -910,6 +1082,18 @@ dependencies = [
|
|
|
910
1082
|
"zerovec",
|
|
911
1083
|
]
|
|
912
1084
|
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "id-arena"
|
|
1087
|
+
version = "2.3.0"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "ident_case"
|
|
1093
|
+
version = "1.0.1"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1096
|
+
|
|
913
1097
|
[[package]]
|
|
914
1098
|
name = "idna"
|
|
915
1099
|
version = "1.1.0"
|
|
@@ -933,12 +1117,14 @@ dependencies = [
|
|
|
933
1117
|
|
|
934
1118
|
[[package]]
|
|
935
1119
|
name = "indexmap"
|
|
936
|
-
version = "2.
|
|
1120
|
+
version = "2.14.0"
|
|
937
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "
|
|
1122
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
939
1123
|
dependencies = [
|
|
940
1124
|
"equivalent",
|
|
941
|
-
"hashbrown",
|
|
1125
|
+
"hashbrown 0.17.0",
|
|
1126
|
+
"serde",
|
|
1127
|
+
"serde_core",
|
|
942
1128
|
]
|
|
943
1129
|
|
|
944
1130
|
[[package]]
|
|
@@ -950,7 +1136,7 @@ dependencies = [
|
|
|
950
1136
|
"console 0.15.11",
|
|
951
1137
|
"number_prefix",
|
|
952
1138
|
"portable-atomic",
|
|
953
|
-
"unicode-width 0.2.
|
|
1139
|
+
"unicode-width 0.2.0",
|
|
954
1140
|
"web-time",
|
|
955
1141
|
]
|
|
956
1142
|
|
|
@@ -963,17 +1149,30 @@ dependencies = [
|
|
|
963
1149
|
"rustversion",
|
|
964
1150
|
]
|
|
965
1151
|
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "instability"
|
|
1154
|
+
version = "0.3.12"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"darling",
|
|
1159
|
+
"indoc",
|
|
1160
|
+
"proc-macro2",
|
|
1161
|
+
"quote",
|
|
1162
|
+
"syn 2.0.117",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
966
1165
|
[[package]]
|
|
967
1166
|
name = "ipnet"
|
|
968
|
-
version = "2.
|
|
1167
|
+
version = "2.12.0"
|
|
969
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
1169
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
971
1170
|
|
|
972
1171
|
[[package]]
|
|
973
1172
|
name = "iri-string"
|
|
974
|
-
version = "0.7.
|
|
1173
|
+
version = "0.7.12"
|
|
975
1174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
-
checksum = "
|
|
1175
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
977
1176
|
dependencies = [
|
|
978
1177
|
"memchr",
|
|
979
1178
|
"serde",
|
|
@@ -1004,11 +1203,20 @@ version = "1.70.2"
|
|
|
1004
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
1204
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1006
1205
|
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "itertools"
|
|
1208
|
+
version = "0.13.0"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"either",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1007
1215
|
[[package]]
|
|
1008
1216
|
name = "itoa"
|
|
1009
|
-
version = "1.0.
|
|
1217
|
+
version = "1.0.18"
|
|
1010
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1219
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1012
1220
|
|
|
1013
1221
|
[[package]]
|
|
1014
1222
|
name = "jobserver"
|
|
@@ -1022,10 +1230,12 @@ dependencies = [
|
|
|
1022
1230
|
|
|
1023
1231
|
[[package]]
|
|
1024
1232
|
name = "js-sys"
|
|
1025
|
-
version = "0.3.
|
|
1233
|
+
version = "0.3.95"
|
|
1026
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1235
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
1028
1236
|
dependencies = [
|
|
1237
|
+
"cfg-if",
|
|
1238
|
+
"futures-util",
|
|
1029
1239
|
"once_cell",
|
|
1030
1240
|
"wasm-bindgen",
|
|
1031
1241
|
]
|
|
@@ -1036,11 +1246,17 @@ version = "1.5.0"
|
|
|
1036
1246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
1247
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1038
1248
|
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "leb128fmt"
|
|
1251
|
+
version = "0.1.0"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1254
|
+
|
|
1039
1255
|
[[package]]
|
|
1040
1256
|
name = "libc"
|
|
1041
|
-
version = "0.2.
|
|
1257
|
+
version = "0.2.184"
|
|
1042
1258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
-
checksum = "
|
|
1259
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
1044
1260
|
|
|
1045
1261
|
[[package]]
|
|
1046
1262
|
name = "libgit2-sys"
|
|
@@ -1058,11 +1274,10 @@ dependencies = [
|
|
|
1058
1274
|
|
|
1059
1275
|
[[package]]
|
|
1060
1276
|
name = "libredox"
|
|
1061
|
-
version = "0.1.
|
|
1277
|
+
version = "0.1.16"
|
|
1062
1278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
-
checksum = "
|
|
1279
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
1064
1280
|
dependencies = [
|
|
1065
|
-
"bitflags 2.10.0",
|
|
1066
1281
|
"libc",
|
|
1067
1282
|
]
|
|
1068
1283
|
|
|
@@ -1082,9 +1297,9 @@ dependencies = [
|
|
|
1082
1297
|
|
|
1083
1298
|
[[package]]
|
|
1084
1299
|
name = "libz-sys"
|
|
1085
|
-
version = "1.1.
|
|
1300
|
+
version = "1.1.28"
|
|
1086
1301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "
|
|
1302
|
+
checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
|
|
1088
1303
|
dependencies = [
|
|
1089
1304
|
"cc",
|
|
1090
1305
|
"libc",
|
|
@@ -1094,15 +1309,21 @@ dependencies = [
|
|
|
1094
1309
|
|
|
1095
1310
|
[[package]]
|
|
1096
1311
|
name = "linux-raw-sys"
|
|
1097
|
-
version = "0.
|
|
1312
|
+
version = "0.4.15"
|
|
1098
1313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1314
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "linux-raw-sys"
|
|
1318
|
+
version = "0.12.1"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1100
1321
|
|
|
1101
1322
|
[[package]]
|
|
1102
1323
|
name = "litemap"
|
|
1103
|
-
version = "0.8.
|
|
1324
|
+
version = "0.8.2"
|
|
1104
1325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1326
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1106
1327
|
|
|
1107
1328
|
[[package]]
|
|
1108
1329
|
name = "lock_api"
|
|
@@ -1134,6 +1355,15 @@ dependencies = [
|
|
|
1134
1355
|
"tracing-subscriber",
|
|
1135
1356
|
]
|
|
1136
1357
|
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "lru"
|
|
1360
|
+
version = "0.12.5"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"hashbrown 0.15.5",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1137
1367
|
[[package]]
|
|
1138
1368
|
name = "lru-slab"
|
|
1139
1369
|
version = "0.1.2"
|
|
@@ -1163,17 +1393,17 @@ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
|
|
|
1163
1393
|
dependencies = [
|
|
1164
1394
|
"proc-macro2",
|
|
1165
1395
|
"quote",
|
|
1166
|
-
"syn 2.0.
|
|
1396
|
+
"syn 2.0.117",
|
|
1167
1397
|
]
|
|
1168
1398
|
|
|
1169
1399
|
[[package]]
|
|
1170
1400
|
name = "md-5"
|
|
1171
|
-
version = "0.
|
|
1401
|
+
version = "0.11.0"
|
|
1172
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "
|
|
1403
|
+
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
1174
1404
|
dependencies = [
|
|
1175
1405
|
"cfg-if",
|
|
1176
|
-
"digest",
|
|
1406
|
+
"digest 0.11.2",
|
|
1177
1407
|
]
|
|
1178
1408
|
|
|
1179
1409
|
[[package]]
|
|
@@ -1193,15 +1423,33 @@ dependencies = [
|
|
|
1193
1423
|
|
|
1194
1424
|
[[package]]
|
|
1195
1425
|
name = "mio"
|
|
1196
|
-
version = "1.
|
|
1426
|
+
version = "1.2.0"
|
|
1197
1427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
-
checksum = "
|
|
1428
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1199
1429
|
dependencies = [
|
|
1200
1430
|
"libc",
|
|
1431
|
+
"log",
|
|
1201
1432
|
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1202
1433
|
"windows-sys 0.61.2",
|
|
1203
1434
|
]
|
|
1204
1435
|
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "native-tls"
|
|
1438
|
+
version = "0.2.18"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"libc",
|
|
1443
|
+
"log",
|
|
1444
|
+
"openssl",
|
|
1445
|
+
"openssl-probe 0.2.1",
|
|
1446
|
+
"openssl-sys",
|
|
1447
|
+
"schannel",
|
|
1448
|
+
"security-framework",
|
|
1449
|
+
"security-framework-sys",
|
|
1450
|
+
"tempfile",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1205
1453
|
[[package]]
|
|
1206
1454
|
name = "nu-ansi-term"
|
|
1207
1455
|
version = "0.50.3"
|
|
@@ -1213,9 +1461,9 @@ dependencies = [
|
|
|
1213
1461
|
|
|
1214
1462
|
[[package]]
|
|
1215
1463
|
name = "num-conv"
|
|
1216
|
-
version = "0.2.
|
|
1464
|
+
version = "0.2.1"
|
|
1217
1465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
-
checksum = "
|
|
1466
|
+
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
1219
1467
|
|
|
1220
1468
|
[[package]]
|
|
1221
1469
|
name = "num-traits"
|
|
@@ -1232,11 +1480,29 @@ version = "0.4.0"
|
|
|
1232
1480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
1481
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
1234
1482
|
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "objc2-core-foundation"
|
|
1485
|
+
version = "0.3.2"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"bitflags 2.11.0",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "objc2-system-configuration"
|
|
1494
|
+
version = "0.3.2"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"objc2-core-foundation",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1235
1501
|
[[package]]
|
|
1236
1502
|
name = "once_cell"
|
|
1237
|
-
version = "1.21.
|
|
1503
|
+
version = "1.21.4"
|
|
1238
1504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
-
checksum = "
|
|
1505
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1240
1506
|
|
|
1241
1507
|
[[package]]
|
|
1242
1508
|
name = "once_cell_polyfill"
|
|
@@ -1257,11 +1523,11 @@ dependencies = [
|
|
|
1257
1523
|
|
|
1258
1524
|
[[package]]
|
|
1259
1525
|
name = "openssl"
|
|
1260
|
-
version = "0.10.
|
|
1526
|
+
version = "0.10.76"
|
|
1261
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "
|
|
1528
|
+
checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
|
|
1263
1529
|
dependencies = [
|
|
1264
|
-
"bitflags 2.
|
|
1530
|
+
"bitflags 2.11.0",
|
|
1265
1531
|
"cfg-if",
|
|
1266
1532
|
"foreign-types",
|
|
1267
1533
|
"libc",
|
|
@@ -1278,7 +1544,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
1278
1544
|
dependencies = [
|
|
1279
1545
|
"proc-macro2",
|
|
1280
1546
|
"quote",
|
|
1281
|
-
"syn 2.0.
|
|
1547
|
+
"syn 2.0.117",
|
|
1282
1548
|
]
|
|
1283
1549
|
|
|
1284
1550
|
[[package]]
|
|
@@ -1295,18 +1561,18 @@ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
|
1295
1561
|
|
|
1296
1562
|
[[package]]
|
|
1297
1563
|
name = "openssl-src"
|
|
1298
|
-
version = "300.
|
|
1564
|
+
version = "300.6.0+3.6.2"
|
|
1299
1565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
-
checksum = "
|
|
1566
|
+
checksum = "a8e8cbfd3a4a8c8f089147fd7aaa33cf8c7450c4d09f8f80698a0cf093abeff4"
|
|
1301
1567
|
dependencies = [
|
|
1302
1568
|
"cc",
|
|
1303
1569
|
]
|
|
1304
1570
|
|
|
1305
1571
|
[[package]]
|
|
1306
1572
|
name = "openssl-sys"
|
|
1307
|
-
version = "0.9.
|
|
1573
|
+
version = "0.9.112"
|
|
1308
1574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
-
checksum = "
|
|
1575
|
+
checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
|
|
1310
1576
|
dependencies = [
|
|
1311
1577
|
"cc",
|
|
1312
1578
|
"libc",
|
|
@@ -1329,7 +1595,7 @@ checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
|
|
|
1329
1595
|
dependencies = [
|
|
1330
1596
|
"bytecount",
|
|
1331
1597
|
"fnv",
|
|
1332
|
-
"unicode-width 0.2.
|
|
1598
|
+
"unicode-width 0.2.0",
|
|
1333
1599
|
]
|
|
1334
1600
|
|
|
1335
1601
|
[[package]]
|
|
@@ -1355,6 +1621,12 @@ dependencies = [
|
|
|
1355
1621
|
"windows-link",
|
|
1356
1622
|
]
|
|
1357
1623
|
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "paste"
|
|
1626
|
+
version = "1.0.15"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1629
|
+
|
|
1358
1630
|
[[package]]
|
|
1359
1631
|
name = "pathdiff"
|
|
1360
1632
|
version = "0.2.3"
|
|
@@ -1388,15 +1660,9 @@ dependencies = [
|
|
|
1388
1660
|
|
|
1389
1661
|
[[package]]
|
|
1390
1662
|
name = "pin-project-lite"
|
|
1391
|
-
version = "0.2.
|
|
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"
|
|
1663
|
+
version = "0.2.17"
|
|
1398
1664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "
|
|
1665
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1400
1666
|
|
|
1401
1667
|
[[package]]
|
|
1402
1668
|
name = "pkg-config"
|
|
@@ -1410,11 +1676,23 @@ version = "1.13.1"
|
|
|
1410
1676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
1677
|
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1412
1678
|
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "postgres-native-tls"
|
|
1681
|
+
version = "0.5.3"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "fef4de47bb81477e0c3deaf153a1b10ae176484713ff1640969f4cb96b653ebc"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"native-tls",
|
|
1686
|
+
"tokio",
|
|
1687
|
+
"tokio-native-tls",
|
|
1688
|
+
"tokio-postgres",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1413
1691
|
[[package]]
|
|
1414
1692
|
name = "postgres-protocol"
|
|
1415
|
-
version = "0.6.
|
|
1693
|
+
version = "0.6.11"
|
|
1416
1694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
-
checksum = "
|
|
1695
|
+
checksum = "56201207dac53e2f38e848e31b4b91616a6bb6e0c7205b77718994a7f49e70fc"
|
|
1418
1696
|
dependencies = [
|
|
1419
1697
|
"base64",
|
|
1420
1698
|
"byteorder",
|
|
@@ -1423,16 +1701,16 @@ dependencies = [
|
|
|
1423
1701
|
"hmac",
|
|
1424
1702
|
"md-5",
|
|
1425
1703
|
"memchr",
|
|
1426
|
-
"rand",
|
|
1427
|
-
"sha2",
|
|
1704
|
+
"rand 0.10.0",
|
|
1705
|
+
"sha2 0.11.0",
|
|
1428
1706
|
"stringprep",
|
|
1429
1707
|
]
|
|
1430
1708
|
|
|
1431
1709
|
[[package]]
|
|
1432
1710
|
name = "postgres-types"
|
|
1433
|
-
version = "0.2.
|
|
1711
|
+
version = "0.2.13"
|
|
1434
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "
|
|
1713
|
+
checksum = "8dc729a129e682e8d24170cd30ae1aa01b336b096cbb56df6d534ffec133d186"
|
|
1436
1714
|
dependencies = [
|
|
1437
1715
|
"bytes",
|
|
1438
1716
|
"fallible-iterator",
|
|
@@ -1441,9 +1719,9 @@ dependencies = [
|
|
|
1441
1719
|
|
|
1442
1720
|
[[package]]
|
|
1443
1721
|
name = "potential_utf"
|
|
1444
|
-
version = "0.1.
|
|
1722
|
+
version = "0.1.5"
|
|
1445
1723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
-
checksum = "
|
|
1724
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1447
1725
|
dependencies = [
|
|
1448
1726
|
"zerovec",
|
|
1449
1727
|
]
|
|
@@ -1463,6 +1741,16 @@ dependencies = [
|
|
|
1463
1741
|
"zerocopy",
|
|
1464
1742
|
]
|
|
1465
1743
|
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "prettyplease"
|
|
1746
|
+
version = "0.2.37"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1749
|
+
dependencies = [
|
|
1750
|
+
"proc-macro2",
|
|
1751
|
+
"syn 2.0.117",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1466
1754
|
[[package]]
|
|
1467
1755
|
name = "proc-macro-error"
|
|
1468
1756
|
version = "1.0.4"
|
|
@@ -1506,15 +1794,9 @@ dependencies = [
|
|
|
1506
1794
|
"proc-macro-error-attr2",
|
|
1507
1795
|
"proc-macro2",
|
|
1508
1796
|
"quote",
|
|
1509
|
-
"syn 2.0.
|
|
1797
|
+
"syn 2.0.117",
|
|
1510
1798
|
]
|
|
1511
1799
|
|
|
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
1800
|
[[package]]
|
|
1519
1801
|
name = "proc-macro2"
|
|
1520
1802
|
version = "1.0.106"
|
|
@@ -1571,7 +1853,7 @@ dependencies = [
|
|
|
1571
1853
|
"proc-macro2",
|
|
1572
1854
|
"pyo3-macros-backend",
|
|
1573
1855
|
"quote",
|
|
1574
|
-
"syn 2.0.
|
|
1856
|
+
"syn 2.0.117",
|
|
1575
1857
|
]
|
|
1576
1858
|
|
|
1577
1859
|
[[package]]
|
|
@@ -1584,7 +1866,7 @@ dependencies = [
|
|
|
1584
1866
|
"proc-macro2",
|
|
1585
1867
|
"pyo3-build-config",
|
|
1586
1868
|
"quote",
|
|
1587
|
-
"syn 2.0.
|
|
1869
|
+
"syn 2.0.117",
|
|
1588
1870
|
]
|
|
1589
1871
|
|
|
1590
1872
|
[[package]]
|
|
@@ -1619,14 +1901,14 @@ dependencies = [
|
|
|
1619
1901
|
|
|
1620
1902
|
[[package]]
|
|
1621
1903
|
name = "quinn-proto"
|
|
1622
|
-
version = "0.11.
|
|
1904
|
+
version = "0.11.14"
|
|
1623
1905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
-
checksum = "
|
|
1906
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1625
1907
|
dependencies = [
|
|
1626
1908
|
"bytes",
|
|
1627
1909
|
"getrandom 0.3.4",
|
|
1628
1910
|
"lru-slab",
|
|
1629
|
-
"rand",
|
|
1911
|
+
"rand 0.9.2",
|
|
1630
1912
|
"ring",
|
|
1631
1913
|
"rustc-hash",
|
|
1632
1914
|
"rustls",
|
|
@@ -1654,9 +1936,9 @@ dependencies = [
|
|
|
1654
1936
|
|
|
1655
1937
|
[[package]]
|
|
1656
1938
|
name = "quote"
|
|
1657
|
-
version = "1.0.
|
|
1939
|
+
version = "1.0.45"
|
|
1658
1940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
-
checksum = "
|
|
1941
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1660
1942
|
dependencies = [
|
|
1661
1943
|
"proc-macro2",
|
|
1662
1944
|
]
|
|
@@ -1667,6 +1949,12 @@ version = "5.3.0"
|
|
|
1667
1949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
1950
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1669
1951
|
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "r-efi"
|
|
1954
|
+
version = "6.0.0"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1957
|
+
|
|
1670
1958
|
[[package]]
|
|
1671
1959
|
name = "rand"
|
|
1672
1960
|
version = "0.9.2"
|
|
@@ -1674,7 +1962,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1674
1962
|
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1675
1963
|
dependencies = [
|
|
1676
1964
|
"rand_chacha",
|
|
1677
|
-
"rand_core",
|
|
1965
|
+
"rand_core 0.9.5",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "rand"
|
|
1970
|
+
version = "0.10.0"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"chacha20",
|
|
1975
|
+
"getrandom 0.4.2",
|
|
1976
|
+
"rand_core 0.10.0",
|
|
1678
1977
|
]
|
|
1679
1978
|
|
|
1680
1979
|
[[package]]
|
|
@@ -1684,7 +1983,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1684
1983
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1685
1984
|
dependencies = [
|
|
1686
1985
|
"ppv-lite86",
|
|
1687
|
-
"rand_core",
|
|
1986
|
+
"rand_core 0.9.5",
|
|
1688
1987
|
]
|
|
1689
1988
|
|
|
1690
1989
|
[[package]]
|
|
@@ -1696,13 +1995,40 @@ dependencies = [
|
|
|
1696
1995
|
"getrandom 0.3.4",
|
|
1697
1996
|
]
|
|
1698
1997
|
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "rand_core"
|
|
2000
|
+
version = "0.10.0"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "ratatui"
|
|
2006
|
+
version = "0.29.0"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
|
|
2009
|
+
dependencies = [
|
|
2010
|
+
"bitflags 2.11.0",
|
|
2011
|
+
"cassowary",
|
|
2012
|
+
"compact_str",
|
|
2013
|
+
"crossterm",
|
|
2014
|
+
"indoc",
|
|
2015
|
+
"instability",
|
|
2016
|
+
"itertools",
|
|
2017
|
+
"lru",
|
|
2018
|
+
"paste",
|
|
2019
|
+
"strum 0.26.3",
|
|
2020
|
+
"unicode-segmentation",
|
|
2021
|
+
"unicode-truncate",
|
|
2022
|
+
"unicode-width 0.2.0",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
1699
2025
|
[[package]]
|
|
1700
2026
|
name = "redox_syscall"
|
|
1701
2027
|
version = "0.5.18"
|
|
1702
2028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
2029
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1704
2030
|
dependencies = [
|
|
1705
|
-
"bitflags 2.
|
|
2031
|
+
"bitflags 2.11.0",
|
|
1706
2032
|
]
|
|
1707
2033
|
|
|
1708
2034
|
[[package]]
|
|
@@ -1741,9 +2067,9 @@ dependencies = [
|
|
|
1741
2067
|
|
|
1742
2068
|
[[package]]
|
|
1743
2069
|
name = "regex-syntax"
|
|
1744
|
-
version = "0.8.
|
|
2070
|
+
version = "0.8.10"
|
|
1745
2071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
-
checksum = "
|
|
2072
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1747
2073
|
|
|
1748
2074
|
[[package]]
|
|
1749
2075
|
name = "reqwest"
|
|
@@ -1781,6 +2107,7 @@ dependencies = [
|
|
|
1781
2107
|
"wasm-bindgen",
|
|
1782
2108
|
"wasm-bindgen-futures",
|
|
1783
2109
|
"web-sys",
|
|
2110
|
+
"webpki-roots",
|
|
1784
2111
|
]
|
|
1785
2112
|
|
|
1786
2113
|
[[package]]
|
|
@@ -1799,34 +2126,47 @@ dependencies = [
|
|
|
1799
2126
|
|
|
1800
2127
|
[[package]]
|
|
1801
2128
|
name = "roff"
|
|
1802
|
-
version = "
|
|
2129
|
+
version = "1.1.1"
|
|
1803
2130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
-
checksum = "
|
|
2131
|
+
checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189"
|
|
1805
2132
|
|
|
1806
2133
|
[[package]]
|
|
1807
2134
|
name = "rustc-hash"
|
|
1808
|
-
version = "2.1.
|
|
2135
|
+
version = "2.1.2"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "rustix"
|
|
2141
|
+
version = "0.38.44"
|
|
1809
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "
|
|
2143
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2144
|
+
dependencies = [
|
|
2145
|
+
"bitflags 2.11.0",
|
|
2146
|
+
"errno",
|
|
2147
|
+
"libc",
|
|
2148
|
+
"linux-raw-sys 0.4.15",
|
|
2149
|
+
"windows-sys 0.59.0",
|
|
2150
|
+
]
|
|
1811
2151
|
|
|
1812
2152
|
[[package]]
|
|
1813
2153
|
name = "rustix"
|
|
1814
|
-
version = "1.1.
|
|
2154
|
+
version = "1.1.4"
|
|
1815
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
2156
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1817
2157
|
dependencies = [
|
|
1818
|
-
"bitflags 2.
|
|
2158
|
+
"bitflags 2.11.0",
|
|
1819
2159
|
"errno",
|
|
1820
2160
|
"libc",
|
|
1821
|
-
"linux-raw-sys",
|
|
2161
|
+
"linux-raw-sys 0.12.1",
|
|
1822
2162
|
"windows-sys 0.61.2",
|
|
1823
2163
|
]
|
|
1824
2164
|
|
|
1825
2165
|
[[package]]
|
|
1826
2166
|
name = "rustls"
|
|
1827
|
-
version = "0.23.
|
|
2167
|
+
version = "0.23.37"
|
|
1828
2168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
-
checksum = "
|
|
2169
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1830
2170
|
dependencies = [
|
|
1831
2171
|
"once_cell",
|
|
1832
2172
|
"ring",
|
|
@@ -1860,9 +2200,9 @@ dependencies = [
|
|
|
1860
2200
|
|
|
1861
2201
|
[[package]]
|
|
1862
2202
|
name = "rustls-webpki"
|
|
1863
|
-
version = "0.103.
|
|
2203
|
+
version = "0.103.11"
|
|
1864
2204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
-
checksum = "
|
|
2205
|
+
checksum = "20a6af516fea4b20eccceaf166e8aa666ac996208e8a644ce3ef5aa783bc7cd4"
|
|
1866
2206
|
dependencies = [
|
|
1867
2207
|
"ring",
|
|
1868
2208
|
"rustls-pki-types",
|
|
@@ -1896,9 +2236,9 @@ dependencies = [
|
|
|
1896
2236
|
|
|
1897
2237
|
[[package]]
|
|
1898
2238
|
name = "schannel"
|
|
1899
|
-
version = "0.1.
|
|
2239
|
+
version = "0.1.29"
|
|
1900
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
-
checksum = "
|
|
2241
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1902
2242
|
dependencies = [
|
|
1903
2243
|
"windows-sys 0.61.2",
|
|
1904
2244
|
]
|
|
@@ -1917,11 +2257,11 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1917
2257
|
|
|
1918
2258
|
[[package]]
|
|
1919
2259
|
name = "security-framework"
|
|
1920
|
-
version = "3.
|
|
2260
|
+
version = "3.7.0"
|
|
1921
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
-
checksum = "
|
|
2262
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1923
2263
|
dependencies = [
|
|
1924
|
-
"bitflags 2.
|
|
2264
|
+
"bitflags 2.11.0",
|
|
1925
2265
|
"core-foundation",
|
|
1926
2266
|
"core-foundation-sys",
|
|
1927
2267
|
"libc",
|
|
@@ -1930,14 +2270,20 @@ dependencies = [
|
|
|
1930
2270
|
|
|
1931
2271
|
[[package]]
|
|
1932
2272
|
name = "security-framework-sys"
|
|
1933
|
-
version = "2.
|
|
2273
|
+
version = "2.17.0"
|
|
1934
2274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
-
checksum = "
|
|
2275
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1936
2276
|
dependencies = [
|
|
1937
2277
|
"core-foundation-sys",
|
|
1938
2278
|
"libc",
|
|
1939
2279
|
]
|
|
1940
2280
|
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "semver"
|
|
2283
|
+
version = "1.0.28"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2286
|
+
|
|
1941
2287
|
[[package]]
|
|
1942
2288
|
name = "serde"
|
|
1943
2289
|
version = "1.0.228"
|
|
@@ -1976,7 +2322,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
1976
2322
|
dependencies = [
|
|
1977
2323
|
"proc-macro2",
|
|
1978
2324
|
"quote",
|
|
1979
|
-
"syn 2.0.
|
|
2325
|
+
"syn 2.0.117",
|
|
1980
2326
|
]
|
|
1981
2327
|
|
|
1982
2328
|
[[package]]
|
|
@@ -2000,7 +2346,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
|
2000
2346
|
dependencies = [
|
|
2001
2347
|
"proc-macro2",
|
|
2002
2348
|
"quote",
|
|
2003
|
-
"syn 2.0.
|
|
2349
|
+
"syn 2.0.117",
|
|
2004
2350
|
]
|
|
2005
2351
|
|
|
2006
2352
|
[[package]]
|
|
@@ -2031,8 +2377,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2031
2377
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2032
2378
|
dependencies = [
|
|
2033
2379
|
"cfg-if",
|
|
2034
|
-
"cpufeatures",
|
|
2035
|
-
"digest",
|
|
2380
|
+
"cpufeatures 0.2.17",
|
|
2381
|
+
"digest 0.10.7",
|
|
2382
|
+
]
|
|
2383
|
+
|
|
2384
|
+
[[package]]
|
|
2385
|
+
name = "sha2"
|
|
2386
|
+
version = "0.11.0"
|
|
2387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
2389
|
+
dependencies = [
|
|
2390
|
+
"cfg-if",
|
|
2391
|
+
"cpufeatures 0.3.0",
|
|
2392
|
+
"digest 0.11.2",
|
|
2036
2393
|
]
|
|
2037
2394
|
|
|
2038
2395
|
[[package]]
|
|
@@ -2056,6 +2413,27 @@ version = "1.3.0"
|
|
|
2056
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
2414
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2058
2415
|
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "signal-hook"
|
|
2418
|
+
version = "0.3.18"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"libc",
|
|
2423
|
+
"signal-hook-registry",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "signal-hook-mio"
|
|
2428
|
+
version = "0.2.5"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
2431
|
+
dependencies = [
|
|
2432
|
+
"libc",
|
|
2433
|
+
"mio",
|
|
2434
|
+
"signal-hook",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2059
2437
|
[[package]]
|
|
2060
2438
|
name = "signal-hook-registry"
|
|
2061
2439
|
version = "1.4.8"
|
|
@@ -2088,12 +2466,10 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
2088
2466
|
name = "smbcloud-auth"
|
|
2089
2467
|
version = "0.3.34"
|
|
2090
2468
|
dependencies = [
|
|
2091
|
-
"base64",
|
|
2092
2469
|
"log",
|
|
2093
2470
|
"reqwest",
|
|
2094
2471
|
"serde",
|
|
2095
2472
|
"serde_json",
|
|
2096
|
-
"sha2",
|
|
2097
2473
|
"smbcloud-model",
|
|
2098
2474
|
"smbcloud-network",
|
|
2099
2475
|
"smbcloud-networking",
|
|
@@ -2102,49 +2478,66 @@ dependencies = [
|
|
|
2102
2478
|
]
|
|
2103
2479
|
|
|
2104
2480
|
[[package]]
|
|
2105
|
-
name = "smbcloud-auth-
|
|
2481
|
+
name = "smbcloud-auth-sdk"
|
|
2106
2482
|
version = "0.3.34"
|
|
2483
|
+
dependencies = [
|
|
2484
|
+
"base64",
|
|
2485
|
+
"reqwest",
|
|
2486
|
+
"serde",
|
|
2487
|
+
"serde_json",
|
|
2488
|
+
"sha2 0.10.9",
|
|
2489
|
+
"smbcloud-model",
|
|
2490
|
+
"smbcloud-network",
|
|
2491
|
+
"url-builder",
|
|
2492
|
+
"uuid",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "smbcloud-auth-sdk-py"
|
|
2497
|
+
version = "0.3.35"
|
|
2107
2498
|
dependencies = [
|
|
2108
2499
|
"pyo3",
|
|
2109
2500
|
"pythonize",
|
|
2110
2501
|
"serde",
|
|
2111
2502
|
"serde_json",
|
|
2112
|
-
"smbcloud-auth",
|
|
2503
|
+
"smbcloud-auth-sdk",
|
|
2113
2504
|
"smbcloud-model",
|
|
2114
2505
|
"smbcloud-network",
|
|
2115
2506
|
"tokio",
|
|
2116
2507
|
]
|
|
2117
2508
|
|
|
2118
2509
|
[[package]]
|
|
2119
|
-
name = "smbcloud-auth-wasm"
|
|
2120
|
-
version = "0.3.
|
|
2510
|
+
name = "smbcloud-auth-sdk-wasm"
|
|
2511
|
+
version = "0.3.35"
|
|
2121
2512
|
dependencies = [
|
|
2122
2513
|
"serde-wasm-bindgen",
|
|
2123
|
-
"smbcloud-auth",
|
|
2514
|
+
"smbcloud-auth-sdk",
|
|
2124
2515
|
"smbcloud-network",
|
|
2125
2516
|
"smbcloud-networking",
|
|
2517
|
+
"uuid",
|
|
2126
2518
|
"wasm-bindgen",
|
|
2127
2519
|
"wasm-bindgen-futures",
|
|
2128
2520
|
]
|
|
2129
2521
|
|
|
2130
2522
|
[[package]]
|
|
2131
2523
|
name = "smbcloud-cli"
|
|
2132
|
-
version = "0.3.
|
|
2524
|
+
version = "0.3.38"
|
|
2133
2525
|
dependencies = [
|
|
2134
2526
|
"anyhow",
|
|
2135
2527
|
"chrono",
|
|
2136
|
-
"clap 4.
|
|
2528
|
+
"clap 4.6.0",
|
|
2137
2529
|
"clap_mangen",
|
|
2138
|
-
"console 0.16.
|
|
2530
|
+
"console 0.16.3",
|
|
2531
|
+
"crossterm",
|
|
2139
2532
|
"dialoguer",
|
|
2140
2533
|
"dirs",
|
|
2141
|
-
"dotenv_codegen",
|
|
2142
2534
|
"git2",
|
|
2143
2535
|
"home",
|
|
2144
2536
|
"indicatif",
|
|
2145
2537
|
"log",
|
|
2146
2538
|
"open",
|
|
2147
2539
|
"openssl",
|
|
2540
|
+
"ratatui",
|
|
2148
2541
|
"regex",
|
|
2149
2542
|
"reqwest",
|
|
2150
2543
|
"serde",
|
|
@@ -2168,6 +2561,34 @@ dependencies = [
|
|
|
2168
2561
|
"url-builder",
|
|
2169
2562
|
]
|
|
2170
2563
|
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "smbcloud-gresiq"
|
|
2566
|
+
version = "0.3.34"
|
|
2567
|
+
dependencies = [
|
|
2568
|
+
"native-tls",
|
|
2569
|
+
"postgres-native-tls",
|
|
2570
|
+
"reqwest",
|
|
2571
|
+
"serde",
|
|
2572
|
+
"serde_json",
|
|
2573
|
+
"thiserror 2.0.18",
|
|
2574
|
+
"tokio",
|
|
2575
|
+
"tokio-postgres",
|
|
2576
|
+
]
|
|
2577
|
+
|
|
2578
|
+
[[package]]
|
|
2579
|
+
name = "smbcloud-gresiq-sdk"
|
|
2580
|
+
version = "0.3.34"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"anyhow",
|
|
2583
|
+
"log",
|
|
2584
|
+
"reqwest",
|
|
2585
|
+
"serde",
|
|
2586
|
+
"serde_json",
|
|
2587
|
+
"smbcloud-network",
|
|
2588
|
+
"thiserror 2.0.18",
|
|
2589
|
+
"tokio",
|
|
2590
|
+
]
|
|
2591
|
+
|
|
2171
2592
|
[[package]]
|
|
2172
2593
|
name = "smbcloud-model"
|
|
2173
2594
|
version = "0.3.35"
|
|
@@ -2188,7 +2609,7 @@ dependencies = [
|
|
|
2188
2609
|
name = "smbcloud-network"
|
|
2189
2610
|
version = "0.3.35"
|
|
2190
2611
|
dependencies = [
|
|
2191
|
-
"clap 4.
|
|
2612
|
+
"clap 4.6.0",
|
|
2192
2613
|
"log",
|
|
2193
2614
|
"reqwest",
|
|
2194
2615
|
"serde",
|
|
@@ -2240,19 +2661,19 @@ dependencies = [
|
|
|
2240
2661
|
|
|
2241
2662
|
[[package]]
|
|
2242
2663
|
name = "socket2"
|
|
2243
|
-
version = "0.6.
|
|
2664
|
+
version = "0.6.3"
|
|
2244
2665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
-
checksum = "
|
|
2666
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2246
2667
|
dependencies = [
|
|
2247
2668
|
"libc",
|
|
2248
|
-
"windows-sys 0.
|
|
2669
|
+
"windows-sys 0.61.2",
|
|
2249
2670
|
]
|
|
2250
2671
|
|
|
2251
2672
|
[[package]]
|
|
2252
2673
|
name = "spinners"
|
|
2253
|
-
version = "4.
|
|
2674
|
+
version = "4.2.0"
|
|
2254
2675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
-
checksum = "
|
|
2676
|
+
checksum = "071af1a9d34b78b8db3ca4424b0ea4d87052d607dbe96287aebaccd596cabc86"
|
|
2256
2677
|
dependencies = [
|
|
2257
2678
|
"lazy_static",
|
|
2258
2679
|
"maplit",
|
|
@@ -2274,6 +2695,12 @@ dependencies = [
|
|
|
2274
2695
|
"loom",
|
|
2275
2696
|
]
|
|
2276
2697
|
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "static_assertions"
|
|
2700
|
+
version = "1.1.0"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2703
|
+
|
|
2277
2704
|
[[package]]
|
|
2278
2705
|
name = "stringprep"
|
|
2279
2706
|
version = "0.1.5"
|
|
@@ -2330,6 +2757,15 @@ dependencies = [
|
|
|
2330
2757
|
"strum_macros 0.24.3",
|
|
2331
2758
|
]
|
|
2332
2759
|
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "strum"
|
|
2762
|
+
version = "0.26.3"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
2765
|
+
dependencies = [
|
|
2766
|
+
"strum_macros 0.26.4",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2333
2769
|
[[package]]
|
|
2334
2770
|
name = "strum"
|
|
2335
2771
|
version = "0.27.2"
|
|
@@ -2349,6 +2785,19 @@ dependencies = [
|
|
|
2349
2785
|
"syn 1.0.109",
|
|
2350
2786
|
]
|
|
2351
2787
|
|
|
2788
|
+
[[package]]
|
|
2789
|
+
name = "strum_macros"
|
|
2790
|
+
version = "0.26.4"
|
|
2791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2792
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
2793
|
+
dependencies = [
|
|
2794
|
+
"heck 0.5.0",
|
|
2795
|
+
"proc-macro2",
|
|
2796
|
+
"quote",
|
|
2797
|
+
"rustversion",
|
|
2798
|
+
"syn 2.0.117",
|
|
2799
|
+
]
|
|
2800
|
+
|
|
2352
2801
|
[[package]]
|
|
2353
2802
|
name = "strum_macros"
|
|
2354
2803
|
version = "0.27.2"
|
|
@@ -2358,7 +2807,7 @@ dependencies = [
|
|
|
2358
2807
|
"heck 0.5.0",
|
|
2359
2808
|
"proc-macro2",
|
|
2360
2809
|
"quote",
|
|
2361
|
-
"syn 2.0.
|
|
2810
|
+
"syn 2.0.117",
|
|
2362
2811
|
]
|
|
2363
2812
|
|
|
2364
2813
|
[[package]]
|
|
@@ -2380,9 +2829,9 @@ dependencies = [
|
|
|
2380
2829
|
|
|
2381
2830
|
[[package]]
|
|
2382
2831
|
name = "syn"
|
|
2383
|
-
version = "2.0.
|
|
2832
|
+
version = "2.0.117"
|
|
2384
2833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2834
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2386
2835
|
dependencies = [
|
|
2387
2836
|
"proc-macro2",
|
|
2388
2837
|
"quote",
|
|
@@ -2406,7 +2855,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
2406
2855
|
dependencies = [
|
|
2407
2856
|
"proc-macro2",
|
|
2408
2857
|
"quote",
|
|
2409
|
-
"syn 2.0.
|
|
2858
|
+
"syn 2.0.117",
|
|
2410
2859
|
]
|
|
2411
2860
|
|
|
2412
2861
|
[[package]]
|
|
@@ -2430,7 +2879,7 @@ dependencies = [
|
|
|
2430
2879
|
"proc-macro-error2",
|
|
2431
2880
|
"proc-macro2",
|
|
2432
2881
|
"quote",
|
|
2433
|
-
"syn 2.0.
|
|
2882
|
+
"syn 2.0.117",
|
|
2434
2883
|
]
|
|
2435
2884
|
|
|
2436
2885
|
[[package]]
|
|
@@ -2441,14 +2890,14 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
2441
2890
|
|
|
2442
2891
|
[[package]]
|
|
2443
2892
|
name = "tempfile"
|
|
2444
|
-
version = "3.
|
|
2893
|
+
version = "3.27.0"
|
|
2445
2894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
-
checksum = "
|
|
2895
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2447
2896
|
dependencies = [
|
|
2448
2897
|
"fastrand",
|
|
2449
|
-
"getrandom 0.
|
|
2898
|
+
"getrandom 0.4.2",
|
|
2450
2899
|
"once_cell",
|
|
2451
|
-
"rustix",
|
|
2900
|
+
"rustix 1.1.4",
|
|
2452
2901
|
"windows-sys 0.61.2",
|
|
2453
2902
|
]
|
|
2454
2903
|
|
|
@@ -2458,7 +2907,7 @@ version = "0.3.0"
|
|
|
2458
2907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
2908
|
checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
|
|
2460
2909
|
dependencies = [
|
|
2461
|
-
"unicode-width 0.2.
|
|
2910
|
+
"unicode-width 0.2.0",
|
|
2462
2911
|
]
|
|
2463
2912
|
|
|
2464
2913
|
[[package]]
|
|
@@ -2496,7 +2945,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
2496
2945
|
dependencies = [
|
|
2497
2946
|
"proc-macro2",
|
|
2498
2947
|
"quote",
|
|
2499
|
-
"syn 2.0.
|
|
2948
|
+
"syn 2.0.117",
|
|
2500
2949
|
]
|
|
2501
2950
|
|
|
2502
2951
|
[[package]]
|
|
@@ -2507,7 +2956,7 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
|
2507
2956
|
dependencies = [
|
|
2508
2957
|
"proc-macro2",
|
|
2509
2958
|
"quote",
|
|
2510
|
-
"syn 2.0.
|
|
2959
|
+
"syn 2.0.117",
|
|
2511
2960
|
]
|
|
2512
2961
|
|
|
2513
2962
|
[[package]]
|
|
@@ -2552,9 +3001,9 @@ dependencies = [
|
|
|
2552
3001
|
|
|
2553
3002
|
[[package]]
|
|
2554
3003
|
name = "tinystr"
|
|
2555
|
-
version = "0.8.
|
|
3004
|
+
version = "0.8.3"
|
|
2556
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
-
checksum = "
|
|
3006
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2558
3007
|
dependencies = [
|
|
2559
3008
|
"displaydoc",
|
|
2560
3009
|
"zerovec",
|
|
@@ -2562,9 +3011,9 @@ dependencies = [
|
|
|
2562
3011
|
|
|
2563
3012
|
[[package]]
|
|
2564
3013
|
name = "tinyvec"
|
|
2565
|
-
version = "1.
|
|
3014
|
+
version = "1.11.0"
|
|
2566
3015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
-
checksum = "
|
|
3016
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2568
3017
|
dependencies = [
|
|
2569
3018
|
"tinyvec_macros",
|
|
2570
3019
|
]
|
|
@@ -2577,9 +3026,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2577
3026
|
|
|
2578
3027
|
[[package]]
|
|
2579
3028
|
name = "tokio"
|
|
2580
|
-
version = "1.
|
|
3029
|
+
version = "1.51.1"
|
|
2581
3030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2582
|
-
checksum = "
|
|
3031
|
+
checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
|
|
2583
3032
|
dependencies = [
|
|
2584
3033
|
"bytes",
|
|
2585
3034
|
"libc",
|
|
@@ -2594,20 +3043,30 @@ dependencies = [
|
|
|
2594
3043
|
|
|
2595
3044
|
[[package]]
|
|
2596
3045
|
name = "tokio-macros"
|
|
2597
|
-
version = "2.
|
|
3046
|
+
version = "2.7.0"
|
|
2598
3047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
|
-
checksum = "
|
|
3048
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
2600
3049
|
dependencies = [
|
|
2601
3050
|
"proc-macro2",
|
|
2602
3051
|
"quote",
|
|
2603
|
-
"syn 2.0.
|
|
3052
|
+
"syn 2.0.117",
|
|
3053
|
+
]
|
|
3054
|
+
|
|
3055
|
+
[[package]]
|
|
3056
|
+
name = "tokio-native-tls"
|
|
3057
|
+
version = "0.3.1"
|
|
3058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
3060
|
+
dependencies = [
|
|
3061
|
+
"native-tls",
|
|
3062
|
+
"tokio",
|
|
2604
3063
|
]
|
|
2605
3064
|
|
|
2606
3065
|
[[package]]
|
|
2607
3066
|
name = "tokio-postgres"
|
|
2608
|
-
version = "0.7.
|
|
3067
|
+
version = "0.7.17"
|
|
2609
3068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
-
checksum = "
|
|
3069
|
+
checksum = "4dd8df5ef180f6364759a6f00f7aadda4fbbac86cdee37480826a6ff9f3574ce"
|
|
2611
3070
|
dependencies = [
|
|
2612
3071
|
"async-trait",
|
|
2613
3072
|
"byteorder",
|
|
@@ -2622,7 +3081,7 @@ dependencies = [
|
|
|
2622
3081
|
"pin-project-lite",
|
|
2623
3082
|
"postgres-protocol",
|
|
2624
3083
|
"postgres-types",
|
|
2625
|
-
"rand",
|
|
3084
|
+
"rand 0.10.0",
|
|
2626
3085
|
"socket2",
|
|
2627
3086
|
"tokio",
|
|
2628
3087
|
"tokio-util",
|
|
@@ -2714,7 +3173,7 @@ version = "0.6.8"
|
|
|
2714
3173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
3174
|
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2716
3175
|
dependencies = [
|
|
2717
|
-
"bitflags 2.
|
|
3176
|
+
"bitflags 2.11.0",
|
|
2718
3177
|
"bytes",
|
|
2719
3178
|
"futures-util",
|
|
2720
3179
|
"http",
|
|
@@ -2758,7 +3217,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
2758
3217
|
dependencies = [
|
|
2759
3218
|
"proc-macro2",
|
|
2760
3219
|
"quote",
|
|
2761
|
-
"syn 2.0.
|
|
3220
|
+
"syn 2.0.117",
|
|
2762
3221
|
]
|
|
2763
3222
|
|
|
2764
3223
|
[[package]]
|
|
@@ -2813,9 +3272,9 @@ dependencies = [
|
|
|
2813
3272
|
|
|
2814
3273
|
[[package]]
|
|
2815
3274
|
name = "tracing-subscriber"
|
|
2816
|
-
version = "0.3.
|
|
3275
|
+
version = "0.3.23"
|
|
2817
3276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
-
checksum = "
|
|
3277
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
2819
3278
|
dependencies = [
|
|
2820
3279
|
"matchers",
|
|
2821
3280
|
"nu-ansi-term",
|
|
@@ -2846,7 +3305,7 @@ dependencies = [
|
|
|
2846
3305
|
"quote",
|
|
2847
3306
|
"state",
|
|
2848
3307
|
"structopt",
|
|
2849
|
-
"syn 2.0.
|
|
3308
|
+
"syn 2.0.117",
|
|
2850
3309
|
"tsync-macro",
|
|
2851
3310
|
"walkdir",
|
|
2852
3311
|
]
|
|
@@ -2871,9 +3330,9 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
|
2871
3330
|
|
|
2872
3331
|
[[package]]
|
|
2873
3332
|
name = "unicode-ident"
|
|
2874
|
-
version = "1.0.
|
|
3333
|
+
version = "1.0.24"
|
|
2875
3334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
-
checksum = "
|
|
3335
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2877
3336
|
|
|
2878
3337
|
[[package]]
|
|
2879
3338
|
name = "unicode-normalization"
|
|
@@ -2892,9 +3351,20 @@ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
|
2892
3351
|
|
|
2893
3352
|
[[package]]
|
|
2894
3353
|
name = "unicode-segmentation"
|
|
2895
|
-
version = "1.
|
|
3354
|
+
version = "1.13.2"
|
|
2896
3355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
-
checksum = "
|
|
3356
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
3357
|
+
|
|
3358
|
+
[[package]]
|
|
3359
|
+
name = "unicode-truncate"
|
|
3360
|
+
version = "1.1.0"
|
|
3361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
+
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
|
|
3363
|
+
dependencies = [
|
|
3364
|
+
"itertools",
|
|
3365
|
+
"unicode-segmentation",
|
|
3366
|
+
"unicode-width 0.1.14",
|
|
3367
|
+
]
|
|
2898
3368
|
|
|
2899
3369
|
[[package]]
|
|
2900
3370
|
name = "unicode-width"
|
|
@@ -2904,9 +3374,15 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
|
2904
3374
|
|
|
2905
3375
|
[[package]]
|
|
2906
3376
|
name = "unicode-width"
|
|
2907
|
-
version = "0.2.
|
|
3377
|
+
version = "0.2.0"
|
|
3378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3380
|
+
|
|
3381
|
+
[[package]]
|
|
3382
|
+
name = "unicode-xid"
|
|
3383
|
+
version = "0.2.6"
|
|
2908
3384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
-
checksum = "
|
|
3385
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2910
3386
|
|
|
2911
3387
|
[[package]]
|
|
2912
3388
|
name = "unindent"
|
|
@@ -2952,11 +3428,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
2952
3428
|
|
|
2953
3429
|
[[package]]
|
|
2954
3430
|
name = "uuid"
|
|
2955
|
-
version = "1.
|
|
3431
|
+
version = "1.23.0"
|
|
2956
3432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2957
|
-
checksum = "
|
|
3433
|
+
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
2958
3434
|
dependencies = [
|
|
2959
|
-
"getrandom 0.
|
|
3435
|
+
"getrandom 0.4.2",
|
|
2960
3436
|
"js-sys",
|
|
2961
3437
|
"wasm-bindgen",
|
|
2962
3438
|
]
|
|
@@ -3028,6 +3504,15 @@ dependencies = [
|
|
|
3028
3504
|
"wit-bindgen",
|
|
3029
3505
|
]
|
|
3030
3506
|
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "wasip3"
|
|
3509
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3512
|
+
dependencies = [
|
|
3513
|
+
"wit-bindgen",
|
|
3514
|
+
]
|
|
3515
|
+
|
|
3031
3516
|
[[package]]
|
|
3032
3517
|
name = "wasite"
|
|
3033
3518
|
version = "1.0.2"
|
|
@@ -3039,9 +3524,9 @@ dependencies = [
|
|
|
3039
3524
|
|
|
3040
3525
|
[[package]]
|
|
3041
3526
|
name = "wasm-bindgen"
|
|
3042
|
-
version = "0.2.
|
|
3527
|
+
version = "0.2.118"
|
|
3043
3528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
-
checksum = "
|
|
3529
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
3045
3530
|
dependencies = [
|
|
3046
3531
|
"cfg-if",
|
|
3047
3532
|
"once_cell",
|
|
@@ -3052,23 +3537,19 @@ dependencies = [
|
|
|
3052
3537
|
|
|
3053
3538
|
[[package]]
|
|
3054
3539
|
name = "wasm-bindgen-futures"
|
|
3055
|
-
version = "0.4.
|
|
3540
|
+
version = "0.4.68"
|
|
3056
3541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
-
checksum = "
|
|
3542
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
3058
3543
|
dependencies = [
|
|
3059
|
-
"cfg-if",
|
|
3060
|
-
"futures-util",
|
|
3061
3544
|
"js-sys",
|
|
3062
|
-
"once_cell",
|
|
3063
3545
|
"wasm-bindgen",
|
|
3064
|
-
"web-sys",
|
|
3065
3546
|
]
|
|
3066
3547
|
|
|
3067
3548
|
[[package]]
|
|
3068
3549
|
name = "wasm-bindgen-macro"
|
|
3069
|
-
version = "0.2.
|
|
3550
|
+
version = "0.2.118"
|
|
3070
3551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
-
checksum = "
|
|
3552
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
3072
3553
|
dependencies = [
|
|
3073
3554
|
"quote",
|
|
3074
3555
|
"wasm-bindgen-macro-support",
|
|
@@ -3076,31 +3557,65 @@ dependencies = [
|
|
|
3076
3557
|
|
|
3077
3558
|
[[package]]
|
|
3078
3559
|
name = "wasm-bindgen-macro-support"
|
|
3079
|
-
version = "0.2.
|
|
3560
|
+
version = "0.2.118"
|
|
3080
3561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
-
checksum = "
|
|
3562
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
3082
3563
|
dependencies = [
|
|
3083
3564
|
"bumpalo",
|
|
3084
3565
|
"proc-macro2",
|
|
3085
3566
|
"quote",
|
|
3086
|
-
"syn 2.0.
|
|
3567
|
+
"syn 2.0.117",
|
|
3087
3568
|
"wasm-bindgen-shared",
|
|
3088
3569
|
]
|
|
3089
3570
|
|
|
3090
3571
|
[[package]]
|
|
3091
3572
|
name = "wasm-bindgen-shared"
|
|
3092
|
-
version = "0.2.
|
|
3573
|
+
version = "0.2.118"
|
|
3093
3574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
-
checksum = "
|
|
3575
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
3095
3576
|
dependencies = [
|
|
3096
3577
|
"unicode-ident",
|
|
3097
3578
|
]
|
|
3098
3579
|
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "wasm-encoder"
|
|
3582
|
+
version = "0.244.0"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3585
|
+
dependencies = [
|
|
3586
|
+
"leb128fmt",
|
|
3587
|
+
"wasmparser",
|
|
3588
|
+
]
|
|
3589
|
+
|
|
3590
|
+
[[package]]
|
|
3591
|
+
name = "wasm-metadata"
|
|
3592
|
+
version = "0.244.0"
|
|
3593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3595
|
+
dependencies = [
|
|
3596
|
+
"anyhow",
|
|
3597
|
+
"indexmap",
|
|
3598
|
+
"wasm-encoder",
|
|
3599
|
+
"wasmparser",
|
|
3600
|
+
]
|
|
3601
|
+
|
|
3602
|
+
[[package]]
|
|
3603
|
+
name = "wasmparser"
|
|
3604
|
+
version = "0.244.0"
|
|
3605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3607
|
+
dependencies = [
|
|
3608
|
+
"bitflags 2.11.0",
|
|
3609
|
+
"hashbrown 0.15.5",
|
|
3610
|
+
"indexmap",
|
|
3611
|
+
"semver",
|
|
3612
|
+
]
|
|
3613
|
+
|
|
3099
3614
|
[[package]]
|
|
3100
3615
|
name = "web-sys"
|
|
3101
|
-
version = "0.3.
|
|
3616
|
+
version = "0.3.95"
|
|
3102
3617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3103
|
-
checksum = "
|
|
3618
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
3104
3619
|
dependencies = [
|
|
3105
3620
|
"js-sys",
|
|
3106
3621
|
"wasm-bindgen",
|
|
@@ -3116,13 +3631,24 @@ dependencies = [
|
|
|
3116
3631
|
"wasm-bindgen",
|
|
3117
3632
|
]
|
|
3118
3633
|
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "webpki-roots"
|
|
3636
|
+
version = "1.0.6"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
3639
|
+
dependencies = [
|
|
3640
|
+
"rustls-pki-types",
|
|
3641
|
+
]
|
|
3642
|
+
|
|
3119
3643
|
[[package]]
|
|
3120
3644
|
name = "whoami"
|
|
3121
|
-
version = "2.1.
|
|
3645
|
+
version = "2.1.1"
|
|
3122
3646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
-
checksum = "
|
|
3647
|
+
checksum = "d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d"
|
|
3124
3648
|
dependencies = [
|
|
3649
|
+
"libc",
|
|
3125
3650
|
"libredox",
|
|
3651
|
+
"objc2-system-configuration",
|
|
3126
3652
|
"wasite",
|
|
3127
3653
|
"web-sys",
|
|
3128
3654
|
]
|
|
@@ -3188,7 +3714,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
3188
3714
|
dependencies = [
|
|
3189
3715
|
"proc-macro2",
|
|
3190
3716
|
"quote",
|
|
3191
|
-
"syn 2.0.
|
|
3717
|
+
"syn 2.0.117",
|
|
3192
3718
|
]
|
|
3193
3719
|
|
|
3194
3720
|
[[package]]
|
|
@@ -3199,7 +3725,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
3199
3725
|
dependencies = [
|
|
3200
3726
|
"proc-macro2",
|
|
3201
3727
|
"quote",
|
|
3202
|
-
"syn 2.0.
|
|
3728
|
+
"syn 2.0.117",
|
|
3203
3729
|
]
|
|
3204
3730
|
|
|
3205
3731
|
[[package]]
|
|
@@ -3450,9 +3976,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
|
3450
3976
|
|
|
3451
3977
|
[[package]]
|
|
3452
3978
|
name = "winnow"
|
|
3453
|
-
version = "0.7.
|
|
3979
|
+
version = "0.7.15"
|
|
3454
3980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3455
|
-
checksum = "
|
|
3981
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
3456
3982
|
dependencies = [
|
|
3457
3983
|
"memchr",
|
|
3458
3984
|
]
|
|
@@ -3462,18 +3988,100 @@ name = "wit-bindgen"
|
|
|
3462
3988
|
version = "0.51.0"
|
|
3463
3989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3464
3990
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3991
|
+
dependencies = [
|
|
3992
|
+
"wit-bindgen-rust-macro",
|
|
3993
|
+
]
|
|
3994
|
+
|
|
3995
|
+
[[package]]
|
|
3996
|
+
name = "wit-bindgen-core"
|
|
3997
|
+
version = "0.51.0"
|
|
3998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3999
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
4000
|
+
dependencies = [
|
|
4001
|
+
"anyhow",
|
|
4002
|
+
"heck 0.5.0",
|
|
4003
|
+
"wit-parser",
|
|
4004
|
+
]
|
|
4005
|
+
|
|
4006
|
+
[[package]]
|
|
4007
|
+
name = "wit-bindgen-rust"
|
|
4008
|
+
version = "0.51.0"
|
|
4009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4010
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
4011
|
+
dependencies = [
|
|
4012
|
+
"anyhow",
|
|
4013
|
+
"heck 0.5.0",
|
|
4014
|
+
"indexmap",
|
|
4015
|
+
"prettyplease",
|
|
4016
|
+
"syn 2.0.117",
|
|
4017
|
+
"wasm-metadata",
|
|
4018
|
+
"wit-bindgen-core",
|
|
4019
|
+
"wit-component",
|
|
4020
|
+
]
|
|
4021
|
+
|
|
4022
|
+
[[package]]
|
|
4023
|
+
name = "wit-bindgen-rust-macro"
|
|
4024
|
+
version = "0.51.0"
|
|
4025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
4027
|
+
dependencies = [
|
|
4028
|
+
"anyhow",
|
|
4029
|
+
"prettyplease",
|
|
4030
|
+
"proc-macro2",
|
|
4031
|
+
"quote",
|
|
4032
|
+
"syn 2.0.117",
|
|
4033
|
+
"wit-bindgen-core",
|
|
4034
|
+
"wit-bindgen-rust",
|
|
4035
|
+
]
|
|
4036
|
+
|
|
4037
|
+
[[package]]
|
|
4038
|
+
name = "wit-component"
|
|
4039
|
+
version = "0.244.0"
|
|
4040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4041
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
4042
|
+
dependencies = [
|
|
4043
|
+
"anyhow",
|
|
4044
|
+
"bitflags 2.11.0",
|
|
4045
|
+
"indexmap",
|
|
4046
|
+
"log",
|
|
4047
|
+
"serde",
|
|
4048
|
+
"serde_derive",
|
|
4049
|
+
"serde_json",
|
|
4050
|
+
"wasm-encoder",
|
|
4051
|
+
"wasm-metadata",
|
|
4052
|
+
"wasmparser",
|
|
4053
|
+
"wit-parser",
|
|
4054
|
+
]
|
|
4055
|
+
|
|
4056
|
+
[[package]]
|
|
4057
|
+
name = "wit-parser"
|
|
4058
|
+
version = "0.244.0"
|
|
4059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4060
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4061
|
+
dependencies = [
|
|
4062
|
+
"anyhow",
|
|
4063
|
+
"id-arena",
|
|
4064
|
+
"indexmap",
|
|
4065
|
+
"log",
|
|
4066
|
+
"semver",
|
|
4067
|
+
"serde",
|
|
4068
|
+
"serde_derive",
|
|
4069
|
+
"serde_json",
|
|
4070
|
+
"unicode-xid",
|
|
4071
|
+
"wasmparser",
|
|
4072
|
+
]
|
|
3465
4073
|
|
|
3466
4074
|
[[package]]
|
|
3467
4075
|
name = "writeable"
|
|
3468
|
-
version = "0.6.
|
|
4076
|
+
version = "0.6.3"
|
|
3469
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3470
|
-
checksum = "
|
|
4078
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3471
4079
|
|
|
3472
4080
|
[[package]]
|
|
3473
4081
|
name = "yoke"
|
|
3474
|
-
version = "0.8.
|
|
4082
|
+
version = "0.8.2"
|
|
3475
4083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
-
checksum = "
|
|
4084
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3477
4085
|
dependencies = [
|
|
3478
4086
|
"stable_deref_trait",
|
|
3479
4087
|
"yoke-derive",
|
|
@@ -3482,54 +4090,54 @@ dependencies = [
|
|
|
3482
4090
|
|
|
3483
4091
|
[[package]]
|
|
3484
4092
|
name = "yoke-derive"
|
|
3485
|
-
version = "0.8.
|
|
4093
|
+
version = "0.8.2"
|
|
3486
4094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
-
checksum = "
|
|
4095
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3488
4096
|
dependencies = [
|
|
3489
4097
|
"proc-macro2",
|
|
3490
4098
|
"quote",
|
|
3491
|
-
"syn 2.0.
|
|
4099
|
+
"syn 2.0.117",
|
|
3492
4100
|
"synstructure",
|
|
3493
4101
|
]
|
|
3494
4102
|
|
|
3495
4103
|
[[package]]
|
|
3496
4104
|
name = "zerocopy"
|
|
3497
|
-
version = "0.8.
|
|
4105
|
+
version = "0.8.48"
|
|
3498
4106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "
|
|
4107
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
3500
4108
|
dependencies = [
|
|
3501
4109
|
"zerocopy-derive",
|
|
3502
4110
|
]
|
|
3503
4111
|
|
|
3504
4112
|
[[package]]
|
|
3505
4113
|
name = "zerocopy-derive"
|
|
3506
|
-
version = "0.8.
|
|
4114
|
+
version = "0.8.48"
|
|
3507
4115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
-
checksum = "
|
|
4116
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
3509
4117
|
dependencies = [
|
|
3510
4118
|
"proc-macro2",
|
|
3511
4119
|
"quote",
|
|
3512
|
-
"syn 2.0.
|
|
4120
|
+
"syn 2.0.117",
|
|
3513
4121
|
]
|
|
3514
4122
|
|
|
3515
4123
|
[[package]]
|
|
3516
4124
|
name = "zerofrom"
|
|
3517
|
-
version = "0.1.
|
|
4125
|
+
version = "0.1.7"
|
|
3518
4126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3519
|
-
checksum = "
|
|
4127
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
3520
4128
|
dependencies = [
|
|
3521
4129
|
"zerofrom-derive",
|
|
3522
4130
|
]
|
|
3523
4131
|
|
|
3524
4132
|
[[package]]
|
|
3525
4133
|
name = "zerofrom-derive"
|
|
3526
|
-
version = "0.1.
|
|
4134
|
+
version = "0.1.7"
|
|
3527
4135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3528
|
-
checksum = "
|
|
4136
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3529
4137
|
dependencies = [
|
|
3530
4138
|
"proc-macro2",
|
|
3531
4139
|
"quote",
|
|
3532
|
-
"syn 2.0.
|
|
4140
|
+
"syn 2.0.117",
|
|
3533
4141
|
"synstructure",
|
|
3534
4142
|
]
|
|
3535
4143
|
|
|
@@ -3541,9 +4149,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
3541
4149
|
|
|
3542
4150
|
[[package]]
|
|
3543
4151
|
name = "zerotrie"
|
|
3544
|
-
version = "0.2.
|
|
4152
|
+
version = "0.2.4"
|
|
3545
4153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
-
checksum = "
|
|
4154
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3547
4155
|
dependencies = [
|
|
3548
4156
|
"displaydoc",
|
|
3549
4157
|
"yoke",
|
|
@@ -3552,9 +4160,9 @@ dependencies = [
|
|
|
3552
4160
|
|
|
3553
4161
|
[[package]]
|
|
3554
4162
|
name = "zerovec"
|
|
3555
|
-
version = "0.11.
|
|
4163
|
+
version = "0.11.6"
|
|
3556
4164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3557
|
-
checksum = "
|
|
4165
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3558
4166
|
dependencies = [
|
|
3559
4167
|
"yoke",
|
|
3560
4168
|
"zerofrom",
|
|
@@ -3563,17 +4171,17 @@ dependencies = [
|
|
|
3563
4171
|
|
|
3564
4172
|
[[package]]
|
|
3565
4173
|
name = "zerovec-derive"
|
|
3566
|
-
version = "0.11.
|
|
4174
|
+
version = "0.11.3"
|
|
3567
4175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3568
|
-
checksum = "
|
|
4176
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3569
4177
|
dependencies = [
|
|
3570
4178
|
"proc-macro2",
|
|
3571
4179
|
"quote",
|
|
3572
|
-
"syn 2.0.
|
|
4180
|
+
"syn 2.0.117",
|
|
3573
4181
|
]
|
|
3574
4182
|
|
|
3575
4183
|
[[package]]
|
|
3576
4184
|
name = "zmij"
|
|
3577
|
-
version = "1.0.
|
|
4185
|
+
version = "1.0.21"
|
|
3578
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3579
|
-
checksum = "
|
|
4187
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|