qcs-api-client-common 0.11.8__tar.gz → 0.13.1.dev6__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.
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/Cargo.lock +1688 -969
- qcs_api_client_common-0.13.1.dev6/Cargo.toml +161 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/PKG-INFO +18 -20
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/pyproject.toml +1 -1
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/CHANGELOG-py.md +157 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/CHANGELOG.md +211 -0
- qcs_api_client_common-0.13.1.dev6/qcs-api-client-common/Cargo.toml +208 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6/qcs-api-client-common}/qcs_api_client_common/configuration/__init__.py +1 -1
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6/qcs-api-client-common}/qcs_api_client_common/configuration/__init__.pyi +92 -15
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6/qcs-api-client-common}/qcs_api_client_common/grpc.py +2 -2
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/backoff.rs +4 -3
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/error.rs +29 -1
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/mod.rs +305 -77
- qcs_api_client_common-0.13.1.dev6/qcs-api-client-common/src/configuration/oidc.rs +335 -0
- qcs_api_client_common-0.13.1.dev6/qcs-api-client-common/src/configuration/pkce.rs +401 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/py.rs +108 -38
- qcs_api_client_common-0.13.1.dev6/qcs-api-client-common/src/configuration/secret_string.rs +146 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/secrets.rs +87 -29
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/settings.rs +108 -55
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/tokens.rs +342 -129
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/py/mod.rs +8 -21
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/tracing_configuration.rs +4 -4
- qcs_api_client_common-0.13.1.dev6/qcs-api-client-common/tests/client_credentials_test.rs +29 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests/token_refresh_test.rs +18 -4
- qcs_api_client_common-0.13.1.dev6/qcs-api-client-common/tests_py/__snapshots__/test_configuration.ambr +10 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests_py/test_configuration.py +21 -5
- {qcs_api_client_common-0.11.8/qcs-api-client-common → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/configuration/__init__.py +1 -1
- {qcs_api_client_common-0.11.8/qcs-api-client-common → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/configuration/__init__.pyi +92 -15
- {qcs_api_client_common-0.11.8/qcs-api-client-common → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/grpc.py +2 -2
- qcs_api_client_common-0.11.8/Cargo.toml +0 -95
- qcs_api_client_common-0.11.8/qcs-api-client-common/Cargo.toml +0 -108
- qcs_api_client_common-0.11.8/qcs-api-client-common/clippy.toml +0 -1
- qcs_api_client_common-0.11.8/qcs-api-client-common/tests_py/__snapshots__/test_configuration.ambr +0 -10
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/README-py.md +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/.stubtest-allowlist +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/Makefile.toml +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/README-py.md +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/README.md +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/build.rs +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/docs/Makefile +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/docs/make.bat +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/docs/source/conf.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/docs/source/index.rst +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/qcs_api_client_common/__init__.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/qcs_api_client_common/__init__.pyi +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/qcs_api_client_common/httpx.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/qcs_api_client_common/py.typed +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/scripts/watchmedo_helper.sh +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/builder.rs +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/configuration/path.rs +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/src/lib.rs +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests_py/conftest.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests_py/fixtures/secrets.toml +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests_py/fixtures/settings.toml +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests_py/test_grpc.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs-api-client-common/tests_py/test_httpx.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/__init__.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/__init__.pyi +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/httpx.py +0 -0
- {qcs_api_client_common-0.11.8 → qcs_api_client_common-0.13.1.dev6}/qcs_api_client_common/py.typed +0 -0
|
@@ -3,34 +3,28 @@
|
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
|
-
name = "
|
|
7
|
-
version = "
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"
|
|
11
|
+
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
|
-
name = "
|
|
16
|
-
version = "
|
|
17
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
-
|
|
20
|
-
[[package]]
|
|
21
|
-
name = "aho-corasick"
|
|
22
|
-
version = "1.1.3"
|
|
15
|
+
name = "android_system_properties"
|
|
16
|
+
version = "0.1.5"
|
|
23
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
18
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
25
19
|
dependencies = [
|
|
26
|
-
"
|
|
20
|
+
"libc",
|
|
27
21
|
]
|
|
28
22
|
|
|
29
23
|
[[package]]
|
|
30
24
|
name = "anyhow"
|
|
31
|
-
version = "1.0.
|
|
25
|
+
version = "1.0.100"
|
|
32
26
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "
|
|
27
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
34
28
|
|
|
35
29
|
[[package]]
|
|
36
30
|
name = "assert-json-diff"
|
|
@@ -65,9 +59,9 @@ dependencies = [
|
|
|
65
59
|
|
|
66
60
|
[[package]]
|
|
67
61
|
name = "async-channel"
|
|
68
|
-
version = "2.
|
|
62
|
+
version = "2.5.0"
|
|
69
63
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "
|
|
64
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
71
65
|
dependencies = [
|
|
72
66
|
"concurrent-queue",
|
|
73
67
|
"event-listener-strategy",
|
|
@@ -77,14 +71,15 @@ dependencies = [
|
|
|
77
71
|
|
|
78
72
|
[[package]]
|
|
79
73
|
name = "async-executor"
|
|
80
|
-
version = "1.13.
|
|
74
|
+
version = "1.13.3"
|
|
81
75
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
76
|
+
checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
|
|
83
77
|
dependencies = [
|
|
84
78
|
"async-task",
|
|
85
79
|
"concurrent-queue",
|
|
86
80
|
"fastrand",
|
|
87
81
|
"futures-lite",
|
|
82
|
+
"pin-project-lite",
|
|
88
83
|
"slab",
|
|
89
84
|
]
|
|
90
85
|
|
|
@@ -94,7 +89,7 @@ version = "2.4.1"
|
|
|
94
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
90
|
checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
|
96
91
|
dependencies = [
|
|
97
|
-
"async-channel 2.
|
|
92
|
+
"async-channel 2.5.0",
|
|
98
93
|
"async-executor",
|
|
99
94
|
"async-io",
|
|
100
95
|
"async-lock",
|
|
@@ -105,11 +100,11 @@ dependencies = [
|
|
|
105
100
|
|
|
106
101
|
[[package]]
|
|
107
102
|
name = "async-io"
|
|
108
|
-
version = "2.
|
|
103
|
+
version = "2.6.0"
|
|
109
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
105
|
+
checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
|
|
111
106
|
dependencies = [
|
|
112
|
-
"
|
|
107
|
+
"autocfg",
|
|
113
108
|
"cfg-if",
|
|
114
109
|
"concurrent-queue",
|
|
115
110
|
"futures-io",
|
|
@@ -118,65 +113,28 @@ dependencies = [
|
|
|
118
113
|
"polling",
|
|
119
114
|
"rustix",
|
|
120
115
|
"slab",
|
|
121
|
-
"
|
|
122
|
-
"windows-sys 0.59.0",
|
|
116
|
+
"windows-sys 0.61.2",
|
|
123
117
|
]
|
|
124
118
|
|
|
125
119
|
[[package]]
|
|
126
120
|
name = "async-lock"
|
|
127
|
-
version = "3.4.
|
|
121
|
+
version = "3.4.2"
|
|
128
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
123
|
+
checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
|
|
130
124
|
dependencies = [
|
|
131
|
-
"event-listener 5.4.
|
|
125
|
+
"event-listener 5.4.1",
|
|
132
126
|
"event-listener-strategy",
|
|
133
127
|
"pin-project-lite",
|
|
134
128
|
]
|
|
135
129
|
|
|
136
130
|
[[package]]
|
|
137
131
|
name = "async-object-pool"
|
|
138
|
-
version = "0.
|
|
139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "333c456b97c3f2d50604e8b2624253b7f787208cb72eb75e64b0ad11b221652c"
|
|
141
|
-
dependencies = [
|
|
142
|
-
"async-std",
|
|
143
|
-
]
|
|
144
|
-
|
|
145
|
-
[[package]]
|
|
146
|
-
name = "async-process"
|
|
147
|
-
version = "2.3.0"
|
|
148
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
-
checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
|
|
150
|
-
dependencies = [
|
|
151
|
-
"async-channel 2.3.1",
|
|
152
|
-
"async-io",
|
|
153
|
-
"async-lock",
|
|
154
|
-
"async-signal",
|
|
155
|
-
"async-task",
|
|
156
|
-
"blocking",
|
|
157
|
-
"cfg-if",
|
|
158
|
-
"event-listener 5.4.0",
|
|
159
|
-
"futures-lite",
|
|
160
|
-
"rustix",
|
|
161
|
-
"tracing",
|
|
162
|
-
]
|
|
163
|
-
|
|
164
|
-
[[package]]
|
|
165
|
-
name = "async-signal"
|
|
166
|
-
version = "0.2.10"
|
|
132
|
+
version = "0.2.0"
|
|
167
133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
-
checksum = "
|
|
134
|
+
checksum = "e1ac0219111eb7bb7cb76d4cf2cb50c598e7ae549091d3616f9e95442c18486f"
|
|
169
135
|
dependencies = [
|
|
170
|
-
"async-io",
|
|
171
136
|
"async-lock",
|
|
172
|
-
"
|
|
173
|
-
"cfg-if",
|
|
174
|
-
"futures-core",
|
|
175
|
-
"futures-io",
|
|
176
|
-
"rustix",
|
|
177
|
-
"signal-hook-registry",
|
|
178
|
-
"slab",
|
|
179
|
-
"windows-sys 0.59.0",
|
|
137
|
+
"event-listener 5.4.1",
|
|
180
138
|
]
|
|
181
139
|
|
|
182
140
|
[[package]]
|
|
@@ -191,16 +149,15 @@ dependencies = [
|
|
|
191
149
|
|
|
192
150
|
[[package]]
|
|
193
151
|
name = "async-std"
|
|
194
|
-
version = "1.13.
|
|
152
|
+
version = "1.13.2"
|
|
195
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
-
checksum = "
|
|
154
|
+
checksum = "2c8e079a4ab67ae52b7403632e4618815d6db36d2a010cfe41b02c1b1578f93b"
|
|
197
155
|
dependencies = [
|
|
198
156
|
"async-attributes",
|
|
199
157
|
"async-channel 1.9.0",
|
|
200
158
|
"async-global-executor",
|
|
201
159
|
"async-io",
|
|
202
160
|
"async-lock",
|
|
203
|
-
"async-process",
|
|
204
161
|
"crossbeam-utils",
|
|
205
162
|
"futures-channel",
|
|
206
163
|
"futures-core",
|
|
@@ -217,28 +174,6 @@ dependencies = [
|
|
|
217
174
|
"wasm-bindgen-futures",
|
|
218
175
|
]
|
|
219
176
|
|
|
220
|
-
[[package]]
|
|
221
|
-
name = "async-stream"
|
|
222
|
-
version = "0.3.6"
|
|
223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
-
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
225
|
-
dependencies = [
|
|
226
|
-
"async-stream-impl",
|
|
227
|
-
"futures-core",
|
|
228
|
-
"pin-project-lite",
|
|
229
|
-
]
|
|
230
|
-
|
|
231
|
-
[[package]]
|
|
232
|
-
name = "async-stream-impl"
|
|
233
|
-
version = "0.3.6"
|
|
234
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
-
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
236
|
-
dependencies = [
|
|
237
|
-
"proc-macro2",
|
|
238
|
-
"quote",
|
|
239
|
-
"syn 2.0.96",
|
|
240
|
-
]
|
|
241
|
-
|
|
242
177
|
[[package]]
|
|
243
178
|
name = "async-task"
|
|
244
179
|
version = "4.7.1"
|
|
@@ -247,9 +182,9 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
|
247
182
|
|
|
248
183
|
[[package]]
|
|
249
184
|
name = "async-tempfile"
|
|
250
|
-
version = "0.
|
|
185
|
+
version = "0.7.0"
|
|
251
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
187
|
+
checksum = "c8a57b75c36e16f4d015e60e6a177552976a99b6947724403c551bcfa7cb1207"
|
|
253
188
|
dependencies = [
|
|
254
189
|
"tokio",
|
|
255
190
|
"uuid",
|
|
@@ -257,20 +192,20 @@ dependencies = [
|
|
|
257
192
|
|
|
258
193
|
[[package]]
|
|
259
194
|
name = "async-trait"
|
|
260
|
-
version = "0.1.
|
|
195
|
+
version = "0.1.89"
|
|
261
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
-
checksum = "
|
|
197
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
263
198
|
dependencies = [
|
|
264
199
|
"proc-macro2",
|
|
265
200
|
"quote",
|
|
266
|
-
"syn 2.0.
|
|
201
|
+
"syn 2.0.114",
|
|
267
202
|
]
|
|
268
203
|
|
|
269
204
|
[[package]]
|
|
270
205
|
name = "atomic"
|
|
271
|
-
version = "0.6.
|
|
206
|
+
version = "0.6.1"
|
|
272
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
208
|
+
checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
|
|
274
209
|
dependencies = [
|
|
275
210
|
"bytemuck",
|
|
276
211
|
]
|
|
@@ -283,55 +218,83 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
283
218
|
|
|
284
219
|
[[package]]
|
|
285
220
|
name = "autocfg"
|
|
286
|
-
version = "1.
|
|
221
|
+
version = "1.5.0"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "aws-lc-rs"
|
|
227
|
+
version = "1.15.2"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"aws-lc-sys",
|
|
232
|
+
"untrusted 0.7.1",
|
|
233
|
+
"zeroize",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "aws-lc-sys"
|
|
238
|
+
version = "0.35.0"
|
|
287
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "
|
|
240
|
+
checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"cc",
|
|
243
|
+
"cmake",
|
|
244
|
+
"dunce",
|
|
245
|
+
"fs_extra",
|
|
246
|
+
]
|
|
289
247
|
|
|
290
248
|
[[package]]
|
|
291
249
|
name = "axum"
|
|
292
|
-
version = "0.
|
|
250
|
+
version = "0.8.8"
|
|
293
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
252
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
295
253
|
dependencies = [
|
|
296
|
-
"async-trait",
|
|
297
254
|
"axum-core",
|
|
298
255
|
"bytes",
|
|
256
|
+
"form_urlencoded",
|
|
299
257
|
"futures-util",
|
|
300
258
|
"http",
|
|
301
259
|
"http-body",
|
|
302
260
|
"http-body-util",
|
|
261
|
+
"hyper",
|
|
262
|
+
"hyper-util",
|
|
303
263
|
"itoa",
|
|
304
|
-
"matchit
|
|
264
|
+
"matchit",
|
|
305
265
|
"memchr",
|
|
306
266
|
"mime",
|
|
307
267
|
"percent-encoding",
|
|
308
268
|
"pin-project-lite",
|
|
309
|
-
"
|
|
310
|
-
"
|
|
269
|
+
"serde_core",
|
|
270
|
+
"serde_json",
|
|
271
|
+
"serde_path_to_error",
|
|
272
|
+
"serde_urlencoded",
|
|
311
273
|
"sync_wrapper",
|
|
274
|
+
"tokio",
|
|
312
275
|
"tower 0.5.2",
|
|
313
276
|
"tower-layer",
|
|
314
277
|
"tower-service",
|
|
278
|
+
"tracing",
|
|
315
279
|
]
|
|
316
280
|
|
|
317
281
|
[[package]]
|
|
318
282
|
name = "axum-core"
|
|
319
|
-
version = "0.
|
|
283
|
+
version = "0.5.6"
|
|
320
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
-
checksum = "
|
|
285
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
322
286
|
dependencies = [
|
|
323
|
-
"async-trait",
|
|
324
287
|
"bytes",
|
|
325
|
-
"futures-
|
|
288
|
+
"futures-core",
|
|
326
289
|
"http",
|
|
327
290
|
"http-body",
|
|
328
291
|
"http-body-util",
|
|
329
292
|
"mime",
|
|
330
293
|
"pin-project-lite",
|
|
331
|
-
"rustversion",
|
|
332
294
|
"sync_wrapper",
|
|
333
295
|
"tower-layer",
|
|
334
296
|
"tower-service",
|
|
297
|
+
"tracing",
|
|
335
298
|
]
|
|
336
299
|
|
|
337
300
|
[[package]]
|
|
@@ -341,28 +304,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
341
304
|
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
|
|
342
305
|
dependencies = [
|
|
343
306
|
"futures-core",
|
|
344
|
-
"getrandom",
|
|
307
|
+
"getrandom 0.2.16",
|
|
345
308
|
"instant",
|
|
346
309
|
"pin-project-lite",
|
|
347
|
-
"rand",
|
|
310
|
+
"rand 0.8.5",
|
|
348
311
|
"tokio",
|
|
349
312
|
]
|
|
350
313
|
|
|
351
|
-
[[package]]
|
|
352
|
-
name = "backtrace"
|
|
353
|
-
version = "0.3.74"
|
|
354
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
356
|
-
dependencies = [
|
|
357
|
-
"addr2line",
|
|
358
|
-
"cfg-if",
|
|
359
|
-
"libc",
|
|
360
|
-
"miniz_oxide",
|
|
361
|
-
"object",
|
|
362
|
-
"rustc-demangle",
|
|
363
|
-
"windows-targets 0.52.6",
|
|
364
|
-
]
|
|
365
|
-
|
|
366
314
|
[[package]]
|
|
367
315
|
name = "base64"
|
|
368
316
|
version = "0.21.7"
|
|
@@ -375,11 +323,17 @@ version = "0.22.1"
|
|
|
375
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
324
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
377
325
|
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "base64ct"
|
|
328
|
+
version = "1.8.2"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "7d809780667f4410e7c41b07f52439b94d2bdf8528eeedc287fa38d3b7f95d82"
|
|
331
|
+
|
|
378
332
|
[[package]]
|
|
379
333
|
name = "bitflags"
|
|
380
|
-
version = "2.
|
|
334
|
+
version = "2.10.0"
|
|
381
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
-
checksum = "
|
|
336
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
383
337
|
|
|
384
338
|
[[package]]
|
|
385
339
|
name = "block-buffer"
|
|
@@ -392,11 +346,11 @@ dependencies = [
|
|
|
392
346
|
|
|
393
347
|
[[package]]
|
|
394
348
|
name = "blocking"
|
|
395
|
-
version = "1.6.
|
|
349
|
+
version = "1.6.2"
|
|
396
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "
|
|
351
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
398
352
|
dependencies = [
|
|
399
|
-
"async-channel 2.
|
|
353
|
+
"async-channel 2.5.0",
|
|
400
354
|
"async-task",
|
|
401
355
|
"futures-io",
|
|
402
356
|
"futures-lite",
|
|
@@ -405,45 +359,48 @@ dependencies = [
|
|
|
405
359
|
|
|
406
360
|
[[package]]
|
|
407
361
|
name = "bumpalo"
|
|
408
|
-
version = "3.
|
|
362
|
+
version = "3.19.1"
|
|
409
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
364
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
411
365
|
|
|
412
366
|
[[package]]
|
|
413
367
|
name = "bytemuck"
|
|
414
|
-
version = "1.
|
|
415
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
|
|
417
|
-
|
|
418
|
-
[[package]]
|
|
419
|
-
name = "byteorder"
|
|
420
|
-
version = "1.5.0"
|
|
368
|
+
version = "1.24.0"
|
|
421
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
-
checksum = "
|
|
370
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
423
371
|
|
|
424
372
|
[[package]]
|
|
425
373
|
name = "bytes"
|
|
426
|
-
version = "1.
|
|
374
|
+
version = "1.11.0"
|
|
427
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
-
checksum = "
|
|
376
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
429
377
|
dependencies = [
|
|
430
378
|
"serde",
|
|
431
379
|
]
|
|
432
380
|
|
|
433
381
|
[[package]]
|
|
434
382
|
name = "cc"
|
|
435
|
-
version = "1.2.
|
|
383
|
+
version = "1.2.51"
|
|
436
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
-
checksum = "
|
|
385
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
438
386
|
dependencies = [
|
|
387
|
+
"find-msvc-tools",
|
|
388
|
+
"jobserver",
|
|
389
|
+
"libc",
|
|
439
390
|
"shlex",
|
|
440
391
|
]
|
|
441
392
|
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "cesu8"
|
|
395
|
+
version = "1.1.0"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
398
|
+
|
|
442
399
|
[[package]]
|
|
443
400
|
name = "cfg-if"
|
|
444
|
-
version = "1.0.
|
|
401
|
+
version = "1.0.4"
|
|
445
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
-
checksum = "
|
|
403
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
447
404
|
|
|
448
405
|
[[package]]
|
|
449
406
|
name = "cfg_aliases"
|
|
@@ -453,11 +410,44 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
453
410
|
|
|
454
411
|
[[package]]
|
|
455
412
|
name = "chrono"
|
|
456
|
-
version = "0.4.
|
|
413
|
+
version = "0.4.42"
|
|
457
414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
-
checksum = "
|
|
415
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
459
416
|
dependencies = [
|
|
417
|
+
"iana-time-zone",
|
|
418
|
+
"js-sys",
|
|
460
419
|
"num-traits",
|
|
420
|
+
"serde",
|
|
421
|
+
"wasm-bindgen",
|
|
422
|
+
"windows-link",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "cmake"
|
|
427
|
+
version = "0.1.57"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"cc",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "colored"
|
|
436
|
+
version = "3.0.0"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"windows-sys 0.59.0",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "combine"
|
|
445
|
+
version = "4.6.7"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"bytes",
|
|
450
|
+
"memchr",
|
|
461
451
|
]
|
|
462
452
|
|
|
463
453
|
[[package]]
|
|
@@ -470,10 +460,39 @@ dependencies = [
|
|
|
470
460
|
]
|
|
471
461
|
|
|
472
462
|
[[package]]
|
|
473
|
-
name = "
|
|
474
|
-
version = "0.
|
|
463
|
+
name = "const-oid"
|
|
464
|
+
version = "0.9.6"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "cookie"
|
|
470
|
+
version = "0.18.1"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"percent-encoding",
|
|
475
|
+
"time",
|
|
476
|
+
"version_check",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "cookie_store"
|
|
481
|
+
version = "0.22.0"
|
|
475
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "
|
|
483
|
+
checksum = "3fc4bff745c9b4c7fb1e97b25d13153da2bc7796260141df62378998d070207f"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"cookie",
|
|
486
|
+
"document-features",
|
|
487
|
+
"idna",
|
|
488
|
+
"log",
|
|
489
|
+
"publicsuffix",
|
|
490
|
+
"serde",
|
|
491
|
+
"serde_derive",
|
|
492
|
+
"serde_json",
|
|
493
|
+
"time",
|
|
494
|
+
"url",
|
|
495
|
+
]
|
|
477
496
|
|
|
478
497
|
[[package]]
|
|
479
498
|
name = "core-foundation"
|
|
@@ -487,9 +506,9 @@ dependencies = [
|
|
|
487
506
|
|
|
488
507
|
[[package]]
|
|
489
508
|
name = "core-foundation"
|
|
490
|
-
version = "0.10.
|
|
509
|
+
version = "0.10.1"
|
|
491
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
511
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
493
512
|
dependencies = [
|
|
494
513
|
"core-foundation-sys",
|
|
495
514
|
"libc",
|
|
@@ -518,9 +537,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
518
537
|
|
|
519
538
|
[[package]]
|
|
520
539
|
name = "crypto-common"
|
|
521
|
-
version = "0.1.
|
|
540
|
+
version = "0.1.7"
|
|
522
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
542
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
524
543
|
dependencies = [
|
|
525
544
|
"generic-array",
|
|
526
545
|
"typenum",
|
|
@@ -528,9 +547,9 @@ dependencies = [
|
|
|
528
547
|
|
|
529
548
|
[[package]]
|
|
530
549
|
name = "darling"
|
|
531
|
-
version = "0.20.
|
|
550
|
+
version = "0.20.11"
|
|
532
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
-
checksum = "
|
|
552
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
534
553
|
dependencies = [
|
|
535
554
|
"darling_core",
|
|
536
555
|
"darling_macro",
|
|
@@ -538,27 +557,38 @@ dependencies = [
|
|
|
538
557
|
|
|
539
558
|
[[package]]
|
|
540
559
|
name = "darling_core"
|
|
541
|
-
version = "0.20.
|
|
560
|
+
version = "0.20.11"
|
|
542
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
-
checksum = "
|
|
562
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
544
563
|
dependencies = [
|
|
545
564
|
"fnv",
|
|
546
565
|
"ident_case",
|
|
547
566
|
"proc-macro2",
|
|
548
567
|
"quote",
|
|
549
568
|
"strsim",
|
|
550
|
-
"syn 2.0.
|
|
569
|
+
"syn 2.0.114",
|
|
551
570
|
]
|
|
552
571
|
|
|
553
572
|
[[package]]
|
|
554
573
|
name = "darling_macro"
|
|
555
|
-
version = "0.20.
|
|
574
|
+
version = "0.20.11"
|
|
556
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
-
checksum = "
|
|
576
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
558
577
|
dependencies = [
|
|
559
578
|
"darling_core",
|
|
560
579
|
"quote",
|
|
561
|
-
"syn 2.0.
|
|
580
|
+
"syn 2.0.114",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "der"
|
|
585
|
+
version = "0.7.10"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"const-oid",
|
|
590
|
+
"pem-rfc7468",
|
|
591
|
+
"zeroize",
|
|
562
592
|
]
|
|
563
593
|
|
|
564
594
|
[[package]]
|
|
@@ -589,7 +619,7 @@ dependencies = [
|
|
|
589
619
|
"darling",
|
|
590
620
|
"proc-macro2",
|
|
591
621
|
"quote",
|
|
592
|
-
"syn 2.0.
|
|
622
|
+
"syn 2.0.114",
|
|
593
623
|
]
|
|
594
624
|
|
|
595
625
|
[[package]]
|
|
@@ -599,20 +629,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
599
629
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
600
630
|
dependencies = [
|
|
601
631
|
"derive_builder_core",
|
|
602
|
-
"syn 2.0.
|
|
603
|
-
]
|
|
604
|
-
|
|
605
|
-
[[package]]
|
|
606
|
-
name = "derive_more"
|
|
607
|
-
version = "0.99.18"
|
|
608
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
|
|
610
|
-
dependencies = [
|
|
611
|
-
"convert_case",
|
|
612
|
-
"proc-macro2",
|
|
613
|
-
"quote",
|
|
614
|
-
"rustc_version",
|
|
615
|
-
"syn 2.0.96",
|
|
632
|
+
"syn 2.0.114",
|
|
616
633
|
]
|
|
617
634
|
|
|
618
635
|
[[package]]
|
|
@@ -622,61 +639,65 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
622
639
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
623
640
|
dependencies = [
|
|
624
641
|
"block-buffer",
|
|
642
|
+
"const-oid",
|
|
625
643
|
"crypto-common",
|
|
626
644
|
]
|
|
627
645
|
|
|
628
646
|
[[package]]
|
|
629
|
-
name = "
|
|
630
|
-
version = "
|
|
647
|
+
name = "displaydoc"
|
|
648
|
+
version = "0.2.5"
|
|
631
649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
-
checksum = "
|
|
650
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
633
651
|
dependencies = [
|
|
634
|
-
"
|
|
652
|
+
"proc-macro2",
|
|
653
|
+
"quote",
|
|
654
|
+
"syn 2.0.114",
|
|
635
655
|
]
|
|
636
656
|
|
|
637
657
|
[[package]]
|
|
638
|
-
name = "
|
|
639
|
-
version = "0.
|
|
658
|
+
name = "document-features"
|
|
659
|
+
version = "0.2.12"
|
|
640
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
-
checksum = "
|
|
661
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
642
662
|
dependencies = [
|
|
643
|
-
"
|
|
644
|
-
"option-ext",
|
|
645
|
-
"redox_users",
|
|
646
|
-
"windows-sys 0.48.0",
|
|
663
|
+
"litrs",
|
|
647
664
|
]
|
|
648
665
|
|
|
649
666
|
[[package]]
|
|
650
|
-
name = "
|
|
651
|
-
version = "0.
|
|
667
|
+
name = "dunce"
|
|
668
|
+
version = "1.0.5"
|
|
652
669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
-
checksum = "
|
|
654
|
-
dependencies = [
|
|
655
|
-
"proc-macro2",
|
|
656
|
-
"quote",
|
|
657
|
-
"syn 2.0.96",
|
|
658
|
-
]
|
|
670
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
659
671
|
|
|
660
672
|
[[package]]
|
|
661
673
|
name = "either"
|
|
662
|
-
version = "1.
|
|
674
|
+
version = "1.15.0"
|
|
663
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
-
checksum = "
|
|
676
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "encoding_rs"
|
|
680
|
+
version = "0.8.35"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"cfg-if",
|
|
685
|
+
]
|
|
665
686
|
|
|
666
687
|
[[package]]
|
|
667
688
|
name = "equivalent"
|
|
668
|
-
version = "1.0.
|
|
689
|
+
version = "1.0.2"
|
|
669
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
-
checksum = "
|
|
691
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
671
692
|
|
|
672
693
|
[[package]]
|
|
673
694
|
name = "errno"
|
|
674
|
-
version = "0.3.
|
|
695
|
+
version = "0.3.14"
|
|
675
696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
-
checksum = "
|
|
697
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
677
698
|
dependencies = [
|
|
678
699
|
"libc",
|
|
679
|
-
"windows-sys 0.
|
|
700
|
+
"windows-sys 0.61.2",
|
|
680
701
|
]
|
|
681
702
|
|
|
682
703
|
[[package]]
|
|
@@ -687,9 +708,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
|
687
708
|
|
|
688
709
|
[[package]]
|
|
689
710
|
name = "event-listener"
|
|
690
|
-
version = "5.4.
|
|
711
|
+
version = "5.4.1"
|
|
691
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
713
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
693
714
|
dependencies = [
|
|
694
715
|
"concurrent-queue",
|
|
695
716
|
"parking",
|
|
@@ -698,11 +719,11 @@ dependencies = [
|
|
|
698
719
|
|
|
699
720
|
[[package]]
|
|
700
721
|
name = "event-listener-strategy"
|
|
701
|
-
version = "0.5.
|
|
722
|
+
version = "0.5.4"
|
|
702
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
724
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
704
725
|
dependencies = [
|
|
705
|
-
"event-listener 5.4.
|
|
726
|
+
"event-listener 5.4.1",
|
|
706
727
|
"pin-project-lite",
|
|
707
728
|
]
|
|
708
729
|
|
|
@@ -723,16 +744,22 @@ dependencies = [
|
|
|
723
744
|
"pear",
|
|
724
745
|
"serde",
|
|
725
746
|
"tempfile",
|
|
726
|
-
"toml",
|
|
747
|
+
"toml 0.8.23",
|
|
727
748
|
"uncased",
|
|
728
749
|
"version_check",
|
|
729
750
|
]
|
|
730
751
|
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "find-msvc-tools"
|
|
754
|
+
version = "0.1.6"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
757
|
+
|
|
731
758
|
[[package]]
|
|
732
759
|
name = "fixedbitset"
|
|
733
|
-
version = "0.
|
|
760
|
+
version = "0.5.7"
|
|
734
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
-
checksum = "
|
|
762
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
736
763
|
|
|
737
764
|
[[package]]
|
|
738
765
|
name = "fnv"
|
|
@@ -740,15 +767,36 @@ version = "1.0.7"
|
|
|
740
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
768
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
742
769
|
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "foreign-types"
|
|
772
|
+
version = "0.3.2"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"foreign-types-shared",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "foreign-types-shared"
|
|
781
|
+
version = "0.1.1"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
784
|
+
|
|
743
785
|
[[package]]
|
|
744
786
|
name = "form_urlencoded"
|
|
745
|
-
version = "1.2.
|
|
787
|
+
version = "1.2.2"
|
|
746
788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
789
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
748
790
|
dependencies = [
|
|
749
791
|
"percent-encoding",
|
|
750
792
|
]
|
|
751
793
|
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "fs_extra"
|
|
796
|
+
version = "1.3.0"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
799
|
+
|
|
752
800
|
[[package]]
|
|
753
801
|
name = "futures"
|
|
754
802
|
version = "0.3.31"
|
|
@@ -799,9 +847,9 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
|
799
847
|
|
|
800
848
|
[[package]]
|
|
801
849
|
name = "futures-lite"
|
|
802
|
-
version = "2.6.
|
|
850
|
+
version = "2.6.1"
|
|
803
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
-
checksum = "
|
|
852
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
805
853
|
dependencies = [
|
|
806
854
|
"fastrand",
|
|
807
855
|
"futures-core",
|
|
@@ -818,7 +866,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
818
866
|
dependencies = [
|
|
819
867
|
"proc-macro2",
|
|
820
868
|
"quote",
|
|
821
|
-
"syn 2.0.
|
|
869
|
+
"syn 2.0.114",
|
|
822
870
|
]
|
|
823
871
|
|
|
824
872
|
[[package]]
|
|
@@ -869,9 +917,9 @@ dependencies = [
|
|
|
869
917
|
|
|
870
918
|
[[package]]
|
|
871
919
|
name = "getrandom"
|
|
872
|
-
version = "0.2.
|
|
920
|
+
version = "0.2.16"
|
|
873
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
-
checksum = "
|
|
922
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
875
923
|
dependencies = [
|
|
876
924
|
"cfg-if",
|
|
877
925
|
"js-sys",
|
|
@@ -881,16 +929,24 @@ dependencies = [
|
|
|
881
929
|
]
|
|
882
930
|
|
|
883
931
|
[[package]]
|
|
884
|
-
name = "
|
|
885
|
-
version = "0.
|
|
932
|
+
name = "getrandom"
|
|
933
|
+
version = "0.3.4"
|
|
886
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
935
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"cfg-if",
|
|
938
|
+
"js-sys",
|
|
939
|
+
"libc",
|
|
940
|
+
"r-efi",
|
|
941
|
+
"wasip2",
|
|
942
|
+
"wasm-bindgen",
|
|
943
|
+
]
|
|
888
944
|
|
|
889
945
|
[[package]]
|
|
890
946
|
name = "glob"
|
|
891
|
-
version = "0.3.
|
|
947
|
+
version = "0.3.3"
|
|
892
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
-
checksum = "
|
|
949
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
894
950
|
|
|
895
951
|
[[package]]
|
|
896
952
|
name = "gloo-timers"
|
|
@@ -906,9 +962,9 @@ dependencies = [
|
|
|
906
962
|
|
|
907
963
|
[[package]]
|
|
908
964
|
name = "h2"
|
|
909
|
-
version = "0.4.
|
|
965
|
+
version = "0.4.13"
|
|
910
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
967
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
912
968
|
dependencies = [
|
|
913
969
|
"atomic-waker",
|
|
914
970
|
"bytes",
|
|
@@ -916,7 +972,7 @@ dependencies = [
|
|
|
916
972
|
"futures-core",
|
|
917
973
|
"futures-sink",
|
|
918
974
|
"http",
|
|
919
|
-
"indexmap
|
|
975
|
+
"indexmap",
|
|
920
976
|
"slab",
|
|
921
977
|
"tokio",
|
|
922
978
|
"tokio-util",
|
|
@@ -925,23 +981,17 @@ dependencies = [
|
|
|
925
981
|
|
|
926
982
|
[[package]]
|
|
927
983
|
name = "hashbrown"
|
|
928
|
-
version = "0.
|
|
929
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
931
|
-
|
|
932
|
-
[[package]]
|
|
933
|
-
name = "hashbrown"
|
|
934
|
-
version = "0.15.2"
|
|
984
|
+
version = "0.16.1"
|
|
935
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
-
checksum = "
|
|
986
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
937
987
|
|
|
938
988
|
[[package]]
|
|
939
989
|
name = "headers"
|
|
940
|
-
version = "0.4.
|
|
990
|
+
version = "0.4.1"
|
|
941
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
-
checksum = "
|
|
992
|
+
checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
|
|
943
993
|
dependencies = [
|
|
944
|
-
"base64 0.
|
|
994
|
+
"base64 0.22.1",
|
|
945
995
|
"bytes",
|
|
946
996
|
"headers-core",
|
|
947
997
|
"http",
|
|
@@ -973,27 +1023,26 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
973
1023
|
|
|
974
1024
|
[[package]]
|
|
975
1025
|
name = "hermit-abi"
|
|
976
|
-
version = "0.
|
|
1026
|
+
version = "0.5.2"
|
|
977
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
-
checksum = "
|
|
1028
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
979
1029
|
|
|
980
1030
|
[[package]]
|
|
981
1031
|
name = "home"
|
|
982
|
-
version = "0.5.
|
|
1032
|
+
version = "0.5.12"
|
|
983
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
1034
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
985
1035
|
dependencies = [
|
|
986
|
-
"windows-sys 0.
|
|
1036
|
+
"windows-sys 0.61.2",
|
|
987
1037
|
]
|
|
988
1038
|
|
|
989
1039
|
[[package]]
|
|
990
1040
|
name = "http"
|
|
991
|
-
version = "1.
|
|
1041
|
+
version = "1.4.0"
|
|
992
1042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
-
checksum = "
|
|
1043
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
994
1044
|
dependencies = [
|
|
995
1045
|
"bytes",
|
|
996
|
-
"fnv",
|
|
997
1046
|
"itoa",
|
|
998
1047
|
]
|
|
999
1048
|
|
|
@@ -1009,12 +1058,12 @@ dependencies = [
|
|
|
1009
1058
|
|
|
1010
1059
|
[[package]]
|
|
1011
1060
|
name = "http-body-util"
|
|
1012
|
-
version = "0.1.
|
|
1061
|
+
version = "0.1.3"
|
|
1013
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
-
checksum = "
|
|
1063
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1015
1064
|
dependencies = [
|
|
1016
1065
|
"bytes",
|
|
1017
|
-
"futures-
|
|
1066
|
+
"futures-core",
|
|
1018
1067
|
"http",
|
|
1019
1068
|
"http-body",
|
|
1020
1069
|
"pin-project-lite",
|
|
@@ -1022,9 +1071,9 @@ dependencies = [
|
|
|
1022
1071
|
|
|
1023
1072
|
[[package]]
|
|
1024
1073
|
name = "httparse"
|
|
1025
|
-
version = "1.
|
|
1074
|
+
version = "1.10.1"
|
|
1026
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1076
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1028
1077
|
|
|
1029
1078
|
[[package]]
|
|
1030
1079
|
name = "httpdate"
|
|
@@ -1034,13 +1083,12 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1034
1083
|
|
|
1035
1084
|
[[package]]
|
|
1036
1085
|
name = "httpmock"
|
|
1037
|
-
version = "0.8.
|
|
1086
|
+
version = "0.8.2"
|
|
1038
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
-
checksum = "
|
|
1088
|
+
checksum = "511f510e9b1888d67f10bab4397f8b019d2a9b249a2c10acbce2d705b1b32e26"
|
|
1040
1089
|
dependencies = [
|
|
1041
1090
|
"assert-json-diff",
|
|
1042
1091
|
"async-object-pool",
|
|
1043
|
-
"async-std",
|
|
1044
1092
|
"async-trait",
|
|
1045
1093
|
"base64 0.22.1",
|
|
1046
1094
|
"bytes",
|
|
@@ -1053,8 +1101,6 @@ dependencies = [
|
|
|
1053
1101
|
"http-body-util",
|
|
1054
1102
|
"hyper",
|
|
1055
1103
|
"hyper-util",
|
|
1056
|
-
"lazy_static",
|
|
1057
|
-
"log",
|
|
1058
1104
|
"path-tree",
|
|
1059
1105
|
"regex",
|
|
1060
1106
|
"serde",
|
|
@@ -1063,20 +1109,22 @@ dependencies = [
|
|
|
1063
1109
|
"similar",
|
|
1064
1110
|
"stringmetrics",
|
|
1065
1111
|
"tabwriter",
|
|
1066
|
-
"thiserror
|
|
1112
|
+
"thiserror 2.0.17",
|
|
1067
1113
|
"tokio",
|
|
1114
|
+
"tracing",
|
|
1068
1115
|
"url",
|
|
1069
1116
|
]
|
|
1070
1117
|
|
|
1071
1118
|
[[package]]
|
|
1072
1119
|
name = "hyper"
|
|
1073
|
-
version = "1.
|
|
1120
|
+
version = "1.8.1"
|
|
1074
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
-
checksum = "
|
|
1122
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1076
1123
|
dependencies = [
|
|
1124
|
+
"atomic-waker",
|
|
1077
1125
|
"bytes",
|
|
1078
1126
|
"futures-channel",
|
|
1079
|
-
"futures-
|
|
1127
|
+
"futures-core",
|
|
1080
1128
|
"h2",
|
|
1081
1129
|
"http",
|
|
1082
1130
|
"http-body",
|
|
@@ -1084,6 +1132,7 @@ dependencies = [
|
|
|
1084
1132
|
"httpdate",
|
|
1085
1133
|
"itoa",
|
|
1086
1134
|
"pin-project-lite",
|
|
1135
|
+
"pin-utils",
|
|
1087
1136
|
"smallvec",
|
|
1088
1137
|
"tokio",
|
|
1089
1138
|
"want",
|
|
@@ -1131,20 +1180,20 @@ dependencies = [
|
|
|
1131
1180
|
|
|
1132
1181
|
[[package]]
|
|
1133
1182
|
name = "hyper-rustls"
|
|
1134
|
-
version = "0.27.
|
|
1183
|
+
version = "0.27.7"
|
|
1135
1184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
-
checksum = "
|
|
1185
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1137
1186
|
dependencies = [
|
|
1138
|
-
"futures-util",
|
|
1139
1187
|
"http",
|
|
1140
1188
|
"hyper",
|
|
1141
1189
|
"hyper-util",
|
|
1142
|
-
"rustls 0.23.
|
|
1143
|
-
"rustls-native-certs 0.8.
|
|
1190
|
+
"rustls 0.23.36",
|
|
1191
|
+
"rustls-native-certs 0.8.3",
|
|
1144
1192
|
"rustls-pki-types",
|
|
1145
1193
|
"tokio",
|
|
1146
|
-
"tokio-rustls 0.26.
|
|
1194
|
+
"tokio-rustls 0.26.4",
|
|
1147
1195
|
"tower-service",
|
|
1196
|
+
"webpki-roots",
|
|
1148
1197
|
]
|
|
1149
1198
|
|
|
1150
1199
|
[[package]]
|
|
@@ -1175,143 +1224,153 @@ dependencies = [
|
|
|
1175
1224
|
"tower-service",
|
|
1176
1225
|
]
|
|
1177
1226
|
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "hyper-tls"
|
|
1229
|
+
version = "0.6.0"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"bytes",
|
|
1234
|
+
"http-body-util",
|
|
1235
|
+
"hyper",
|
|
1236
|
+
"hyper-util",
|
|
1237
|
+
"native-tls",
|
|
1238
|
+
"tokio",
|
|
1239
|
+
"tokio-native-tls",
|
|
1240
|
+
"tower-service",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1178
1243
|
[[package]]
|
|
1179
1244
|
name = "hyper-util"
|
|
1180
|
-
version = "0.1.
|
|
1245
|
+
version = "0.1.19"
|
|
1181
1246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
-
checksum = "
|
|
1247
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
1183
1248
|
dependencies = [
|
|
1249
|
+
"base64 0.22.1",
|
|
1184
1250
|
"bytes",
|
|
1185
1251
|
"futures-channel",
|
|
1252
|
+
"futures-core",
|
|
1186
1253
|
"futures-util",
|
|
1187
1254
|
"http",
|
|
1188
1255
|
"http-body",
|
|
1189
1256
|
"hyper",
|
|
1257
|
+
"ipnet",
|
|
1258
|
+
"libc",
|
|
1259
|
+
"percent-encoding",
|
|
1190
1260
|
"pin-project-lite",
|
|
1191
1261
|
"socket2",
|
|
1262
|
+
"system-configuration",
|
|
1192
1263
|
"tokio",
|
|
1193
1264
|
"tower-service",
|
|
1194
1265
|
"tracing",
|
|
1266
|
+
"windows-registry",
|
|
1195
1267
|
]
|
|
1196
1268
|
|
|
1197
1269
|
[[package]]
|
|
1198
|
-
name = "
|
|
1199
|
-
version = "1.
|
|
1270
|
+
name = "iana-time-zone"
|
|
1271
|
+
version = "0.1.64"
|
|
1200
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
-
checksum = "
|
|
1273
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1202
1274
|
dependencies = [
|
|
1203
|
-
"
|
|
1204
|
-
"
|
|
1205
|
-
"
|
|
1206
|
-
"
|
|
1275
|
+
"android_system_properties",
|
|
1276
|
+
"core-foundation-sys",
|
|
1277
|
+
"iana-time-zone-haiku",
|
|
1278
|
+
"js-sys",
|
|
1279
|
+
"log",
|
|
1280
|
+
"wasm-bindgen",
|
|
1281
|
+
"windows-core",
|
|
1207
1282
|
]
|
|
1208
1283
|
|
|
1209
1284
|
[[package]]
|
|
1210
|
-
name = "
|
|
1211
|
-
version = "1.
|
|
1285
|
+
name = "iana-time-zone-haiku"
|
|
1286
|
+
version = "0.1.2"
|
|
1212
1287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
-
checksum = "
|
|
1288
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1214
1289
|
dependencies = [
|
|
1215
|
-
"
|
|
1216
|
-
"litemap",
|
|
1217
|
-
"tinystr",
|
|
1218
|
-
"writeable",
|
|
1219
|
-
"zerovec",
|
|
1290
|
+
"cc",
|
|
1220
1291
|
]
|
|
1221
1292
|
|
|
1222
1293
|
[[package]]
|
|
1223
|
-
name = "
|
|
1224
|
-
version = "1.
|
|
1294
|
+
name = "icu_collections"
|
|
1295
|
+
version = "2.1.1"
|
|
1225
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
-
checksum = "
|
|
1297
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1227
1298
|
dependencies = [
|
|
1228
1299
|
"displaydoc",
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1232
|
-
"tinystr",
|
|
1300
|
+
"potential_utf",
|
|
1301
|
+
"yoke",
|
|
1302
|
+
"zerofrom",
|
|
1233
1303
|
"zerovec",
|
|
1234
1304
|
]
|
|
1235
1305
|
|
|
1236
1306
|
[[package]]
|
|
1237
|
-
name = "
|
|
1238
|
-
version = "1.
|
|
1307
|
+
name = "icu_locale_core"
|
|
1308
|
+
version = "2.1.1"
|
|
1239
1309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
-
checksum = "
|
|
1310
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"displaydoc",
|
|
1313
|
+
"litemap",
|
|
1314
|
+
"tinystr",
|
|
1315
|
+
"writeable",
|
|
1316
|
+
"zerovec",
|
|
1317
|
+
]
|
|
1241
1318
|
|
|
1242
1319
|
[[package]]
|
|
1243
1320
|
name = "icu_normalizer"
|
|
1244
|
-
version = "1.
|
|
1321
|
+
version = "2.1.1"
|
|
1245
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
-
checksum = "
|
|
1323
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1247
1324
|
dependencies = [
|
|
1248
|
-
"displaydoc",
|
|
1249
1325
|
"icu_collections",
|
|
1250
1326
|
"icu_normalizer_data",
|
|
1251
1327
|
"icu_properties",
|
|
1252
1328
|
"icu_provider",
|
|
1253
1329
|
"smallvec",
|
|
1254
|
-
"utf16_iter",
|
|
1255
|
-
"utf8_iter",
|
|
1256
|
-
"write16",
|
|
1257
1330
|
"zerovec",
|
|
1258
1331
|
]
|
|
1259
1332
|
|
|
1260
1333
|
[[package]]
|
|
1261
1334
|
name = "icu_normalizer_data"
|
|
1262
|
-
version = "1.
|
|
1335
|
+
version = "2.1.1"
|
|
1263
1336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
-
checksum = "
|
|
1337
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1265
1338
|
|
|
1266
1339
|
[[package]]
|
|
1267
1340
|
name = "icu_properties"
|
|
1268
|
-
version = "1.
|
|
1341
|
+
version = "2.1.2"
|
|
1269
1342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
-
checksum = "
|
|
1343
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1271
1344
|
dependencies = [
|
|
1272
|
-
"displaydoc",
|
|
1273
1345
|
"icu_collections",
|
|
1274
|
-
"
|
|
1346
|
+
"icu_locale_core",
|
|
1275
1347
|
"icu_properties_data",
|
|
1276
1348
|
"icu_provider",
|
|
1277
|
-
"
|
|
1349
|
+
"zerotrie",
|
|
1278
1350
|
"zerovec",
|
|
1279
1351
|
]
|
|
1280
1352
|
|
|
1281
1353
|
[[package]]
|
|
1282
1354
|
name = "icu_properties_data"
|
|
1283
|
-
version = "1.
|
|
1355
|
+
version = "2.1.2"
|
|
1284
1356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
-
checksum = "
|
|
1357
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1286
1358
|
|
|
1287
1359
|
[[package]]
|
|
1288
1360
|
name = "icu_provider"
|
|
1289
|
-
version = "1.
|
|
1361
|
+
version = "2.1.1"
|
|
1290
1362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
-
checksum = "
|
|
1363
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1292
1364
|
dependencies = [
|
|
1293
1365
|
"displaydoc",
|
|
1294
|
-
"
|
|
1295
|
-
"icu_provider_macros",
|
|
1296
|
-
"stable_deref_trait",
|
|
1297
|
-
"tinystr",
|
|
1366
|
+
"icu_locale_core",
|
|
1298
1367
|
"writeable",
|
|
1299
1368
|
"yoke",
|
|
1300
1369
|
"zerofrom",
|
|
1370
|
+
"zerotrie",
|
|
1301
1371
|
"zerovec",
|
|
1302
1372
|
]
|
|
1303
1373
|
|
|
1304
|
-
[[package]]
|
|
1305
|
-
name = "icu_provider_macros"
|
|
1306
|
-
version = "1.5.0"
|
|
1307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1309
|
-
dependencies = [
|
|
1310
|
-
"proc-macro2",
|
|
1311
|
-
"quote",
|
|
1312
|
-
"syn 2.0.96",
|
|
1313
|
-
]
|
|
1314
|
-
|
|
1315
1374
|
[[package]]
|
|
1316
1375
|
name = "ident_case"
|
|
1317
1376
|
version = "1.0.1"
|
|
@@ -1320,9 +1379,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1320
1379
|
|
|
1321
1380
|
[[package]]
|
|
1322
1381
|
name = "idna"
|
|
1323
|
-
version = "1.0
|
|
1382
|
+
version = "1.1.0"
|
|
1324
1383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
-
checksum = "
|
|
1384
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1326
1385
|
dependencies = [
|
|
1327
1386
|
"idna_adapter",
|
|
1328
1387
|
"smallvec",
|
|
@@ -1331,9 +1390,9 @@ dependencies = [
|
|
|
1331
1390
|
|
|
1332
1391
|
[[package]]
|
|
1333
1392
|
name = "idna_adapter"
|
|
1334
|
-
version = "1.2.
|
|
1393
|
+
version = "1.2.1"
|
|
1335
1394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
-
checksum = "
|
|
1395
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1337
1396
|
dependencies = [
|
|
1338
1397
|
"icu_normalizer",
|
|
1339
1398
|
"icu_properties",
|
|
@@ -1341,29 +1400,22 @@ dependencies = [
|
|
|
1341
1400
|
|
|
1342
1401
|
[[package]]
|
|
1343
1402
|
name = "indexmap"
|
|
1344
|
-
version = "
|
|
1345
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
-
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1347
|
-
dependencies = [
|
|
1348
|
-
"autocfg",
|
|
1349
|
-
"hashbrown 0.12.3",
|
|
1350
|
-
]
|
|
1351
|
-
|
|
1352
|
-
[[package]]
|
|
1353
|
-
name = "indexmap"
|
|
1354
|
-
version = "2.7.1"
|
|
1403
|
+
version = "2.12.1"
|
|
1355
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
-
checksum = "
|
|
1405
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
1357
1406
|
dependencies = [
|
|
1358
1407
|
"equivalent",
|
|
1359
|
-
"hashbrown
|
|
1408
|
+
"hashbrown",
|
|
1360
1409
|
]
|
|
1361
1410
|
|
|
1362
1411
|
[[package]]
|
|
1363
1412
|
name = "indoc"
|
|
1364
|
-
version = "2.0.
|
|
1413
|
+
version = "2.0.7"
|
|
1365
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1415
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"rustversion",
|
|
1418
|
+
]
|
|
1367
1419
|
|
|
1368
1420
|
[[package]]
|
|
1369
1421
|
name = "inlinable_string"
|
|
@@ -1382,9 +1434,9 @@ dependencies = [
|
|
|
1382
1434
|
|
|
1383
1435
|
[[package]]
|
|
1384
1436
|
name = "inventory"
|
|
1385
|
-
version = "0.3.
|
|
1437
|
+
version = "0.3.21"
|
|
1386
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
-
checksum = "
|
|
1439
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1388
1440
|
dependencies = [
|
|
1389
1441
|
"rustversion",
|
|
1390
1442
|
]
|
|
@@ -1395,26 +1447,68 @@ version = "2.11.0"
|
|
|
1395
1447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
1448
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1397
1449
|
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "iri-string"
|
|
1452
|
+
version = "0.7.10"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1455
|
+
dependencies = [
|
|
1456
|
+
"memchr",
|
|
1457
|
+
"serde",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1398
1460
|
[[package]]
|
|
1399
1461
|
name = "itertools"
|
|
1400
|
-
version = "0.
|
|
1462
|
+
version = "0.14.0"
|
|
1401
1463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "
|
|
1464
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1403
1465
|
dependencies = [
|
|
1404
1466
|
"either",
|
|
1405
1467
|
]
|
|
1406
1468
|
|
|
1407
1469
|
[[package]]
|
|
1408
1470
|
name = "itoa"
|
|
1409
|
-
version = "1.0.
|
|
1471
|
+
version = "1.0.17"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "jni"
|
|
1477
|
+
version = "0.21.1"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"cesu8",
|
|
1482
|
+
"cfg-if",
|
|
1483
|
+
"combine",
|
|
1484
|
+
"jni-sys",
|
|
1485
|
+
"log",
|
|
1486
|
+
"thiserror 1.0.69",
|
|
1487
|
+
"walkdir",
|
|
1488
|
+
"windows-sys 0.45.0",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "jni-sys"
|
|
1493
|
+
version = "0.3.0"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "jobserver"
|
|
1499
|
+
version = "0.1.34"
|
|
1410
1500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
-
checksum = "
|
|
1501
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"getrandom 0.3.4",
|
|
1504
|
+
"libc",
|
|
1505
|
+
]
|
|
1412
1506
|
|
|
1413
1507
|
[[package]]
|
|
1414
1508
|
name = "js-sys"
|
|
1415
|
-
version = "0.3.
|
|
1509
|
+
version = "0.3.83"
|
|
1416
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
-
checksum = "
|
|
1511
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
1418
1512
|
dependencies = [
|
|
1419
1513
|
"once_cell",
|
|
1420
1514
|
"wasm-bindgen",
|
|
@@ -1422,11 +1516,11 @@ dependencies = [
|
|
|
1422
1516
|
|
|
1423
1517
|
[[package]]
|
|
1424
1518
|
name = "jsonwebtoken"
|
|
1425
|
-
version = "9.3.
|
|
1519
|
+
version = "9.3.1"
|
|
1426
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
-
checksum = "
|
|
1521
|
+
checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
|
|
1428
1522
|
dependencies = [
|
|
1429
|
-
"base64 0.
|
|
1523
|
+
"base64 0.22.1",
|
|
1430
1524
|
"js-sys",
|
|
1431
1525
|
"pem",
|
|
1432
1526
|
"ring",
|
|
@@ -1435,6 +1529,23 @@ dependencies = [
|
|
|
1435
1529
|
"simple_asn1",
|
|
1436
1530
|
]
|
|
1437
1531
|
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "jsonwebtoken"
|
|
1534
|
+
version = "10.2.0"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"aws-lc-rs",
|
|
1539
|
+
"base64 0.22.1",
|
|
1540
|
+
"getrandom 0.2.16",
|
|
1541
|
+
"js-sys",
|
|
1542
|
+
"pem",
|
|
1543
|
+
"serde",
|
|
1544
|
+
"serde_json",
|
|
1545
|
+
"signature",
|
|
1546
|
+
"simple_asn1",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1438
1549
|
[[package]]
|
|
1439
1550
|
name = "kv-log-macro"
|
|
1440
1551
|
version = "1.0.7"
|
|
@@ -1449,71 +1560,93 @@ name = "lazy_static"
|
|
|
1449
1560
|
version = "1.5.0"
|
|
1450
1561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
1562
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"spin",
|
|
1565
|
+
]
|
|
1452
1566
|
|
|
1453
1567
|
[[package]]
|
|
1454
1568
|
name = "libc"
|
|
1455
|
-
version = "0.2.
|
|
1569
|
+
version = "0.2.179"
|
|
1456
1570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
-
checksum = "
|
|
1571
|
+
checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
|
|
1458
1572
|
|
|
1459
1573
|
[[package]]
|
|
1460
|
-
name = "
|
|
1461
|
-
version = "0.
|
|
1574
|
+
name = "libm"
|
|
1575
|
+
version = "0.2.15"
|
|
1462
1576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
-
checksum = "
|
|
1464
|
-
dependencies = [
|
|
1465
|
-
"bitflags",
|
|
1466
|
-
"libc",
|
|
1467
|
-
]
|
|
1577
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1468
1578
|
|
|
1469
1579
|
[[package]]
|
|
1470
1580
|
name = "linux-raw-sys"
|
|
1471
|
-
version = "0.
|
|
1581
|
+
version = "0.11.0"
|
|
1472
1582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
-
checksum = "
|
|
1583
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1474
1584
|
|
|
1475
1585
|
[[package]]
|
|
1476
1586
|
name = "litemap"
|
|
1477
|
-
version = "0.
|
|
1587
|
+
version = "0.8.1"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "litrs"
|
|
1593
|
+
version = "1.0.0"
|
|
1478
1594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
-
checksum = "
|
|
1595
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1480
1596
|
|
|
1481
1597
|
[[package]]
|
|
1482
1598
|
name = "lock_api"
|
|
1483
|
-
version = "0.4.
|
|
1599
|
+
version = "0.4.14"
|
|
1484
1600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1601
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1486
1602
|
dependencies = [
|
|
1487
|
-
"autocfg",
|
|
1488
1603
|
"scopeguard",
|
|
1489
1604
|
]
|
|
1490
1605
|
|
|
1491
1606
|
[[package]]
|
|
1492
1607
|
name = "log"
|
|
1493
|
-
version = "0.4.
|
|
1608
|
+
version = "0.4.29"
|
|
1494
1609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
-
checksum = "
|
|
1610
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1496
1611
|
dependencies = [
|
|
1497
1612
|
"value-bag",
|
|
1498
1613
|
]
|
|
1499
1614
|
|
|
1500
1615
|
[[package]]
|
|
1501
|
-
name = "
|
|
1502
|
-
version = "0.
|
|
1616
|
+
name = "lru-slab"
|
|
1617
|
+
version = "0.1.2"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "malloc_buf"
|
|
1623
|
+
version = "0.0.6"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"libc",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "matchers"
|
|
1632
|
+
version = "0.2.0"
|
|
1503
1633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1634
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"regex-automata",
|
|
1637
|
+
]
|
|
1505
1638
|
|
|
1506
1639
|
[[package]]
|
|
1507
1640
|
name = "matchit"
|
|
1508
|
-
version = "0.8.
|
|
1641
|
+
version = "0.8.4"
|
|
1509
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
-
checksum = "
|
|
1643
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1511
1644
|
|
|
1512
1645
|
[[package]]
|
|
1513
1646
|
name = "memchr"
|
|
1514
|
-
version = "2.7.
|
|
1647
|
+
version = "2.7.6"
|
|
1515
1648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
-
checksum = "
|
|
1649
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1517
1650
|
|
|
1518
1651
|
[[package]]
|
|
1519
1652
|
name = "memoffset"
|
|
@@ -1541,39 +1674,52 @@ dependencies = [
|
|
|
1541
1674
|
]
|
|
1542
1675
|
|
|
1543
1676
|
[[package]]
|
|
1544
|
-
name = "
|
|
1545
|
-
version = "
|
|
1677
|
+
name = "mio"
|
|
1678
|
+
version = "1.1.1"
|
|
1546
1679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
-
checksum = "
|
|
1680
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1548
1681
|
dependencies = [
|
|
1549
|
-
"
|
|
1682
|
+
"libc",
|
|
1683
|
+
"wasi",
|
|
1684
|
+
"windows-sys 0.61.2",
|
|
1550
1685
|
]
|
|
1551
1686
|
|
|
1552
1687
|
[[package]]
|
|
1553
|
-
name = "
|
|
1554
|
-
version = "
|
|
1688
|
+
name = "multimap"
|
|
1689
|
+
version = "0.10.1"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
1692
|
+
|
|
1693
|
+
[[package]]
|
|
1694
|
+
name = "native-tls"
|
|
1695
|
+
version = "0.2.14"
|
|
1555
1696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
1697
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
1557
1698
|
dependencies = [
|
|
1558
1699
|
"libc",
|
|
1559
|
-
"
|
|
1560
|
-
"
|
|
1700
|
+
"log",
|
|
1701
|
+
"openssl",
|
|
1702
|
+
"openssl-probe 0.1.6",
|
|
1703
|
+
"openssl-sys",
|
|
1704
|
+
"schannel",
|
|
1705
|
+
"security-framework 2.11.1",
|
|
1706
|
+
"security-framework-sys",
|
|
1707
|
+
"tempfile",
|
|
1561
1708
|
]
|
|
1562
1709
|
|
|
1563
1710
|
[[package]]
|
|
1564
|
-
name = "
|
|
1565
|
-
version = "0.
|
|
1711
|
+
name = "ndk-context"
|
|
1712
|
+
version = "0.1.1"
|
|
1566
1713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
-
checksum = "
|
|
1714
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
1568
1715
|
|
|
1569
1716
|
[[package]]
|
|
1570
1717
|
name = "nu-ansi-term"
|
|
1571
|
-
version = "0.
|
|
1718
|
+
version = "0.50.3"
|
|
1572
1719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
-
checksum = "
|
|
1720
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1574
1721
|
dependencies = [
|
|
1575
|
-
"
|
|
1576
|
-
"winapi",
|
|
1722
|
+
"windows-sys 0.61.2",
|
|
1577
1723
|
]
|
|
1578
1724
|
|
|
1579
1725
|
[[package]]
|
|
@@ -1586,6 +1732,22 @@ dependencies = [
|
|
|
1586
1732
|
"num-traits",
|
|
1587
1733
|
]
|
|
1588
1734
|
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "num-bigint-dig"
|
|
1737
|
+
version = "0.8.6"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
1740
|
+
dependencies = [
|
|
1741
|
+
"lazy_static",
|
|
1742
|
+
"libm",
|
|
1743
|
+
"num-integer",
|
|
1744
|
+
"num-iter",
|
|
1745
|
+
"num-traits",
|
|
1746
|
+
"rand 0.8.5",
|
|
1747
|
+
"smallvec",
|
|
1748
|
+
"zeroize",
|
|
1749
|
+
]
|
|
1750
|
+
|
|
1589
1751
|
[[package]]
|
|
1590
1752
|
name = "num-complex"
|
|
1591
1753
|
version = "0.4.6"
|
|
@@ -1610,6 +1772,17 @@ dependencies = [
|
|
|
1610
1772
|
"num-traits",
|
|
1611
1773
|
]
|
|
1612
1774
|
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "num-iter"
|
|
1777
|
+
version = "0.1.45"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"autocfg",
|
|
1782
|
+
"num-integer",
|
|
1783
|
+
"num-traits",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1613
1786
|
[[package]]
|
|
1614
1787
|
name = "num-traits"
|
|
1615
1788
|
version = "0.2.19"
|
|
@@ -1617,22 +1790,97 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1617
1790
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1618
1791
|
dependencies = [
|
|
1619
1792
|
"autocfg",
|
|
1793
|
+
"libm",
|
|
1620
1794
|
]
|
|
1621
1795
|
|
|
1622
1796
|
[[package]]
|
|
1623
|
-
name = "
|
|
1624
|
-
version = "0.
|
|
1797
|
+
name = "oauth2"
|
|
1798
|
+
version = "5.0.0"
|
|
1625
1799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
-
checksum = "
|
|
1800
|
+
checksum = "51e219e79014df21a225b1860a479e2dcd7cbd9130f4defd4bd0e191ea31d67d"
|
|
1627
1801
|
dependencies = [
|
|
1628
|
-
"
|
|
1802
|
+
"base64 0.22.1",
|
|
1803
|
+
"chrono",
|
|
1804
|
+
"getrandom 0.2.16",
|
|
1805
|
+
"http",
|
|
1806
|
+
"rand 0.8.5",
|
|
1807
|
+
"reqwest",
|
|
1808
|
+
"serde",
|
|
1809
|
+
"serde_json",
|
|
1810
|
+
"serde_path_to_error",
|
|
1811
|
+
"sha2",
|
|
1812
|
+
"thiserror 1.0.69",
|
|
1813
|
+
"url",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "oauth2-test-server"
|
|
1818
|
+
version = "0.1.3"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "e66b9483c4680a03f8f3a414e02d9e2b2d12702946d2fd05d58c3da4406630d2"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"axum",
|
|
1823
|
+
"base64 0.21.7",
|
|
1824
|
+
"chrono",
|
|
1825
|
+
"colored",
|
|
1826
|
+
"futures",
|
|
1827
|
+
"http",
|
|
1828
|
+
"jsonwebtoken 10.2.0",
|
|
1829
|
+
"once_cell",
|
|
1830
|
+
"rand 0.8.5",
|
|
1831
|
+
"reqwest",
|
|
1832
|
+
"rsa",
|
|
1833
|
+
"serde",
|
|
1834
|
+
"serde_json",
|
|
1835
|
+
"sha2",
|
|
1836
|
+
"tokio",
|
|
1837
|
+
"tower-http 0.5.2",
|
|
1838
|
+
"tracing",
|
|
1839
|
+
"tracing-subscriber",
|
|
1840
|
+
"url",
|
|
1841
|
+
"uuid",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "objc"
|
|
1846
|
+
version = "0.2.7"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
1849
|
+
dependencies = [
|
|
1850
|
+
"malloc_buf",
|
|
1629
1851
|
]
|
|
1630
1852
|
|
|
1631
1853
|
[[package]]
|
|
1632
1854
|
name = "once_cell"
|
|
1633
|
-
version = "1.
|
|
1855
|
+
version = "1.21.3"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "openssl"
|
|
1861
|
+
version = "0.10.75"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
1864
|
+
dependencies = [
|
|
1865
|
+
"bitflags",
|
|
1866
|
+
"cfg-if",
|
|
1867
|
+
"foreign-types",
|
|
1868
|
+
"libc",
|
|
1869
|
+
"once_cell",
|
|
1870
|
+
"openssl-macros",
|
|
1871
|
+
"openssl-sys",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "openssl-macros"
|
|
1876
|
+
version = "0.1.1"
|
|
1634
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
-
checksum = "
|
|
1878
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1879
|
+
dependencies = [
|
|
1880
|
+
"proc-macro2",
|
|
1881
|
+
"quote",
|
|
1882
|
+
"syn 2.0.114",
|
|
1883
|
+
]
|
|
1636
1884
|
|
|
1637
1885
|
[[package]]
|
|
1638
1886
|
name = "openssl-probe"
|
|
@@ -1640,106 +1888,94 @@ version = "0.1.6"
|
|
|
1640
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
1889
|
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1642
1890
|
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "openssl-probe"
|
|
1893
|
+
version = "0.2.0"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "openssl-sys"
|
|
1899
|
+
version = "0.9.111"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
1902
|
+
dependencies = [
|
|
1903
|
+
"cc",
|
|
1904
|
+
"libc",
|
|
1905
|
+
"pkg-config",
|
|
1906
|
+
"vcpkg",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1643
1909
|
[[package]]
|
|
1644
1910
|
name = "opentelemetry"
|
|
1645
|
-
version = "0.
|
|
1911
|
+
version = "0.30.0"
|
|
1646
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
1913
|
+
checksum = "aaf416e4cb72756655126f7dd7bb0af49c674f4c1b9903e80c009e0c37e552e6"
|
|
1648
1914
|
dependencies = [
|
|
1649
1915
|
"futures-core",
|
|
1650
1916
|
"futures-sink",
|
|
1651
1917
|
"js-sys",
|
|
1652
|
-
"once_cell",
|
|
1653
1918
|
"pin-project-lite",
|
|
1654
|
-
"thiserror
|
|
1919
|
+
"thiserror 2.0.17",
|
|
1920
|
+
"tracing",
|
|
1655
1921
|
]
|
|
1656
1922
|
|
|
1657
1923
|
[[package]]
|
|
1658
1924
|
name = "opentelemetry"
|
|
1659
|
-
version = "0.
|
|
1925
|
+
version = "0.31.0"
|
|
1660
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
-
checksum = "
|
|
1927
|
+
checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
|
|
1662
1928
|
dependencies = [
|
|
1663
1929
|
"futures-core",
|
|
1664
1930
|
"futures-sink",
|
|
1665
1931
|
"js-sys",
|
|
1666
|
-
"once_cell",
|
|
1667
1932
|
"pin-project-lite",
|
|
1668
|
-
"thiserror
|
|
1933
|
+
"thiserror 2.0.17",
|
|
1934
|
+
"tracing",
|
|
1669
1935
|
]
|
|
1670
1936
|
|
|
1671
1937
|
[[package]]
|
|
1672
1938
|
name = "opentelemetry-http"
|
|
1673
|
-
version = "0.
|
|
1939
|
+
version = "0.31.0"
|
|
1674
1940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
-
checksum = "
|
|
1941
|
+
checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
|
|
1676
1942
|
dependencies = [
|
|
1677
1943
|
"async-trait",
|
|
1678
1944
|
"bytes",
|
|
1679
1945
|
"http",
|
|
1680
|
-
"opentelemetry 0.
|
|
1946
|
+
"opentelemetry 0.31.0",
|
|
1681
1947
|
]
|
|
1682
1948
|
|
|
1683
1949
|
[[package]]
|
|
1684
1950
|
name = "opentelemetry_sdk"
|
|
1685
|
-
version = "0.
|
|
1951
|
+
version = "0.30.0"
|
|
1686
1952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
-
checksum = "
|
|
1953
|
+
checksum = "11f644aa9e5e31d11896e024305d7e3c98a88884d9f8919dbf37a9991bc47a4b"
|
|
1688
1954
|
dependencies = [
|
|
1689
|
-
"async-trait",
|
|
1690
1955
|
"futures-channel",
|
|
1691
1956
|
"futures-executor",
|
|
1692
1957
|
"futures-util",
|
|
1693
|
-
"
|
|
1694
|
-
"lazy_static",
|
|
1695
|
-
"once_cell",
|
|
1696
|
-
"opentelemetry 0.23.0",
|
|
1697
|
-
"ordered-float",
|
|
1958
|
+
"opentelemetry 0.30.0",
|
|
1698
1959
|
"percent-encoding",
|
|
1699
|
-
"rand",
|
|
1700
|
-
"thiserror
|
|
1960
|
+
"rand 0.9.2",
|
|
1961
|
+
"thiserror 2.0.17",
|
|
1701
1962
|
]
|
|
1702
1963
|
|
|
1703
1964
|
[[package]]
|
|
1704
1965
|
name = "opentelemetry_sdk"
|
|
1705
|
-
version = "0.
|
|
1966
|
+
version = "0.31.0"
|
|
1706
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
-
checksum = "
|
|
1968
|
+
checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
|
|
1708
1969
|
dependencies = [
|
|
1709
|
-
"async-trait",
|
|
1710
1970
|
"futures-channel",
|
|
1711
1971
|
"futures-executor",
|
|
1712
1972
|
"futures-util",
|
|
1713
|
-
"
|
|
1714
|
-
"once_cell",
|
|
1715
|
-
"opentelemetry 0.24.0",
|
|
1973
|
+
"opentelemetry 0.31.0",
|
|
1716
1974
|
"percent-encoding",
|
|
1717
|
-
"rand",
|
|
1718
|
-
"
|
|
1719
|
-
"thiserror 1.0.69",
|
|
1720
|
-
]
|
|
1721
|
-
|
|
1722
|
-
[[package]]
|
|
1723
|
-
name = "option-ext"
|
|
1724
|
-
version = "0.2.0"
|
|
1725
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
-
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1727
|
-
|
|
1728
|
-
[[package]]
|
|
1729
|
-
name = "ordered-float"
|
|
1730
|
-
version = "4.6.0"
|
|
1731
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
-
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
1733
|
-
dependencies = [
|
|
1734
|
-
"num-traits",
|
|
1975
|
+
"rand 0.9.2",
|
|
1976
|
+
"thiserror 2.0.17",
|
|
1735
1977
|
]
|
|
1736
1978
|
|
|
1737
|
-
[[package]]
|
|
1738
|
-
name = "overload"
|
|
1739
|
-
version = "0.1.1"
|
|
1740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
1742
|
-
|
|
1743
1979
|
[[package]]
|
|
1744
1980
|
name = "parking"
|
|
1745
1981
|
version = "2.2.1"
|
|
@@ -1748,9 +1984,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
|
1748
1984
|
|
|
1749
1985
|
[[package]]
|
|
1750
1986
|
name = "parking_lot"
|
|
1751
|
-
version = "0.12.
|
|
1987
|
+
version = "0.12.5"
|
|
1752
1988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
-
checksum = "
|
|
1989
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1754
1990
|
dependencies = [
|
|
1755
1991
|
"lock_api",
|
|
1756
1992
|
"parking_lot_core",
|
|
@@ -1758,15 +1994,15 @@ dependencies = [
|
|
|
1758
1994
|
|
|
1759
1995
|
[[package]]
|
|
1760
1996
|
name = "parking_lot_core"
|
|
1761
|
-
version = "0.9.
|
|
1997
|
+
version = "0.9.12"
|
|
1762
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
-
checksum = "
|
|
1999
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1764
2000
|
dependencies = [
|
|
1765
2001
|
"cfg-if",
|
|
1766
2002
|
"libc",
|
|
1767
2003
|
"redox_syscall",
|
|
1768
2004
|
"smallvec",
|
|
1769
|
-
"windows-
|
|
2005
|
+
"windows-link",
|
|
1770
2006
|
]
|
|
1771
2007
|
|
|
1772
2008
|
[[package]]
|
|
@@ -1777,28 +2013,28 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
|
1777
2013
|
|
|
1778
2014
|
[[package]]
|
|
1779
2015
|
name = "path-tree"
|
|
1780
|
-
version = "0.8.
|
|
2016
|
+
version = "0.8.3"
|
|
1781
2017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
-
checksum = "
|
|
2018
|
+
checksum = "c2a97453bc21a968f722df730bfe11bd08745cb50d1300b0df2bda131dece136"
|
|
1783
2019
|
dependencies = [
|
|
1784
2020
|
"smallvec",
|
|
1785
2021
|
]
|
|
1786
2022
|
|
|
1787
2023
|
[[package]]
|
|
1788
2024
|
name = "pbjson"
|
|
1789
|
-
version = "0.
|
|
2025
|
+
version = "0.9.0"
|
|
1790
2026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
2027
|
+
checksum = "e8edd1efdd8ab23ba9cb9ace3d9987a72663d5d7c9f74fa00b51d6213645cf6c"
|
|
1792
2028
|
dependencies = [
|
|
1793
|
-
"base64 0.
|
|
2029
|
+
"base64 0.22.1",
|
|
1794
2030
|
"serde",
|
|
1795
2031
|
]
|
|
1796
2032
|
|
|
1797
2033
|
[[package]]
|
|
1798
2034
|
name = "pbjson-build"
|
|
1799
|
-
version = "0.
|
|
2035
|
+
version = "0.9.0"
|
|
1800
2036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
2037
|
+
checksum = "2ed4d5c6ae95e08ac768883c8401cf0e8deb4e6e1d6a4e1fd3d2ec4f0ec63200"
|
|
1802
2038
|
dependencies = [
|
|
1803
2039
|
"heck 0.5.0",
|
|
1804
2040
|
"itertools",
|
|
@@ -1808,9 +2044,9 @@ dependencies = [
|
|
|
1808
2044
|
|
|
1809
2045
|
[[package]]
|
|
1810
2046
|
name = "pbjson-types"
|
|
1811
|
-
version = "0.
|
|
2047
|
+
version = "0.9.0"
|
|
1812
2048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
-
checksum = "
|
|
2049
|
+
checksum = "a14e2757d877c0f607a82ce1b8560e224370f159d66c5d52eb55ea187ef0350e"
|
|
1814
2050
|
dependencies = [
|
|
1815
2051
|
"bytes",
|
|
1816
2052
|
"chrono",
|
|
@@ -1841,53 +2077,62 @@ dependencies = [
|
|
|
1841
2077
|
"proc-macro2",
|
|
1842
2078
|
"proc-macro2-diagnostics",
|
|
1843
2079
|
"quote",
|
|
1844
|
-
"syn 2.0.
|
|
2080
|
+
"syn 2.0.114",
|
|
1845
2081
|
]
|
|
1846
2082
|
|
|
1847
2083
|
[[package]]
|
|
1848
2084
|
name = "pem"
|
|
1849
|
-
version = "3.0.
|
|
2085
|
+
version = "3.0.6"
|
|
1850
2086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
-
checksum = "
|
|
2087
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
1852
2088
|
dependencies = [
|
|
1853
2089
|
"base64 0.22.1",
|
|
1854
|
-
"
|
|
2090
|
+
"serde_core",
|
|
2091
|
+
]
|
|
2092
|
+
|
|
2093
|
+
[[package]]
|
|
2094
|
+
name = "pem-rfc7468"
|
|
2095
|
+
version = "0.7.0"
|
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
2098
|
+
dependencies = [
|
|
2099
|
+
"base64ct",
|
|
1855
2100
|
]
|
|
1856
2101
|
|
|
1857
2102
|
[[package]]
|
|
1858
2103
|
name = "percent-encoding"
|
|
1859
|
-
version = "2.3.
|
|
2104
|
+
version = "2.3.2"
|
|
1860
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
-
checksum = "
|
|
2106
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1862
2107
|
|
|
1863
2108
|
[[package]]
|
|
1864
2109
|
name = "petgraph"
|
|
1865
|
-
version = "0.
|
|
2110
|
+
version = "0.7.1"
|
|
1866
2111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
-
checksum = "
|
|
2112
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
1868
2113
|
dependencies = [
|
|
1869
2114
|
"fixedbitset",
|
|
1870
|
-
"indexmap
|
|
2115
|
+
"indexmap",
|
|
1871
2116
|
]
|
|
1872
2117
|
|
|
1873
2118
|
[[package]]
|
|
1874
2119
|
name = "pin-project"
|
|
1875
|
-
version = "1.1.
|
|
2120
|
+
version = "1.1.10"
|
|
1876
2121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
-
checksum = "
|
|
2122
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
1878
2123
|
dependencies = [
|
|
1879
2124
|
"pin-project-internal",
|
|
1880
2125
|
]
|
|
1881
2126
|
|
|
1882
2127
|
[[package]]
|
|
1883
2128
|
name = "pin-project-internal"
|
|
1884
|
-
version = "1.1.
|
|
2129
|
+
version = "1.1.10"
|
|
1885
2130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
-
checksum = "
|
|
2131
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
1887
2132
|
dependencies = [
|
|
1888
2133
|
"proc-macro2",
|
|
1889
2134
|
"quote",
|
|
1890
|
-
"syn 2.0.
|
|
2135
|
+
"syn 2.0.114",
|
|
1891
2136
|
]
|
|
1892
2137
|
|
|
1893
2138
|
[[package]]
|
|
@@ -1913,26 +2158,61 @@ dependencies = [
|
|
|
1913
2158
|
"futures-io",
|
|
1914
2159
|
]
|
|
1915
2160
|
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "pkcs1"
|
|
2163
|
+
version = "0.7.5"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
2166
|
+
dependencies = [
|
|
2167
|
+
"der",
|
|
2168
|
+
"pkcs8",
|
|
2169
|
+
"spki",
|
|
2170
|
+
]
|
|
2171
|
+
|
|
2172
|
+
[[package]]
|
|
2173
|
+
name = "pkcs8"
|
|
2174
|
+
version = "0.10.2"
|
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
2177
|
+
dependencies = [
|
|
2178
|
+
"der",
|
|
2179
|
+
"spki",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "pkg-config"
|
|
2184
|
+
version = "0.3.32"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2187
|
+
|
|
1916
2188
|
[[package]]
|
|
1917
2189
|
name = "polling"
|
|
1918
|
-
version = "3.
|
|
2190
|
+
version = "3.11.0"
|
|
1919
2191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
-
checksum = "
|
|
2192
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
1921
2193
|
dependencies = [
|
|
1922
2194
|
"cfg-if",
|
|
1923
2195
|
"concurrent-queue",
|
|
1924
2196
|
"hermit-abi",
|
|
1925
2197
|
"pin-project-lite",
|
|
1926
2198
|
"rustix",
|
|
1927
|
-
"
|
|
1928
|
-
"windows-sys 0.59.0",
|
|
2199
|
+
"windows-sys 0.61.2",
|
|
1929
2200
|
]
|
|
1930
2201
|
|
|
1931
2202
|
[[package]]
|
|
1932
2203
|
name = "portable-atomic"
|
|
1933
|
-
version = "1.
|
|
2204
|
+
version = "1.13.0"
|
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "potential_utf"
|
|
2210
|
+
version = "0.1.4"
|
|
1934
2211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
-
checksum = "
|
|
2212
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"zerovec",
|
|
2215
|
+
]
|
|
1936
2216
|
|
|
1937
2217
|
[[package]]
|
|
1938
2218
|
name = "powerfmt"
|
|
@@ -1942,28 +2222,37 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
1942
2222
|
|
|
1943
2223
|
[[package]]
|
|
1944
2224
|
name = "ppv-lite86"
|
|
1945
|
-
version = "0.2.
|
|
2225
|
+
version = "0.2.21"
|
|
1946
2226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
-
checksum = "
|
|
2227
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1948
2228
|
dependencies = [
|
|
1949
2229
|
"zerocopy",
|
|
1950
2230
|
]
|
|
1951
2231
|
|
|
1952
2232
|
[[package]]
|
|
1953
2233
|
name = "prettyplease"
|
|
1954
|
-
version = "0.2.
|
|
2234
|
+
version = "0.2.37"
|
|
1955
2235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
-
checksum = "
|
|
2236
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1957
2237
|
dependencies = [
|
|
1958
2238
|
"proc-macro2",
|
|
1959
|
-
"syn 2.0.
|
|
2239
|
+
"syn 2.0.114",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "proc-macro-crate"
|
|
2244
|
+
version = "3.4.0"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
2247
|
+
dependencies = [
|
|
2248
|
+
"toml_edit 0.23.10+spec-1.0.0",
|
|
1960
2249
|
]
|
|
1961
2250
|
|
|
1962
2251
|
[[package]]
|
|
1963
2252
|
name = "proc-macro2"
|
|
1964
|
-
version = "1.0.
|
|
2253
|
+
version = "1.0.105"
|
|
1965
2254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
-
checksum = "
|
|
2255
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
1967
2256
|
dependencies = [
|
|
1968
2257
|
"unicode-ident",
|
|
1969
2258
|
]
|
|
@@ -1976,16 +2265,16 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
|
1976
2265
|
dependencies = [
|
|
1977
2266
|
"proc-macro2",
|
|
1978
2267
|
"quote",
|
|
1979
|
-
"syn 2.0.
|
|
2268
|
+
"syn 2.0.114",
|
|
1980
2269
|
"version_check",
|
|
1981
2270
|
"yansi",
|
|
1982
2271
|
]
|
|
1983
2272
|
|
|
1984
2273
|
[[package]]
|
|
1985
2274
|
name = "prost"
|
|
1986
|
-
version = "0.
|
|
2275
|
+
version = "0.14.1"
|
|
1987
2276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
-
checksum = "
|
|
2277
|
+
checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
|
|
1989
2278
|
dependencies = [
|
|
1990
2279
|
"bytes",
|
|
1991
2280
|
"prost-derive",
|
|
@@ -1993,9 +2282,9 @@ dependencies = [
|
|
|
1993
2282
|
|
|
1994
2283
|
[[package]]
|
|
1995
2284
|
name = "prost-build"
|
|
1996
|
-
version = "0.
|
|
2285
|
+
version = "0.14.1"
|
|
1997
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
-
checksum = "
|
|
2287
|
+
checksum = "ac6c3320f9abac597dcbc668774ef006702672474aad53c6d596b62e487b40b1"
|
|
1999
2288
|
dependencies = [
|
|
2000
2289
|
"heck 0.5.0",
|
|
2001
2290
|
"itertools",
|
|
@@ -2006,31 +2295,69 @@ dependencies = [
|
|
|
2006
2295
|
"prettyplease",
|
|
2007
2296
|
"prost",
|
|
2008
2297
|
"prost-types",
|
|
2298
|
+
"pulldown-cmark",
|
|
2299
|
+
"pulldown-cmark-to-cmark",
|
|
2009
2300
|
"regex",
|
|
2010
|
-
"syn 2.0.
|
|
2301
|
+
"syn 2.0.114",
|
|
2011
2302
|
"tempfile",
|
|
2012
2303
|
]
|
|
2013
2304
|
|
|
2014
2305
|
[[package]]
|
|
2015
2306
|
name = "prost-derive"
|
|
2016
|
-
version = "0.
|
|
2307
|
+
version = "0.14.1"
|
|
2017
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
-
checksum = "
|
|
2309
|
+
checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
|
|
2019
2310
|
dependencies = [
|
|
2020
2311
|
"anyhow",
|
|
2021
2312
|
"itertools",
|
|
2022
2313
|
"proc-macro2",
|
|
2023
2314
|
"quote",
|
|
2024
|
-
"syn 2.0.
|
|
2315
|
+
"syn 2.0.114",
|
|
2316
|
+
]
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "prost-types"
|
|
2320
|
+
version = "0.14.1"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"prost",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "psl-types"
|
|
2329
|
+
version = "2.0.11"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
|
2332
|
+
|
|
2333
|
+
[[package]]
|
|
2334
|
+
name = "publicsuffix"
|
|
2335
|
+
version = "2.3.0"
|
|
2336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2337
|
+
checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
|
|
2338
|
+
dependencies = [
|
|
2339
|
+
"idna",
|
|
2340
|
+
"psl-types",
|
|
2341
|
+
]
|
|
2342
|
+
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "pulldown-cmark"
|
|
2345
|
+
version = "0.13.0"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
|
|
2348
|
+
dependencies = [
|
|
2349
|
+
"bitflags",
|
|
2350
|
+
"memchr",
|
|
2351
|
+
"unicase",
|
|
2025
2352
|
]
|
|
2026
2353
|
|
|
2027
2354
|
[[package]]
|
|
2028
|
-
name = "
|
|
2029
|
-
version = "
|
|
2355
|
+
name = "pulldown-cmark-to-cmark"
|
|
2356
|
+
version = "21.1.0"
|
|
2030
2357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
-
checksum = "
|
|
2358
|
+
checksum = "8246feae3db61428fd0bb94285c690b460e4517d83152377543ca802357785f1"
|
|
2032
2359
|
dependencies = [
|
|
2033
|
-
"
|
|
2360
|
+
"pulldown-cmark",
|
|
2034
2361
|
]
|
|
2035
2362
|
|
|
2036
2363
|
[[package]]
|
|
@@ -2105,7 +2432,7 @@ dependencies = [
|
|
|
2105
2432
|
"proc-macro2",
|
|
2106
2433
|
"pyo3-macros-backend",
|
|
2107
2434
|
"quote",
|
|
2108
|
-
"syn 2.0.
|
|
2435
|
+
"syn 2.0.114",
|
|
2109
2436
|
]
|
|
2110
2437
|
|
|
2111
2438
|
[[package]]
|
|
@@ -2118,12 +2445,12 @@ dependencies = [
|
|
|
2118
2445
|
"proc-macro2",
|
|
2119
2446
|
"pyo3-build-config 0.20.3",
|
|
2120
2447
|
"quote",
|
|
2121
|
-
"syn 2.0.
|
|
2448
|
+
"syn 2.0.114",
|
|
2122
2449
|
]
|
|
2123
2450
|
|
|
2124
2451
|
[[package]]
|
|
2125
2452
|
name = "qcs-api-client-common"
|
|
2126
|
-
version = "0.
|
|
2453
|
+
version = "0.13.1-dev.6"
|
|
2127
2454
|
dependencies = [
|
|
2128
2455
|
"async-tempfile",
|
|
2129
2456
|
"async-trait",
|
|
@@ -2133,8 +2460,13 @@ dependencies = [
|
|
|
2133
2460
|
"futures",
|
|
2134
2461
|
"home",
|
|
2135
2462
|
"http",
|
|
2463
|
+
"http-body-util",
|
|
2136
2464
|
"httpmock",
|
|
2137
|
-
"
|
|
2465
|
+
"hyper",
|
|
2466
|
+
"hyper-util",
|
|
2467
|
+
"jsonwebtoken 9.3.1",
|
|
2468
|
+
"oauth2",
|
|
2469
|
+
"oauth2-test-server",
|
|
2138
2470
|
"paste",
|
|
2139
2471
|
"pyo3",
|
|
2140
2472
|
"pyo3-asyncio",
|
|
@@ -2143,21 +2475,24 @@ dependencies = [
|
|
|
2143
2475
|
"rigetti-pyo3",
|
|
2144
2476
|
"rstest",
|
|
2145
2477
|
"serde",
|
|
2478
|
+
"serde_json",
|
|
2146
2479
|
"serial_test",
|
|
2147
2480
|
"shellexpand",
|
|
2148
|
-
"thiserror
|
|
2481
|
+
"thiserror 2.0.17",
|
|
2149
2482
|
"time",
|
|
2150
2483
|
"tokio",
|
|
2151
|
-
"
|
|
2152
|
-
"
|
|
2484
|
+
"tokio-util",
|
|
2485
|
+
"toml 0.9.10+spec-1.1.0",
|
|
2486
|
+
"toml_edit 0.23.10+spec-1.0.0",
|
|
2153
2487
|
"tracing",
|
|
2154
2488
|
"url",
|
|
2155
2489
|
"urlpattern",
|
|
2490
|
+
"webbrowser",
|
|
2156
2491
|
]
|
|
2157
2492
|
|
|
2158
2493
|
[[package]]
|
|
2159
2494
|
name = "qcs-api-client-grpc"
|
|
2160
|
-
version = "0.
|
|
2495
|
+
version = "0.13.1-dev.6"
|
|
2161
2496
|
dependencies = [
|
|
2162
2497
|
"async-std",
|
|
2163
2498
|
"backoff",
|
|
@@ -2169,11 +2504,11 @@ dependencies = [
|
|
|
2169
2504
|
"hyper-proxy2",
|
|
2170
2505
|
"hyper-socks2",
|
|
2171
2506
|
"hyper-util",
|
|
2172
|
-
"jsonwebtoken",
|
|
2507
|
+
"jsonwebtoken 9.3.1",
|
|
2173
2508
|
"once_cell",
|
|
2174
|
-
"opentelemetry 0.
|
|
2509
|
+
"opentelemetry 0.31.0",
|
|
2175
2510
|
"opentelemetry-http",
|
|
2176
|
-
"opentelemetry_sdk 0.
|
|
2511
|
+
"opentelemetry_sdk 0.31.0",
|
|
2177
2512
|
"pbjson",
|
|
2178
2513
|
"pbjson-build",
|
|
2179
2514
|
"pbjson-types",
|
|
@@ -2184,17 +2519,19 @@ dependencies = [
|
|
|
2184
2519
|
"serde",
|
|
2185
2520
|
"serde_json",
|
|
2186
2521
|
"tempfile",
|
|
2187
|
-
"thiserror
|
|
2522
|
+
"thiserror 2.0.17",
|
|
2188
2523
|
"tokio",
|
|
2189
2524
|
"tokio-stream",
|
|
2190
2525
|
"tonic",
|
|
2191
2526
|
"tonic-build",
|
|
2192
2527
|
"tonic-health",
|
|
2528
|
+
"tonic-prost",
|
|
2529
|
+
"tonic-prost-build",
|
|
2193
2530
|
"tonic-web",
|
|
2194
2531
|
"tower 0.4.13",
|
|
2195
|
-
"tower-http",
|
|
2532
|
+
"tower-http 0.5.2",
|
|
2196
2533
|
"tracing",
|
|
2197
|
-
"tracing-opentelemetry 0.
|
|
2534
|
+
"tracing-opentelemetry 0.32.0",
|
|
2198
2535
|
"tracing-subscriber",
|
|
2199
2536
|
"url",
|
|
2200
2537
|
"urlpattern",
|
|
@@ -2203,57 +2540,60 @@ dependencies = [
|
|
|
2203
2540
|
|
|
2204
2541
|
[[package]]
|
|
2205
2542
|
name = "qcs-api-client-openapi"
|
|
2206
|
-
version = "0.
|
|
2543
|
+
version = "0.14.1-dev.6"
|
|
2207
2544
|
dependencies = [
|
|
2208
2545
|
"anyhow",
|
|
2209
2546
|
"http",
|
|
2210
2547
|
"qcs-api-client-common",
|
|
2211
2548
|
"reqwest",
|
|
2212
|
-
"reqwest-middleware
|
|
2549
|
+
"reqwest-middleware",
|
|
2213
2550
|
"reqwest-tracing",
|
|
2214
2551
|
"rstest",
|
|
2215
2552
|
"serde",
|
|
2216
2553
|
"serde_json",
|
|
2217
2554
|
"tokio",
|
|
2218
2555
|
"tracing",
|
|
2219
|
-
"tracing-opentelemetry 0.
|
|
2556
|
+
"tracing-opentelemetry 0.32.0",
|
|
2220
2557
|
"url",
|
|
2221
2558
|
"urlpattern",
|
|
2222
2559
|
]
|
|
2223
2560
|
|
|
2224
2561
|
[[package]]
|
|
2225
2562
|
name = "quinn"
|
|
2226
|
-
version = "0.11.
|
|
2563
|
+
version = "0.11.9"
|
|
2227
2564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
-
checksum = "
|
|
2565
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2229
2566
|
dependencies = [
|
|
2230
2567
|
"bytes",
|
|
2568
|
+
"cfg_aliases",
|
|
2231
2569
|
"pin-project-lite",
|
|
2232
2570
|
"quinn-proto",
|
|
2233
2571
|
"quinn-udp",
|
|
2234
2572
|
"rustc-hash",
|
|
2235
|
-
"rustls 0.23.
|
|
2573
|
+
"rustls 0.23.36",
|
|
2236
2574
|
"socket2",
|
|
2237
|
-
"thiserror 2.0.
|
|
2575
|
+
"thiserror 2.0.17",
|
|
2238
2576
|
"tokio",
|
|
2239
2577
|
"tracing",
|
|
2578
|
+
"web-time",
|
|
2240
2579
|
]
|
|
2241
2580
|
|
|
2242
2581
|
[[package]]
|
|
2243
2582
|
name = "quinn-proto"
|
|
2244
|
-
version = "0.11.
|
|
2583
|
+
version = "0.11.13"
|
|
2245
2584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
-
checksum = "
|
|
2585
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2247
2586
|
dependencies = [
|
|
2248
2587
|
"bytes",
|
|
2249
|
-
"getrandom",
|
|
2250
|
-
"
|
|
2588
|
+
"getrandom 0.3.4",
|
|
2589
|
+
"lru-slab",
|
|
2590
|
+
"rand 0.9.2",
|
|
2251
2591
|
"ring",
|
|
2252
2592
|
"rustc-hash",
|
|
2253
|
-
"rustls 0.23.
|
|
2593
|
+
"rustls 0.23.36",
|
|
2254
2594
|
"rustls-pki-types",
|
|
2255
2595
|
"slab",
|
|
2256
|
-
"thiserror 2.0.
|
|
2596
|
+
"thiserror 2.0.17",
|
|
2257
2597
|
"tinyvec",
|
|
2258
2598
|
"tracing",
|
|
2259
2599
|
"web-time",
|
|
@@ -2261,27 +2601,33 @@ dependencies = [
|
|
|
2261
2601
|
|
|
2262
2602
|
[[package]]
|
|
2263
2603
|
name = "quinn-udp"
|
|
2264
|
-
version = "0.5.
|
|
2604
|
+
version = "0.5.14"
|
|
2265
2605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
-
checksum = "
|
|
2606
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2267
2607
|
dependencies = [
|
|
2268
2608
|
"cfg_aliases",
|
|
2269
2609
|
"libc",
|
|
2270
2610
|
"once_cell",
|
|
2271
2611
|
"socket2",
|
|
2272
2612
|
"tracing",
|
|
2273
|
-
"windows-sys 0.
|
|
2613
|
+
"windows-sys 0.60.2",
|
|
2274
2614
|
]
|
|
2275
2615
|
|
|
2276
2616
|
[[package]]
|
|
2277
2617
|
name = "quote"
|
|
2278
|
-
version = "1.0.
|
|
2618
|
+
version = "1.0.43"
|
|
2279
2619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
-
checksum = "
|
|
2620
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
2281
2621
|
dependencies = [
|
|
2282
2622
|
"proc-macro2",
|
|
2283
2623
|
]
|
|
2284
2624
|
|
|
2625
|
+
[[package]]
|
|
2626
|
+
name = "r-efi"
|
|
2627
|
+
version = "5.3.0"
|
|
2628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2629
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2630
|
+
|
|
2285
2631
|
[[package]]
|
|
2286
2632
|
name = "rand"
|
|
2287
2633
|
version = "0.8.5"
|
|
@@ -2289,8 +2635,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2289
2635
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2290
2636
|
dependencies = [
|
|
2291
2637
|
"libc",
|
|
2292
|
-
"rand_chacha",
|
|
2293
|
-
"rand_core",
|
|
2638
|
+
"rand_chacha 0.3.1",
|
|
2639
|
+
"rand_core 0.6.4",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "rand"
|
|
2644
|
+
version = "0.9.2"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"rand_chacha 0.9.0",
|
|
2649
|
+
"rand_core 0.9.3",
|
|
2294
2650
|
]
|
|
2295
2651
|
|
|
2296
2652
|
[[package]]
|
|
@@ -2300,7 +2656,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2300
2656
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2301
2657
|
dependencies = [
|
|
2302
2658
|
"ppv-lite86",
|
|
2303
|
-
"rand_core",
|
|
2659
|
+
"rand_core 0.6.4",
|
|
2660
|
+
]
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "rand_chacha"
|
|
2664
|
+
version = "0.9.0"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2667
|
+
dependencies = [
|
|
2668
|
+
"ppv-lite86",
|
|
2669
|
+
"rand_core 0.9.3",
|
|
2304
2670
|
]
|
|
2305
2671
|
|
|
2306
2672
|
[[package]]
|
|
@@ -2309,34 +2675,38 @@ version = "0.6.4"
|
|
|
2309
2675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
2676
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2311
2677
|
dependencies = [
|
|
2312
|
-
"getrandom",
|
|
2678
|
+
"getrandom 0.2.16",
|
|
2313
2679
|
]
|
|
2314
2680
|
|
|
2315
2681
|
[[package]]
|
|
2316
|
-
name = "
|
|
2317
|
-
version = "0.
|
|
2682
|
+
name = "rand_core"
|
|
2683
|
+
version = "0.9.3"
|
|
2318
2684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
-
checksum = "
|
|
2685
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2320
2686
|
dependencies = [
|
|
2321
|
-
"
|
|
2687
|
+
"getrandom 0.3.4",
|
|
2322
2688
|
]
|
|
2323
2689
|
|
|
2324
2690
|
[[package]]
|
|
2325
|
-
name = "
|
|
2326
|
-
version = "0.
|
|
2691
|
+
name = "raw-window-handle"
|
|
2692
|
+
version = "0.5.2"
|
|
2693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
+
checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "redox_syscall"
|
|
2698
|
+
version = "0.5.18"
|
|
2327
2699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
-
checksum = "
|
|
2700
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2329
2701
|
dependencies = [
|
|
2330
|
-
"
|
|
2331
|
-
"libredox",
|
|
2332
|
-
"thiserror 1.0.69",
|
|
2702
|
+
"bitflags",
|
|
2333
2703
|
]
|
|
2334
2704
|
|
|
2335
2705
|
[[package]]
|
|
2336
2706
|
name = "regex"
|
|
2337
|
-
version = "1.
|
|
2707
|
+
version = "1.12.2"
|
|
2338
2708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
-
checksum = "
|
|
2709
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2340
2710
|
dependencies = [
|
|
2341
2711
|
"aho-corasick",
|
|
2342
2712
|
"memchr",
|
|
@@ -2346,9 +2716,9 @@ dependencies = [
|
|
|
2346
2716
|
|
|
2347
2717
|
[[package]]
|
|
2348
2718
|
name = "regex-automata"
|
|
2349
|
-
version = "0.4.
|
|
2719
|
+
version = "0.4.13"
|
|
2350
2720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
-
checksum = "
|
|
2721
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2352
2722
|
dependencies = [
|
|
2353
2723
|
"aho-corasick",
|
|
2354
2724
|
"memchr",
|
|
@@ -2357,75 +2727,72 @@ dependencies = [
|
|
|
2357
2727
|
|
|
2358
2728
|
[[package]]
|
|
2359
2729
|
name = "regex-syntax"
|
|
2360
|
-
version = "0.8.
|
|
2730
|
+
version = "0.8.8"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2733
|
+
|
|
2734
|
+
[[package]]
|
|
2735
|
+
name = "relative-path"
|
|
2736
|
+
version = "1.9.3"
|
|
2361
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
|
-
checksum = "
|
|
2738
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
2363
2739
|
|
|
2364
2740
|
[[package]]
|
|
2365
2741
|
name = "reqwest"
|
|
2366
|
-
version = "0.12.
|
|
2742
|
+
version = "0.12.28"
|
|
2367
2743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
-
checksum = "
|
|
2744
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2369
2745
|
dependencies = [
|
|
2370
2746
|
"base64 0.22.1",
|
|
2371
2747
|
"bytes",
|
|
2748
|
+
"cookie",
|
|
2749
|
+
"cookie_store",
|
|
2750
|
+
"encoding_rs",
|
|
2372
2751
|
"futures-core",
|
|
2373
2752
|
"futures-util",
|
|
2753
|
+
"h2",
|
|
2374
2754
|
"http",
|
|
2375
2755
|
"http-body",
|
|
2376
2756
|
"http-body-util",
|
|
2377
2757
|
"hyper",
|
|
2378
|
-
"hyper-rustls 0.27.
|
|
2758
|
+
"hyper-rustls 0.27.7",
|
|
2759
|
+
"hyper-tls",
|
|
2379
2760
|
"hyper-util",
|
|
2380
|
-
"ipnet",
|
|
2381
2761
|
"js-sys",
|
|
2382
2762
|
"log",
|
|
2383
2763
|
"mime",
|
|
2384
2764
|
"mime_guess",
|
|
2385
|
-
"
|
|
2765
|
+
"native-tls",
|
|
2386
2766
|
"percent-encoding",
|
|
2387
2767
|
"pin-project-lite",
|
|
2388
2768
|
"quinn",
|
|
2389
|
-
"rustls 0.23.
|
|
2390
|
-
"rustls-native-certs 0.8.
|
|
2391
|
-
"rustls-pemfile",
|
|
2769
|
+
"rustls 0.23.36",
|
|
2770
|
+
"rustls-native-certs 0.8.3",
|
|
2392
2771
|
"rustls-pki-types",
|
|
2393
2772
|
"serde",
|
|
2394
2773
|
"serde_json",
|
|
2395
2774
|
"serde_urlencoded",
|
|
2396
2775
|
"sync_wrapper",
|
|
2397
2776
|
"tokio",
|
|
2398
|
-
"tokio-
|
|
2399
|
-
"tokio-
|
|
2777
|
+
"tokio-native-tls",
|
|
2778
|
+
"tokio-rustls 0.26.4",
|
|
2779
|
+
"tokio-util",
|
|
2400
2780
|
"tower 0.5.2",
|
|
2781
|
+
"tower-http 0.6.8",
|
|
2401
2782
|
"tower-service",
|
|
2402
2783
|
"url",
|
|
2403
2784
|
"wasm-bindgen",
|
|
2404
2785
|
"wasm-bindgen-futures",
|
|
2786
|
+
"wasm-streams",
|
|
2405
2787
|
"web-sys",
|
|
2406
|
-
"
|
|
2407
|
-
]
|
|
2408
|
-
|
|
2409
|
-
[[package]]
|
|
2410
|
-
name = "reqwest-middleware"
|
|
2411
|
-
version = "0.3.3"
|
|
2412
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
-
checksum = "562ceb5a604d3f7c885a792d42c199fd8af239d0a51b2fa6a78aafa092452b04"
|
|
2414
|
-
dependencies = [
|
|
2415
|
-
"anyhow",
|
|
2416
|
-
"async-trait",
|
|
2417
|
-
"http",
|
|
2418
|
-
"reqwest",
|
|
2419
|
-
"serde",
|
|
2420
|
-
"thiserror 1.0.69",
|
|
2421
|
-
"tower-service",
|
|
2788
|
+
"webpki-roots",
|
|
2422
2789
|
]
|
|
2423
2790
|
|
|
2424
2791
|
[[package]]
|
|
2425
2792
|
name = "reqwest-middleware"
|
|
2426
|
-
version = "0.4.
|
|
2793
|
+
version = "0.4.2"
|
|
2427
2794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
-
checksum = "
|
|
2795
|
+
checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e"
|
|
2429
2796
|
dependencies = [
|
|
2430
2797
|
"anyhow",
|
|
2431
2798
|
"async-trait",
|
|
@@ -2438,20 +2805,20 @@ dependencies = [
|
|
|
2438
2805
|
|
|
2439
2806
|
[[package]]
|
|
2440
2807
|
name = "reqwest-tracing"
|
|
2441
|
-
version = "0.5.
|
|
2808
|
+
version = "0.5.8"
|
|
2442
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
-
checksum = "
|
|
2810
|
+
checksum = "d70ea85f131b2ee9874f0b160ac5976f8af75f3c9badfe0d955880257d10bd83"
|
|
2444
2811
|
dependencies = [
|
|
2445
2812
|
"anyhow",
|
|
2446
2813
|
"async-trait",
|
|
2447
|
-
"getrandom",
|
|
2814
|
+
"getrandom 0.2.16",
|
|
2448
2815
|
"http",
|
|
2449
|
-
"matchit
|
|
2450
|
-
"opentelemetry 0.
|
|
2816
|
+
"matchit",
|
|
2817
|
+
"opentelemetry 0.30.0",
|
|
2451
2818
|
"reqwest",
|
|
2452
|
-
"reqwest-middleware
|
|
2819
|
+
"reqwest-middleware",
|
|
2453
2820
|
"tracing",
|
|
2454
|
-
"tracing-opentelemetry 0.
|
|
2821
|
+
"tracing-opentelemetry 0.31.0",
|
|
2455
2822
|
]
|
|
2456
2823
|
|
|
2457
2824
|
[[package]]
|
|
@@ -2469,56 +2836,72 @@ dependencies = [
|
|
|
2469
2836
|
|
|
2470
2837
|
[[package]]
|
|
2471
2838
|
name = "ring"
|
|
2472
|
-
version = "0.17.
|
|
2839
|
+
version = "0.17.14"
|
|
2473
2840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
-
checksum = "
|
|
2841
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2475
2842
|
dependencies = [
|
|
2476
2843
|
"cc",
|
|
2477
2844
|
"cfg-if",
|
|
2478
|
-
"getrandom",
|
|
2845
|
+
"getrandom 0.2.16",
|
|
2479
2846
|
"libc",
|
|
2480
|
-
"
|
|
2481
|
-
"untrusted",
|
|
2847
|
+
"untrusted 0.9.0",
|
|
2482
2848
|
"windows-sys 0.52.0",
|
|
2483
2849
|
]
|
|
2484
2850
|
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "rsa"
|
|
2853
|
+
version = "0.9.10"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
2856
|
+
dependencies = [
|
|
2857
|
+
"const-oid",
|
|
2858
|
+
"digest",
|
|
2859
|
+
"num-bigint-dig",
|
|
2860
|
+
"num-integer",
|
|
2861
|
+
"num-traits",
|
|
2862
|
+
"pkcs1",
|
|
2863
|
+
"pkcs8",
|
|
2864
|
+
"rand_core 0.6.4",
|
|
2865
|
+
"signature",
|
|
2866
|
+
"spki",
|
|
2867
|
+
"subtle",
|
|
2868
|
+
"zeroize",
|
|
2869
|
+
]
|
|
2870
|
+
|
|
2485
2871
|
[[package]]
|
|
2486
2872
|
name = "rstest"
|
|
2487
|
-
version = "0.
|
|
2873
|
+
version = "0.26.1"
|
|
2488
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
-
checksum = "
|
|
2875
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
2490
2876
|
dependencies = [
|
|
2491
|
-
"futures",
|
|
2492
2877
|
"futures-timer",
|
|
2878
|
+
"futures-util",
|
|
2493
2879
|
"rstest_macros",
|
|
2494
|
-
"rustc_version",
|
|
2495
2880
|
]
|
|
2496
2881
|
|
|
2497
2882
|
[[package]]
|
|
2498
2883
|
name = "rstest_macros"
|
|
2499
|
-
version = "0.
|
|
2884
|
+
version = "0.26.1"
|
|
2500
2885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
-
checksum = "
|
|
2886
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
2502
2887
|
dependencies = [
|
|
2503
2888
|
"cfg-if",
|
|
2889
|
+
"glob",
|
|
2890
|
+
"proc-macro-crate",
|
|
2504
2891
|
"proc-macro2",
|
|
2505
2892
|
"quote",
|
|
2893
|
+
"regex",
|
|
2894
|
+
"relative-path",
|
|
2506
2895
|
"rustc_version",
|
|
2507
|
-
"syn
|
|
2896
|
+
"syn 2.0.114",
|
|
2508
2897
|
"unicode-ident",
|
|
2509
2898
|
]
|
|
2510
2899
|
|
|
2511
|
-
[[package]]
|
|
2512
|
-
name = "rustc-demangle"
|
|
2513
|
-
version = "0.1.24"
|
|
2514
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2516
|
-
|
|
2517
2900
|
[[package]]
|
|
2518
2901
|
name = "rustc-hash"
|
|
2519
|
-
version = "2.1.
|
|
2902
|
+
version = "2.1.1"
|
|
2520
2903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
-
checksum = "
|
|
2904
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2522
2905
|
|
|
2523
2906
|
[[package]]
|
|
2524
2907
|
name = "rustc_version"
|
|
@@ -2531,15 +2914,15 @@ dependencies = [
|
|
|
2531
2914
|
|
|
2532
2915
|
[[package]]
|
|
2533
2916
|
name = "rustix"
|
|
2534
|
-
version = "
|
|
2917
|
+
version = "1.1.3"
|
|
2535
2918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2919
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2537
2920
|
dependencies = [
|
|
2538
2921
|
"bitflags",
|
|
2539
2922
|
"errno",
|
|
2540
2923
|
"libc",
|
|
2541
2924
|
"linux-raw-sys",
|
|
2542
|
-
"windows-sys 0.
|
|
2925
|
+
"windows-sys 0.61.2",
|
|
2543
2926
|
]
|
|
2544
2927
|
|
|
2545
2928
|
[[package]]
|
|
@@ -2551,22 +2934,22 @@ dependencies = [
|
|
|
2551
2934
|
"log",
|
|
2552
2935
|
"ring",
|
|
2553
2936
|
"rustls-pki-types",
|
|
2554
|
-
"rustls-webpki",
|
|
2937
|
+
"rustls-webpki 0.102.8",
|
|
2555
2938
|
"subtle",
|
|
2556
2939
|
"zeroize",
|
|
2557
2940
|
]
|
|
2558
2941
|
|
|
2559
2942
|
[[package]]
|
|
2560
2943
|
name = "rustls"
|
|
2561
|
-
version = "0.23.
|
|
2944
|
+
version = "0.23.36"
|
|
2562
2945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
2946
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
2564
2947
|
dependencies = [
|
|
2565
2948
|
"log",
|
|
2566
2949
|
"once_cell",
|
|
2567
2950
|
"ring",
|
|
2568
2951
|
"rustls-pki-types",
|
|
2569
|
-
"rustls-webpki",
|
|
2952
|
+
"rustls-webpki 0.103.8",
|
|
2570
2953
|
"subtle",
|
|
2571
2954
|
"zeroize",
|
|
2572
2955
|
]
|
|
@@ -2577,7 +2960,7 @@ version = "0.7.3"
|
|
|
2577
2960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2578
2961
|
checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
|
|
2579
2962
|
dependencies = [
|
|
2580
|
-
"openssl-probe",
|
|
2963
|
+
"openssl-probe 0.1.6",
|
|
2581
2964
|
"rustls-pemfile",
|
|
2582
2965
|
"rustls-pki-types",
|
|
2583
2966
|
"schannel",
|
|
@@ -2586,14 +2969,14 @@ dependencies = [
|
|
|
2586
2969
|
|
|
2587
2970
|
[[package]]
|
|
2588
2971
|
name = "rustls-native-certs"
|
|
2589
|
-
version = "0.8.
|
|
2972
|
+
version = "0.8.3"
|
|
2590
2973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2591
|
-
checksum = "
|
|
2974
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2592
2975
|
dependencies = [
|
|
2593
|
-
"openssl-probe",
|
|
2976
|
+
"openssl-probe 0.2.0",
|
|
2594
2977
|
"rustls-pki-types",
|
|
2595
2978
|
"schannel",
|
|
2596
|
-
"security-framework 3.
|
|
2979
|
+
"security-framework 3.5.1",
|
|
2597
2980
|
]
|
|
2598
2981
|
|
|
2599
2982
|
[[package]]
|
|
@@ -2607,11 +2990,12 @@ dependencies = [
|
|
|
2607
2990
|
|
|
2608
2991
|
[[package]]
|
|
2609
2992
|
name = "rustls-pki-types"
|
|
2610
|
-
version = "1.
|
|
2993
|
+
version = "1.13.2"
|
|
2611
2994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2612
|
-
checksum = "
|
|
2995
|
+
checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
|
|
2613
2996
|
dependencies = [
|
|
2614
2997
|
"web-time",
|
|
2998
|
+
"zeroize",
|
|
2615
2999
|
]
|
|
2616
3000
|
|
|
2617
3001
|
[[package]]
|
|
@@ -2622,37 +3006,57 @@ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
|
2622
3006
|
dependencies = [
|
|
2623
3007
|
"ring",
|
|
2624
3008
|
"rustls-pki-types",
|
|
2625
|
-
"untrusted",
|
|
3009
|
+
"untrusted 0.9.0",
|
|
3010
|
+
]
|
|
3011
|
+
|
|
3012
|
+
[[package]]
|
|
3013
|
+
name = "rustls-webpki"
|
|
3014
|
+
version = "0.103.8"
|
|
3015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
3017
|
+
dependencies = [
|
|
3018
|
+
"ring",
|
|
3019
|
+
"rustls-pki-types",
|
|
3020
|
+
"untrusted 0.9.0",
|
|
2626
3021
|
]
|
|
2627
3022
|
|
|
2628
3023
|
[[package]]
|
|
2629
3024
|
name = "rustversion"
|
|
2630
|
-
version = "1.0.
|
|
3025
|
+
version = "1.0.22"
|
|
2631
3026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2632
|
-
checksum = "
|
|
3027
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2633
3028
|
|
|
2634
3029
|
[[package]]
|
|
2635
3030
|
name = "ryu"
|
|
2636
|
-
version = "1.0.
|
|
3031
|
+
version = "1.0.22"
|
|
3032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
3034
|
+
|
|
3035
|
+
[[package]]
|
|
3036
|
+
name = "same-file"
|
|
3037
|
+
version = "1.0.6"
|
|
2637
3038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
3039
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3040
|
+
dependencies = [
|
|
3041
|
+
"winapi-util",
|
|
3042
|
+
]
|
|
2639
3043
|
|
|
2640
3044
|
[[package]]
|
|
2641
3045
|
name = "scc"
|
|
2642
|
-
version = "2.
|
|
3046
|
+
version = "2.4.0"
|
|
2643
3047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
-
checksum = "
|
|
3048
|
+
checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
|
|
2645
3049
|
dependencies = [
|
|
2646
3050
|
"sdd",
|
|
2647
3051
|
]
|
|
2648
3052
|
|
|
2649
3053
|
[[package]]
|
|
2650
3054
|
name = "schannel"
|
|
2651
|
-
version = "0.1.
|
|
3055
|
+
version = "0.1.28"
|
|
2652
3056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
-
checksum = "
|
|
3057
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
2654
3058
|
dependencies = [
|
|
2655
|
-
"windows-sys 0.
|
|
3059
|
+
"windows-sys 0.61.2",
|
|
2656
3060
|
]
|
|
2657
3061
|
|
|
2658
3062
|
[[package]]
|
|
@@ -2663,9 +3067,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2663
3067
|
|
|
2664
3068
|
[[package]]
|
|
2665
3069
|
name = "sdd"
|
|
2666
|
-
version = "3.0.
|
|
3070
|
+
version = "3.0.10"
|
|
2667
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
-
checksum = "
|
|
3072
|
+
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
2669
3073
|
|
|
2670
3074
|
[[package]]
|
|
2671
3075
|
name = "security-framework"
|
|
@@ -2682,12 +3086,12 @@ dependencies = [
|
|
|
2682
3086
|
|
|
2683
3087
|
[[package]]
|
|
2684
3088
|
name = "security-framework"
|
|
2685
|
-
version = "3.
|
|
3089
|
+
version = "3.5.1"
|
|
2686
3090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
-
checksum = "
|
|
3091
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
2688
3092
|
dependencies = [
|
|
2689
3093
|
"bitflags",
|
|
2690
|
-
"core-foundation 0.10.
|
|
3094
|
+
"core-foundation 0.10.1",
|
|
2691
3095
|
"core-foundation-sys",
|
|
2692
3096
|
"libc",
|
|
2693
3097
|
"security-framework-sys",
|
|
@@ -2695,9 +3099,9 @@ dependencies = [
|
|
|
2695
3099
|
|
|
2696
3100
|
[[package]]
|
|
2697
3101
|
name = "security-framework-sys"
|
|
2698
|
-
version = "2.
|
|
3102
|
+
version = "2.15.0"
|
|
2699
3103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
-
checksum = "
|
|
3104
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
2701
3105
|
dependencies = [
|
|
2702
3106
|
"core-foundation-sys",
|
|
2703
3107
|
"libc",
|
|
@@ -2705,40 +3109,62 @@ dependencies = [
|
|
|
2705
3109
|
|
|
2706
3110
|
[[package]]
|
|
2707
3111
|
name = "semver"
|
|
2708
|
-
version = "1.0.
|
|
3112
|
+
version = "1.0.27"
|
|
2709
3113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
-
checksum = "
|
|
3114
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2711
3115
|
|
|
2712
3116
|
[[package]]
|
|
2713
3117
|
name = "serde"
|
|
2714
|
-
version = "1.0.
|
|
3118
|
+
version = "1.0.228"
|
|
3119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3120
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3121
|
+
dependencies = [
|
|
3122
|
+
"serde_core",
|
|
3123
|
+
"serde_derive",
|
|
3124
|
+
]
|
|
3125
|
+
|
|
3126
|
+
[[package]]
|
|
3127
|
+
name = "serde_core"
|
|
3128
|
+
version = "1.0.228"
|
|
2715
3129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
-
checksum = "
|
|
3130
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2717
3131
|
dependencies = [
|
|
2718
3132
|
"serde_derive",
|
|
2719
3133
|
]
|
|
2720
3134
|
|
|
2721
3135
|
[[package]]
|
|
2722
3136
|
name = "serde_derive"
|
|
2723
|
-
version = "1.0.
|
|
3137
|
+
version = "1.0.228"
|
|
2724
3138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
-
checksum = "
|
|
3139
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2726
3140
|
dependencies = [
|
|
2727
3141
|
"proc-macro2",
|
|
2728
3142
|
"quote",
|
|
2729
|
-
"syn 2.0.
|
|
3143
|
+
"syn 2.0.114",
|
|
2730
3144
|
]
|
|
2731
3145
|
|
|
2732
3146
|
[[package]]
|
|
2733
3147
|
name = "serde_json"
|
|
2734
|
-
version = "1.0.
|
|
3148
|
+
version = "1.0.149"
|
|
2735
3149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
-
checksum = "
|
|
3150
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2737
3151
|
dependencies = [
|
|
2738
3152
|
"itoa",
|
|
2739
3153
|
"memchr",
|
|
2740
|
-
"ryu",
|
|
2741
3154
|
"serde",
|
|
3155
|
+
"serde_core",
|
|
3156
|
+
"zmij",
|
|
3157
|
+
]
|
|
3158
|
+
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "serde_path_to_error"
|
|
3161
|
+
version = "0.1.20"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
3164
|
+
dependencies = [
|
|
3165
|
+
"itoa",
|
|
3166
|
+
"serde",
|
|
3167
|
+
"serde_core",
|
|
2742
3168
|
]
|
|
2743
3169
|
|
|
2744
3170
|
[[package]]
|
|
@@ -2753,13 +3179,22 @@ dependencies = [
|
|
|
2753
3179
|
|
|
2754
3180
|
[[package]]
|
|
2755
3181
|
name = "serde_spanned"
|
|
2756
|
-
version = "0.6.
|
|
3182
|
+
version = "0.6.9"
|
|
2757
3183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
-
checksum = "
|
|
3184
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2759
3185
|
dependencies = [
|
|
2760
3186
|
"serde",
|
|
2761
3187
|
]
|
|
2762
3188
|
|
|
3189
|
+
[[package]]
|
|
3190
|
+
name = "serde_spanned"
|
|
3191
|
+
version = "1.0.4"
|
|
3192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
3194
|
+
dependencies = [
|
|
3195
|
+
"serde_core",
|
|
3196
|
+
]
|
|
3197
|
+
|
|
2763
3198
|
[[package]]
|
|
2764
3199
|
name = "serde_urlencoded"
|
|
2765
3200
|
version = "0.7.1"
|
|
@@ -2774,11 +3209,12 @@ dependencies = [
|
|
|
2774
3209
|
|
|
2775
3210
|
[[package]]
|
|
2776
3211
|
name = "serial_test"
|
|
2777
|
-
version = "3.
|
|
3212
|
+
version = "3.3.1"
|
|
2778
3213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
-
checksum = "
|
|
3214
|
+
checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555"
|
|
2780
3215
|
dependencies = [
|
|
2781
|
-
"futures",
|
|
3216
|
+
"futures-executor",
|
|
3217
|
+
"futures-util",
|
|
2782
3218
|
"log",
|
|
2783
3219
|
"once_cell",
|
|
2784
3220
|
"parking_lot",
|
|
@@ -2788,13 +3224,13 @@ dependencies = [
|
|
|
2788
3224
|
|
|
2789
3225
|
[[package]]
|
|
2790
3226
|
name = "serial_test_derive"
|
|
2791
|
-
version = "3.
|
|
3227
|
+
version = "3.3.1"
|
|
2792
3228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
3229
|
+
checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83"
|
|
2794
3230
|
dependencies = [
|
|
2795
3231
|
"proc-macro2",
|
|
2796
3232
|
"quote",
|
|
2797
|
-
"syn 2.0.
|
|
3233
|
+
"syn 2.0.114",
|
|
2798
3234
|
]
|
|
2799
3235
|
|
|
2800
3236
|
[[package]]
|
|
@@ -2808,6 +3244,17 @@ dependencies = [
|
|
|
2808
3244
|
"digest",
|
|
2809
3245
|
]
|
|
2810
3246
|
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "sha2"
|
|
3249
|
+
version = "0.10.9"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3252
|
+
dependencies = [
|
|
3253
|
+
"cfg-if",
|
|
3254
|
+
"cpufeatures",
|
|
3255
|
+
"digest",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
2811
3258
|
[[package]]
|
|
2812
3259
|
name = "sharded-slab"
|
|
2813
3260
|
version = "0.1.7"
|
|
@@ -2819,12 +3266,9 @@ dependencies = [
|
|
|
2819
3266
|
|
|
2820
3267
|
[[package]]
|
|
2821
3268
|
name = "shellexpand"
|
|
2822
|
-
version = "3.1.
|
|
3269
|
+
version = "3.1.1"
|
|
2823
3270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
-
checksum = "
|
|
2825
|
-
dependencies = [
|
|
2826
|
-
"dirs",
|
|
2827
|
-
]
|
|
3271
|
+
checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
|
|
2828
3272
|
|
|
2829
3273
|
[[package]]
|
|
2830
3274
|
name = "shlex"
|
|
@@ -2834,13 +3278,24 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
2834
3278
|
|
|
2835
3279
|
[[package]]
|
|
2836
3280
|
name = "signal-hook-registry"
|
|
2837
|
-
version = "1.4.
|
|
3281
|
+
version = "1.4.8"
|
|
2838
3282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
-
checksum = "
|
|
3283
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2840
3284
|
dependencies = [
|
|
3285
|
+
"errno",
|
|
2841
3286
|
"libc",
|
|
2842
3287
|
]
|
|
2843
3288
|
|
|
3289
|
+
[[package]]
|
|
3290
|
+
name = "signature"
|
|
3291
|
+
version = "2.2.0"
|
|
3292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3293
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
3294
|
+
dependencies = [
|
|
3295
|
+
"digest",
|
|
3296
|
+
"rand_core 0.6.4",
|
|
3297
|
+
]
|
|
3298
|
+
|
|
2844
3299
|
[[package]]
|
|
2845
3300
|
name = "similar"
|
|
2846
3301
|
version = "2.7.0"
|
|
@@ -2855,33 +3310,30 @@ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
|
|
|
2855
3310
|
dependencies = [
|
|
2856
3311
|
"num-bigint",
|
|
2857
3312
|
"num-traits",
|
|
2858
|
-
"thiserror 2.0.
|
|
3313
|
+
"thiserror 2.0.17",
|
|
2859
3314
|
"time",
|
|
2860
3315
|
]
|
|
2861
3316
|
|
|
2862
3317
|
[[package]]
|
|
2863
3318
|
name = "slab"
|
|
2864
|
-
version = "0.4.
|
|
3319
|
+
version = "0.4.11"
|
|
2865
3320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
-
checksum = "
|
|
2867
|
-
dependencies = [
|
|
2868
|
-
"autocfg",
|
|
2869
|
-
]
|
|
3321
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2870
3322
|
|
|
2871
3323
|
[[package]]
|
|
2872
3324
|
name = "smallvec"
|
|
2873
|
-
version = "1.
|
|
3325
|
+
version = "1.15.1"
|
|
2874
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
-
checksum = "
|
|
3327
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2876
3328
|
|
|
2877
3329
|
[[package]]
|
|
2878
3330
|
name = "socket2"
|
|
2879
|
-
version = "0.
|
|
3331
|
+
version = "0.6.1"
|
|
2880
3332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
-
checksum = "
|
|
3333
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2882
3334
|
dependencies = [
|
|
2883
3335
|
"libc",
|
|
2884
|
-
"windows-sys 0.
|
|
3336
|
+
"windows-sys 0.60.2",
|
|
2885
3337
|
]
|
|
2886
3338
|
|
|
2887
3339
|
[[package]]
|
|
@@ -2890,11 +3342,21 @@ version = "0.9.8"
|
|
|
2890
3342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
3343
|
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2892
3344
|
|
|
3345
|
+
[[package]]
|
|
3346
|
+
name = "spki"
|
|
3347
|
+
version = "0.7.3"
|
|
3348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3349
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
3350
|
+
dependencies = [
|
|
3351
|
+
"base64ct",
|
|
3352
|
+
"der",
|
|
3353
|
+
]
|
|
3354
|
+
|
|
2893
3355
|
[[package]]
|
|
2894
3356
|
name = "stable_deref_trait"
|
|
2895
|
-
version = "1.2.
|
|
3357
|
+
version = "1.2.1"
|
|
2896
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
-
checksum = "
|
|
3359
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2898
3360
|
|
|
2899
3361
|
[[package]]
|
|
2900
3362
|
name = "stringmetrics"
|
|
@@ -2927,9 +3389,9 @@ dependencies = [
|
|
|
2927
3389
|
|
|
2928
3390
|
[[package]]
|
|
2929
3391
|
name = "syn"
|
|
2930
|
-
version = "2.0.
|
|
3392
|
+
version = "2.0.114"
|
|
2931
3393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
-
checksum = "
|
|
3394
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2933
3395
|
dependencies = [
|
|
2934
3396
|
"proc-macro2",
|
|
2935
3397
|
"quote",
|
|
@@ -2947,13 +3409,34 @@ dependencies = [
|
|
|
2947
3409
|
|
|
2948
3410
|
[[package]]
|
|
2949
3411
|
name = "synstructure"
|
|
2950
|
-
version = "0.13.
|
|
3412
|
+
version = "0.13.2"
|
|
2951
3413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
-
checksum = "
|
|
3414
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2953
3415
|
dependencies = [
|
|
2954
3416
|
"proc-macro2",
|
|
2955
3417
|
"quote",
|
|
2956
|
-
"syn 2.0.
|
|
3418
|
+
"syn 2.0.114",
|
|
3419
|
+
]
|
|
3420
|
+
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "system-configuration"
|
|
3423
|
+
version = "0.6.1"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
3426
|
+
dependencies = [
|
|
3427
|
+
"bitflags",
|
|
3428
|
+
"core-foundation 0.9.4",
|
|
3429
|
+
"system-configuration-sys",
|
|
3430
|
+
]
|
|
3431
|
+
|
|
3432
|
+
[[package]]
|
|
3433
|
+
name = "system-configuration-sys"
|
|
3434
|
+
version = "0.6.0"
|
|
3435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3436
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
3437
|
+
dependencies = [
|
|
3438
|
+
"core-foundation-sys",
|
|
3439
|
+
"libc",
|
|
2957
3440
|
]
|
|
2958
3441
|
|
|
2959
3442
|
[[package]]
|
|
@@ -2973,16 +3456,15 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
2973
3456
|
|
|
2974
3457
|
[[package]]
|
|
2975
3458
|
name = "tempfile"
|
|
2976
|
-
version = "3.
|
|
3459
|
+
version = "3.24.0"
|
|
2977
3460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
-
checksum = "
|
|
3461
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
2979
3462
|
dependencies = [
|
|
2980
|
-
"cfg-if",
|
|
2981
3463
|
"fastrand",
|
|
2982
|
-
"getrandom",
|
|
3464
|
+
"getrandom 0.3.4",
|
|
2983
3465
|
"once_cell",
|
|
2984
3466
|
"rustix",
|
|
2985
|
-
"windows-sys 0.
|
|
3467
|
+
"windows-sys 0.61.2",
|
|
2986
3468
|
]
|
|
2987
3469
|
|
|
2988
3470
|
[[package]]
|
|
@@ -2996,11 +3478,11 @@ dependencies = [
|
|
|
2996
3478
|
|
|
2997
3479
|
[[package]]
|
|
2998
3480
|
name = "thiserror"
|
|
2999
|
-
version = "2.0.
|
|
3481
|
+
version = "2.0.17"
|
|
3000
3482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3001
|
-
checksum = "
|
|
3483
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3002
3484
|
dependencies = [
|
|
3003
|
-
"thiserror-impl 2.0.
|
|
3485
|
+
"thiserror-impl 2.0.17",
|
|
3004
3486
|
]
|
|
3005
3487
|
|
|
3006
3488
|
[[package]]
|
|
@@ -3011,28 +3493,27 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3011
3493
|
dependencies = [
|
|
3012
3494
|
"proc-macro2",
|
|
3013
3495
|
"quote",
|
|
3014
|
-
"syn 2.0.
|
|
3496
|
+
"syn 2.0.114",
|
|
3015
3497
|
]
|
|
3016
3498
|
|
|
3017
3499
|
[[package]]
|
|
3018
3500
|
name = "thiserror-impl"
|
|
3019
|
-
version = "2.0.
|
|
3501
|
+
version = "2.0.17"
|
|
3020
3502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3021
|
-
checksum = "
|
|
3503
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3022
3504
|
dependencies = [
|
|
3023
3505
|
"proc-macro2",
|
|
3024
3506
|
"quote",
|
|
3025
|
-
"syn 2.0.
|
|
3507
|
+
"syn 2.0.114",
|
|
3026
3508
|
]
|
|
3027
3509
|
|
|
3028
3510
|
[[package]]
|
|
3029
3511
|
name = "thread_local"
|
|
3030
|
-
version = "1.1.
|
|
3512
|
+
version = "1.1.9"
|
|
3031
3513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
-
checksum = "
|
|
3514
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3033
3515
|
dependencies = [
|
|
3034
3516
|
"cfg-if",
|
|
3035
|
-
"once_cell",
|
|
3036
3517
|
]
|
|
3037
3518
|
|
|
3038
3519
|
[[package]]
|
|
@@ -3068,9 +3549,9 @@ dependencies = [
|
|
|
3068
3549
|
|
|
3069
3550
|
[[package]]
|
|
3070
3551
|
name = "tinystr"
|
|
3071
|
-
version = "0.
|
|
3552
|
+
version = "0.8.2"
|
|
3072
3553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
-
checksum = "
|
|
3554
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3074
3555
|
dependencies = [
|
|
3075
3556
|
"displaydoc",
|
|
3076
3557
|
"zerovec",
|
|
@@ -3078,9 +3559,9 @@ dependencies = [
|
|
|
3078
3559
|
|
|
3079
3560
|
[[package]]
|
|
3080
3561
|
name = "tinyvec"
|
|
3081
|
-
version = "1.
|
|
3562
|
+
version = "1.10.0"
|
|
3082
3563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
-
checksum = "
|
|
3564
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3084
3565
|
dependencies = [
|
|
3085
3566
|
"tinyvec_macros",
|
|
3086
3567
|
]
|
|
@@ -3093,11 +3574,10 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3093
3574
|
|
|
3094
3575
|
[[package]]
|
|
3095
3576
|
name = "tokio"
|
|
3096
|
-
version = "1.
|
|
3577
|
+
version = "1.49.0"
|
|
3097
3578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3098
|
-
checksum = "
|
|
3579
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
3099
3580
|
dependencies = [
|
|
3100
|
-
"backtrace",
|
|
3101
3581
|
"bytes",
|
|
3102
3582
|
"libc",
|
|
3103
3583
|
"mio",
|
|
@@ -3106,69 +3586,68 @@ dependencies = [
|
|
|
3106
3586
|
"signal-hook-registry",
|
|
3107
3587
|
"socket2",
|
|
3108
3588
|
"tokio-macros",
|
|
3109
|
-
"windows-sys 0.
|
|
3589
|
+
"windows-sys 0.61.2",
|
|
3110
3590
|
]
|
|
3111
3591
|
|
|
3112
3592
|
[[package]]
|
|
3113
3593
|
name = "tokio-macros"
|
|
3114
|
-
version = "2.
|
|
3594
|
+
version = "2.6.0"
|
|
3115
3595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
-
checksum = "
|
|
3596
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
3117
3597
|
dependencies = [
|
|
3118
3598
|
"proc-macro2",
|
|
3119
3599
|
"quote",
|
|
3120
|
-
"syn 2.0.
|
|
3600
|
+
"syn 2.0.114",
|
|
3121
3601
|
]
|
|
3122
3602
|
|
|
3123
3603
|
[[package]]
|
|
3124
|
-
name = "tokio-
|
|
3125
|
-
version = "0.
|
|
3604
|
+
name = "tokio-native-tls"
|
|
3605
|
+
version = "0.3.1"
|
|
3126
3606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
-
checksum = "
|
|
3607
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
3128
3608
|
dependencies = [
|
|
3129
|
-
"
|
|
3130
|
-
"rustls-pki-types",
|
|
3609
|
+
"native-tls",
|
|
3131
3610
|
"tokio",
|
|
3132
3611
|
]
|
|
3133
3612
|
|
|
3134
3613
|
[[package]]
|
|
3135
3614
|
name = "tokio-rustls"
|
|
3136
|
-
version = "0.
|
|
3615
|
+
version = "0.25.0"
|
|
3137
3616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
-
checksum = "
|
|
3617
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
3139
3618
|
dependencies = [
|
|
3140
|
-
"rustls 0.
|
|
3619
|
+
"rustls 0.22.4",
|
|
3620
|
+
"rustls-pki-types",
|
|
3141
3621
|
"tokio",
|
|
3142
3622
|
]
|
|
3143
3623
|
|
|
3144
3624
|
[[package]]
|
|
3145
|
-
name = "tokio-
|
|
3146
|
-
version = "0.
|
|
3625
|
+
name = "tokio-rustls"
|
|
3626
|
+
version = "0.26.4"
|
|
3147
3627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
-
checksum = "
|
|
3628
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3149
3629
|
dependencies = [
|
|
3150
|
-
"
|
|
3151
|
-
"futures-util",
|
|
3152
|
-
"thiserror 1.0.69",
|
|
3630
|
+
"rustls 0.23.36",
|
|
3153
3631
|
"tokio",
|
|
3154
3632
|
]
|
|
3155
3633
|
|
|
3156
3634
|
[[package]]
|
|
3157
3635
|
name = "tokio-stream"
|
|
3158
|
-
version = "0.1.
|
|
3636
|
+
version = "0.1.18"
|
|
3159
3637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
-
checksum = "
|
|
3638
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3161
3639
|
dependencies = [
|
|
3162
3640
|
"futures-core",
|
|
3163
3641
|
"pin-project-lite",
|
|
3164
3642
|
"tokio",
|
|
3643
|
+
"tokio-util",
|
|
3165
3644
|
]
|
|
3166
3645
|
|
|
3167
3646
|
[[package]]
|
|
3168
3647
|
name = "tokio-util"
|
|
3169
|
-
version = "0.7.
|
|
3648
|
+
version = "0.7.18"
|
|
3170
3649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3171
|
-
checksum = "
|
|
3650
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3172
3651
|
dependencies = [
|
|
3173
3652
|
"bytes",
|
|
3174
3653
|
"futures-core",
|
|
@@ -3179,46 +3658,103 @@ dependencies = [
|
|
|
3179
3658
|
|
|
3180
3659
|
[[package]]
|
|
3181
3660
|
name = "toml"
|
|
3182
|
-
version = "0.8.
|
|
3661
|
+
version = "0.8.23"
|
|
3183
3662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
-
checksum = "
|
|
3663
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
3185
3664
|
dependencies = [
|
|
3186
|
-
"indexmap 2.7.1",
|
|
3187
3665
|
"serde",
|
|
3188
|
-
"serde_spanned",
|
|
3189
|
-
"toml_datetime",
|
|
3190
|
-
"toml_edit",
|
|
3666
|
+
"serde_spanned 0.6.9",
|
|
3667
|
+
"toml_datetime 0.6.11",
|
|
3668
|
+
"toml_edit 0.22.27",
|
|
3669
|
+
]
|
|
3670
|
+
|
|
3671
|
+
[[package]]
|
|
3672
|
+
name = "toml"
|
|
3673
|
+
version = "0.9.10+spec-1.1.0"
|
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3675
|
+
checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48"
|
|
3676
|
+
dependencies = [
|
|
3677
|
+
"indexmap",
|
|
3678
|
+
"serde_core",
|
|
3679
|
+
"serde_spanned 1.0.4",
|
|
3680
|
+
"toml_datetime 0.7.5+spec-1.1.0",
|
|
3681
|
+
"toml_parser",
|
|
3682
|
+
"toml_writer",
|
|
3683
|
+
"winnow",
|
|
3191
3684
|
]
|
|
3192
3685
|
|
|
3193
3686
|
[[package]]
|
|
3194
3687
|
name = "toml_datetime"
|
|
3195
|
-
version = "0.6.
|
|
3688
|
+
version = "0.6.11"
|
|
3196
3689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3197
|
-
checksum = "
|
|
3690
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3198
3691
|
dependencies = [
|
|
3199
3692
|
"serde",
|
|
3200
3693
|
]
|
|
3201
3694
|
|
|
3695
|
+
[[package]]
|
|
3696
|
+
name = "toml_datetime"
|
|
3697
|
+
version = "0.7.5+spec-1.1.0"
|
|
3698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
3700
|
+
dependencies = [
|
|
3701
|
+
"serde_core",
|
|
3702
|
+
]
|
|
3703
|
+
|
|
3202
3704
|
[[package]]
|
|
3203
3705
|
name = "toml_edit"
|
|
3204
|
-
version = "0.22.
|
|
3706
|
+
version = "0.22.27"
|
|
3205
3707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
-
checksum = "
|
|
3708
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3207
3709
|
dependencies = [
|
|
3208
|
-
"indexmap
|
|
3710
|
+
"indexmap",
|
|
3209
3711
|
"serde",
|
|
3210
|
-
"serde_spanned",
|
|
3211
|
-
"toml_datetime",
|
|
3712
|
+
"serde_spanned 0.6.9",
|
|
3713
|
+
"toml_datetime 0.6.11",
|
|
3714
|
+
"toml_write",
|
|
3715
|
+
"winnow",
|
|
3716
|
+
]
|
|
3717
|
+
|
|
3718
|
+
[[package]]
|
|
3719
|
+
name = "toml_edit"
|
|
3720
|
+
version = "0.23.10+spec-1.0.0"
|
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
3723
|
+
dependencies = [
|
|
3724
|
+
"indexmap",
|
|
3725
|
+
"toml_datetime 0.7.5+spec-1.1.0",
|
|
3726
|
+
"toml_parser",
|
|
3727
|
+
"toml_writer",
|
|
3728
|
+
"winnow",
|
|
3729
|
+
]
|
|
3730
|
+
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "toml_parser"
|
|
3733
|
+
version = "1.0.6+spec-1.1.0"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
3736
|
+
dependencies = [
|
|
3212
3737
|
"winnow",
|
|
3213
3738
|
]
|
|
3214
3739
|
|
|
3740
|
+
[[package]]
|
|
3741
|
+
name = "toml_write"
|
|
3742
|
+
version = "0.1.2"
|
|
3743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3745
|
+
|
|
3746
|
+
[[package]]
|
|
3747
|
+
name = "toml_writer"
|
|
3748
|
+
version = "1.0.6+spec-1.1.0"
|
|
3749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3750
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
3751
|
+
|
|
3215
3752
|
[[package]]
|
|
3216
3753
|
name = "tonic"
|
|
3217
|
-
version = "0.
|
|
3754
|
+
version = "0.14.2"
|
|
3218
3755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
-
checksum = "
|
|
3756
|
+
checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203"
|
|
3220
3757
|
dependencies = [
|
|
3221
|
-
"async-stream",
|
|
3222
3758
|
"async-trait",
|
|
3223
3759
|
"axum",
|
|
3224
3760
|
"base64 0.22.1",
|
|
@@ -3232,14 +3768,13 @@ dependencies = [
|
|
|
3232
3768
|
"hyper-util",
|
|
3233
3769
|
"percent-encoding",
|
|
3234
3770
|
"pin-project",
|
|
3235
|
-
"
|
|
3236
|
-
"rustls-native-certs 0.8.1",
|
|
3237
|
-
"rustls-pemfile",
|
|
3771
|
+
"rustls-native-certs 0.8.3",
|
|
3238
3772
|
"socket2",
|
|
3773
|
+
"sync_wrapper",
|
|
3239
3774
|
"tokio",
|
|
3240
|
-
"tokio-rustls 0.26.
|
|
3775
|
+
"tokio-rustls 0.26.4",
|
|
3241
3776
|
"tokio-stream",
|
|
3242
|
-
"tower 0.
|
|
3777
|
+
"tower 0.5.2",
|
|
3243
3778
|
"tower-layer",
|
|
3244
3779
|
"tower-service",
|
|
3245
3780
|
"tracing",
|
|
@@ -3247,46 +3782,69 @@ dependencies = [
|
|
|
3247
3782
|
|
|
3248
3783
|
[[package]]
|
|
3249
3784
|
name = "tonic-build"
|
|
3250
|
-
version = "0.
|
|
3785
|
+
version = "0.14.2"
|
|
3251
3786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
-
checksum = "
|
|
3787
|
+
checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3"
|
|
3253
3788
|
dependencies = [
|
|
3254
3789
|
"prettyplease",
|
|
3255
3790
|
"proc-macro2",
|
|
3256
|
-
"prost-build",
|
|
3257
|
-
"prost-types",
|
|
3258
3791
|
"quote",
|
|
3259
|
-
"syn 2.0.
|
|
3792
|
+
"syn 2.0.114",
|
|
3260
3793
|
]
|
|
3261
3794
|
|
|
3262
3795
|
[[package]]
|
|
3263
3796
|
name = "tonic-health"
|
|
3264
|
-
version = "0.
|
|
3797
|
+
version = "0.14.2"
|
|
3265
3798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
-
checksum = "
|
|
3799
|
+
checksum = "2a82868bf299e0a1d2e8dce0dc33a46c02d6f045b2c1f1d6cc8dc3d0bf1812ef"
|
|
3267
3800
|
dependencies = [
|
|
3268
|
-
"async-stream",
|
|
3269
3801
|
"prost",
|
|
3270
3802
|
"tokio",
|
|
3271
3803
|
"tokio-stream",
|
|
3272
3804
|
"tonic",
|
|
3805
|
+
"tonic-prost",
|
|
3806
|
+
]
|
|
3807
|
+
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "tonic-prost"
|
|
3810
|
+
version = "0.14.2"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67"
|
|
3813
|
+
dependencies = [
|
|
3814
|
+
"bytes",
|
|
3815
|
+
"prost",
|
|
3816
|
+
"tonic",
|
|
3817
|
+
]
|
|
3818
|
+
|
|
3819
|
+
[[package]]
|
|
3820
|
+
name = "tonic-prost-build"
|
|
3821
|
+
version = "0.14.2"
|
|
3822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3823
|
+
checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2"
|
|
3824
|
+
dependencies = [
|
|
3825
|
+
"prettyplease",
|
|
3826
|
+
"proc-macro2",
|
|
3827
|
+
"prost-build",
|
|
3828
|
+
"prost-types",
|
|
3829
|
+
"quote",
|
|
3830
|
+
"syn 2.0.114",
|
|
3831
|
+
"tempfile",
|
|
3832
|
+
"tonic-build",
|
|
3273
3833
|
]
|
|
3274
3834
|
|
|
3275
3835
|
[[package]]
|
|
3276
3836
|
name = "tonic-web"
|
|
3277
|
-
version = "0.
|
|
3837
|
+
version = "0.14.2"
|
|
3278
3838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
-
checksum = "
|
|
3839
|
+
checksum = "75214f6b6bd28c19aa752ac09fdf0eea546095670906c21fe3940e180a4c43f2"
|
|
3280
3840
|
dependencies = [
|
|
3281
3841
|
"base64 0.22.1",
|
|
3282
3842
|
"bytes",
|
|
3283
3843
|
"http",
|
|
3284
3844
|
"http-body",
|
|
3285
|
-
"http-body-util",
|
|
3286
3845
|
"pin-project",
|
|
3287
3846
|
"tokio-stream",
|
|
3288
3847
|
"tonic",
|
|
3289
|
-
"tower-http",
|
|
3290
3848
|
"tower-layer",
|
|
3291
3849
|
"tower-service",
|
|
3292
3850
|
"tracing",
|
|
@@ -3300,13 +3858,9 @@ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
|
3300
3858
|
dependencies = [
|
|
3301
3859
|
"futures-core",
|
|
3302
3860
|
"futures-util",
|
|
3303
|
-
"indexmap 1.9.3",
|
|
3304
3861
|
"pin-project",
|
|
3305
3862
|
"pin-project-lite",
|
|
3306
|
-
"rand",
|
|
3307
|
-
"slab",
|
|
3308
3863
|
"tokio",
|
|
3309
|
-
"tokio-util",
|
|
3310
3864
|
"tower-layer",
|
|
3311
3865
|
"tower-service",
|
|
3312
3866
|
"tracing",
|
|
@@ -3320,11 +3874,15 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
|
3320
3874
|
dependencies = [
|
|
3321
3875
|
"futures-core",
|
|
3322
3876
|
"futures-util",
|
|
3877
|
+
"indexmap",
|
|
3323
3878
|
"pin-project-lite",
|
|
3879
|
+
"slab",
|
|
3324
3880
|
"sync_wrapper",
|
|
3325
3881
|
"tokio",
|
|
3882
|
+
"tokio-util",
|
|
3326
3883
|
"tower-layer",
|
|
3327
3884
|
"tower-service",
|
|
3885
|
+
"tracing",
|
|
3328
3886
|
]
|
|
3329
3887
|
|
|
3330
3888
|
[[package]]
|
|
@@ -3344,6 +3902,24 @@ dependencies = [
|
|
|
3344
3902
|
"tracing",
|
|
3345
3903
|
]
|
|
3346
3904
|
|
|
3905
|
+
[[package]]
|
|
3906
|
+
name = "tower-http"
|
|
3907
|
+
version = "0.6.8"
|
|
3908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3909
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3910
|
+
dependencies = [
|
|
3911
|
+
"bitflags",
|
|
3912
|
+
"bytes",
|
|
3913
|
+
"futures-util",
|
|
3914
|
+
"http",
|
|
3915
|
+
"http-body",
|
|
3916
|
+
"iri-string",
|
|
3917
|
+
"pin-project-lite",
|
|
3918
|
+
"tower 0.5.2",
|
|
3919
|
+
"tower-layer",
|
|
3920
|
+
"tower-service",
|
|
3921
|
+
]
|
|
3922
|
+
|
|
3347
3923
|
[[package]]
|
|
3348
3924
|
name = "tower-layer"
|
|
3349
3925
|
version = "0.3.3"
|
|
@@ -3358,9 +3934,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
3358
3934
|
|
|
3359
3935
|
[[package]]
|
|
3360
3936
|
name = "tracing"
|
|
3361
|
-
version = "0.1.
|
|
3937
|
+
version = "0.1.44"
|
|
3362
3938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
-
checksum = "
|
|
3939
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3364
3940
|
dependencies = [
|
|
3365
3941
|
"log",
|
|
3366
3942
|
"pin-project-lite",
|
|
@@ -3370,20 +3946,20 @@ dependencies = [
|
|
|
3370
3946
|
|
|
3371
3947
|
[[package]]
|
|
3372
3948
|
name = "tracing-attributes"
|
|
3373
|
-
version = "0.1.
|
|
3949
|
+
version = "0.1.31"
|
|
3374
3950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
-
checksum = "
|
|
3951
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3376
3952
|
dependencies = [
|
|
3377
3953
|
"proc-macro2",
|
|
3378
3954
|
"quote",
|
|
3379
|
-
"syn 2.0.
|
|
3955
|
+
"syn 2.0.114",
|
|
3380
3956
|
]
|
|
3381
3957
|
|
|
3382
3958
|
[[package]]
|
|
3383
3959
|
name = "tracing-core"
|
|
3384
|
-
version = "0.1.
|
|
3960
|
+
version = "0.1.36"
|
|
3385
3961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3962
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3387
3963
|
dependencies = [
|
|
3388
3964
|
"once_cell",
|
|
3389
3965
|
"valuable",
|
|
@@ -3402,14 +3978,14 @@ dependencies = [
|
|
|
3402
3978
|
|
|
3403
3979
|
[[package]]
|
|
3404
3980
|
name = "tracing-opentelemetry"
|
|
3405
|
-
version = "0.
|
|
3981
|
+
version = "0.31.0"
|
|
3406
3982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
-
checksum = "
|
|
3983
|
+
checksum = "ddcf5959f39507d0d04d6413119c04f33b623f4f951ebcbdddddfad2d0623a9c"
|
|
3408
3984
|
dependencies = [
|
|
3409
3985
|
"js-sys",
|
|
3410
3986
|
"once_cell",
|
|
3411
|
-
"opentelemetry 0.
|
|
3412
|
-
"opentelemetry_sdk 0.
|
|
3987
|
+
"opentelemetry 0.30.0",
|
|
3988
|
+
"opentelemetry_sdk 0.30.0",
|
|
3413
3989
|
"smallvec",
|
|
3414
3990
|
"tracing",
|
|
3415
3991
|
"tracing-core",
|
|
@@ -3420,15 +3996,16 @@ dependencies = [
|
|
|
3420
3996
|
|
|
3421
3997
|
[[package]]
|
|
3422
3998
|
name = "tracing-opentelemetry"
|
|
3423
|
-
version = "0.
|
|
3999
|
+
version = "0.32.0"
|
|
3424
4000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
-
checksum = "
|
|
4001
|
+
checksum = "1e6e5658463dd88089aba75c7791e1d3120633b1bfde22478b28f625a9bb1b8e"
|
|
3426
4002
|
dependencies = [
|
|
3427
4003
|
"js-sys",
|
|
3428
|
-
"
|
|
3429
|
-
"
|
|
3430
|
-
"
|
|
4004
|
+
"opentelemetry 0.31.0",
|
|
4005
|
+
"opentelemetry_sdk 0.31.0",
|
|
4006
|
+
"rustversion",
|
|
3431
4007
|
"smallvec",
|
|
4008
|
+
"thiserror 2.0.17",
|
|
3432
4009
|
"tracing",
|
|
3433
4010
|
"tracing-core",
|
|
3434
4011
|
"tracing-log",
|
|
@@ -3438,14 +4015,18 @@ dependencies = [
|
|
|
3438
4015
|
|
|
3439
4016
|
[[package]]
|
|
3440
4017
|
name = "tracing-subscriber"
|
|
3441
|
-
version = "0.3.
|
|
4018
|
+
version = "0.3.22"
|
|
3442
4019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
-
checksum = "
|
|
4020
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
3444
4021
|
dependencies = [
|
|
4022
|
+
"matchers",
|
|
3445
4023
|
"nu-ansi-term",
|
|
4024
|
+
"once_cell",
|
|
4025
|
+
"regex-automata",
|
|
3446
4026
|
"sharded-slab",
|
|
3447
4027
|
"smallvec",
|
|
3448
4028
|
"thread_local",
|
|
4029
|
+
"tracing",
|
|
3449
4030
|
"tracing-core",
|
|
3450
4031
|
"tracing-log",
|
|
3451
4032
|
]
|
|
@@ -3458,9 +4039,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
3458
4039
|
|
|
3459
4040
|
[[package]]
|
|
3460
4041
|
name = "typenum"
|
|
3461
|
-
version = "1.
|
|
4042
|
+
version = "1.19.0"
|
|
3462
4043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3463
|
-
checksum = "
|
|
4044
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3464
4045
|
|
|
3465
4046
|
[[package]]
|
|
3466
4047
|
name = "uncased"
|
|
@@ -3471,70 +4052,35 @@ dependencies = [
|
|
|
3471
4052
|
"version_check",
|
|
3472
4053
|
]
|
|
3473
4054
|
|
|
3474
|
-
[[package]]
|
|
3475
|
-
name = "unic-char-property"
|
|
3476
|
-
version = "0.9.0"
|
|
3477
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
-
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
3479
|
-
dependencies = [
|
|
3480
|
-
"unic-char-range",
|
|
3481
|
-
]
|
|
3482
|
-
|
|
3483
|
-
[[package]]
|
|
3484
|
-
name = "unic-char-range"
|
|
3485
|
-
version = "0.9.0"
|
|
3486
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
-
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
3488
|
-
|
|
3489
|
-
[[package]]
|
|
3490
|
-
name = "unic-common"
|
|
3491
|
-
version = "0.9.0"
|
|
3492
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
-
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
3494
|
-
|
|
3495
|
-
[[package]]
|
|
3496
|
-
name = "unic-ucd-ident"
|
|
3497
|
-
version = "0.9.0"
|
|
3498
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
|
|
3500
|
-
dependencies = [
|
|
3501
|
-
"unic-char-property",
|
|
3502
|
-
"unic-char-range",
|
|
3503
|
-
"unic-ucd-version",
|
|
3504
|
-
]
|
|
3505
|
-
|
|
3506
|
-
[[package]]
|
|
3507
|
-
name = "unic-ucd-version"
|
|
3508
|
-
version = "0.9.0"
|
|
3509
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
-
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
3511
|
-
dependencies = [
|
|
3512
|
-
"unic-common",
|
|
3513
|
-
]
|
|
3514
|
-
|
|
3515
4055
|
[[package]]
|
|
3516
4056
|
name = "unicase"
|
|
3517
|
-
version = "2.
|
|
4057
|
+
version = "2.9.0"
|
|
3518
4058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3519
|
-
checksum = "
|
|
4059
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
3520
4060
|
|
|
3521
4061
|
[[package]]
|
|
3522
4062
|
name = "unicode-ident"
|
|
3523
|
-
version = "1.0.
|
|
4063
|
+
version = "1.0.22"
|
|
3524
4064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
-
checksum = "
|
|
4065
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3526
4066
|
|
|
3527
4067
|
[[package]]
|
|
3528
4068
|
name = "unicode-width"
|
|
3529
|
-
version = "0.2.
|
|
4069
|
+
version = "0.2.2"
|
|
3530
4070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3531
|
-
checksum = "
|
|
4071
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3532
4072
|
|
|
3533
4073
|
[[package]]
|
|
3534
4074
|
name = "unindent"
|
|
3535
|
-
version = "0.2.
|
|
4075
|
+
version = "0.2.4"
|
|
4076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4077
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "untrusted"
|
|
4081
|
+
version = "0.7.1"
|
|
3536
4082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
-
checksum = "
|
|
4083
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
3538
4084
|
|
|
3539
4085
|
[[package]]
|
|
3540
4086
|
name = "untrusted"
|
|
@@ -3544,34 +4090,29 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3544
4090
|
|
|
3545
4091
|
[[package]]
|
|
3546
4092
|
name = "url"
|
|
3547
|
-
version = "2.5.
|
|
4093
|
+
version = "2.5.8"
|
|
3548
4094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3549
|
-
checksum = "
|
|
4095
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3550
4096
|
dependencies = [
|
|
3551
4097
|
"form_urlencoded",
|
|
3552
4098
|
"idna",
|
|
3553
4099
|
"percent-encoding",
|
|
4100
|
+
"serde",
|
|
4101
|
+
"serde_derive",
|
|
3554
4102
|
]
|
|
3555
4103
|
|
|
3556
4104
|
[[package]]
|
|
3557
4105
|
name = "urlpattern"
|
|
3558
|
-
version = "0.2
|
|
4106
|
+
version = "0.4.2"
|
|
3559
4107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
-
checksum = "
|
|
4108
|
+
checksum = "0f805818f843b548bacc19609eb3619dd2850e54746f5cada37927393c2ef4ec"
|
|
3561
4109
|
dependencies = [
|
|
3562
|
-
"
|
|
4110
|
+
"icu_properties",
|
|
3563
4111
|
"regex",
|
|
3564
4112
|
"serde",
|
|
3565
|
-
"unic-ucd-ident",
|
|
3566
4113
|
"url",
|
|
3567
4114
|
]
|
|
3568
4115
|
|
|
3569
|
-
[[package]]
|
|
3570
|
-
name = "utf16_iter"
|
|
3571
|
-
version = "1.0.5"
|
|
3572
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3574
|
-
|
|
3575
4116
|
[[package]]
|
|
3576
4117
|
name = "utf8_iter"
|
|
3577
4118
|
version = "1.0.4"
|
|
@@ -3580,11 +4121,13 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
3580
4121
|
|
|
3581
4122
|
[[package]]
|
|
3582
4123
|
name = "uuid"
|
|
3583
|
-
version = "1.
|
|
4124
|
+
version = "1.19.0"
|
|
3584
4125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
-
checksum = "
|
|
4126
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
3586
4127
|
dependencies = [
|
|
3587
|
-
"getrandom",
|
|
4128
|
+
"getrandom 0.3.4",
|
|
4129
|
+
"js-sys",
|
|
4130
|
+
"wasm-bindgen",
|
|
3588
4131
|
]
|
|
3589
4132
|
|
|
3590
4133
|
[[package]]
|
|
@@ -3595,9 +4138,15 @@ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
|
3595
4138
|
|
|
3596
4139
|
[[package]]
|
|
3597
4140
|
name = "value-bag"
|
|
3598
|
-
version = "1.
|
|
4141
|
+
version = "1.12.0"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0"
|
|
4144
|
+
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "vcpkg"
|
|
4147
|
+
version = "0.2.15"
|
|
3599
4148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3600
|
-
checksum = "
|
|
4149
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
3601
4150
|
|
|
3602
4151
|
[[package]]
|
|
3603
4152
|
name = "version_check"
|
|
@@ -3605,6 +4154,16 @@ version = "0.9.5"
|
|
|
3605
4154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
4155
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3607
4156
|
|
|
4157
|
+
[[package]]
|
|
4158
|
+
name = "walkdir"
|
|
4159
|
+
version = "2.5.0"
|
|
4160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4162
|
+
dependencies = [
|
|
4163
|
+
"same-file",
|
|
4164
|
+
"winapi-util",
|
|
4165
|
+
]
|
|
4166
|
+
|
|
3608
4167
|
[[package]]
|
|
3609
4168
|
name = "want"
|
|
3610
4169
|
version = "0.3.1"
|
|
@@ -3616,41 +4175,37 @@ dependencies = [
|
|
|
3616
4175
|
|
|
3617
4176
|
[[package]]
|
|
3618
4177
|
name = "wasi"
|
|
3619
|
-
version = "0.11.
|
|
4178
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3620
4179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3621
|
-
checksum = "
|
|
4180
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3622
4181
|
|
|
3623
4182
|
[[package]]
|
|
3624
|
-
name = "
|
|
3625
|
-
version = "0.2.
|
|
4183
|
+
name = "wasip2"
|
|
4184
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3626
4185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3627
|
-
checksum = "
|
|
4186
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3628
4187
|
dependencies = [
|
|
3629
|
-
"
|
|
3630
|
-
"once_cell",
|
|
3631
|
-
"rustversion",
|
|
3632
|
-
"wasm-bindgen-macro",
|
|
4188
|
+
"wit-bindgen",
|
|
3633
4189
|
]
|
|
3634
4190
|
|
|
3635
4191
|
[[package]]
|
|
3636
|
-
name = "wasm-bindgen
|
|
3637
|
-
version = "0.2.
|
|
4192
|
+
name = "wasm-bindgen"
|
|
4193
|
+
version = "0.2.106"
|
|
3638
4194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3639
|
-
checksum = "
|
|
4195
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
3640
4196
|
dependencies = [
|
|
3641
|
-
"
|
|
3642
|
-
"
|
|
3643
|
-
"
|
|
3644
|
-
"
|
|
3645
|
-
"syn 2.0.96",
|
|
4197
|
+
"cfg-if",
|
|
4198
|
+
"once_cell",
|
|
4199
|
+
"rustversion",
|
|
4200
|
+
"wasm-bindgen-macro",
|
|
3646
4201
|
"wasm-bindgen-shared",
|
|
3647
4202
|
]
|
|
3648
4203
|
|
|
3649
4204
|
[[package]]
|
|
3650
4205
|
name = "wasm-bindgen-futures"
|
|
3651
|
-
version = "0.4.
|
|
4206
|
+
version = "0.4.56"
|
|
3652
4207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
-
checksum = "
|
|
4208
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
3654
4209
|
dependencies = [
|
|
3655
4210
|
"cfg-if",
|
|
3656
4211
|
"js-sys",
|
|
@@ -3661,9 +4216,9 @@ dependencies = [
|
|
|
3661
4216
|
|
|
3662
4217
|
[[package]]
|
|
3663
4218
|
name = "wasm-bindgen-macro"
|
|
3664
|
-
version = "0.2.
|
|
4219
|
+
version = "0.2.106"
|
|
3665
4220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
-
checksum = "
|
|
4221
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
3667
4222
|
dependencies = [
|
|
3668
4223
|
"quote",
|
|
3669
4224
|
"wasm-bindgen-macro-support",
|
|
@@ -3671,31 +4226,44 @@ dependencies = [
|
|
|
3671
4226
|
|
|
3672
4227
|
[[package]]
|
|
3673
4228
|
name = "wasm-bindgen-macro-support"
|
|
3674
|
-
version = "0.2.
|
|
4229
|
+
version = "0.2.106"
|
|
3675
4230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
-
checksum = "
|
|
4231
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
3677
4232
|
dependencies = [
|
|
4233
|
+
"bumpalo",
|
|
3678
4234
|
"proc-macro2",
|
|
3679
4235
|
"quote",
|
|
3680
|
-
"syn 2.0.
|
|
3681
|
-
"wasm-bindgen-backend",
|
|
4236
|
+
"syn 2.0.114",
|
|
3682
4237
|
"wasm-bindgen-shared",
|
|
3683
4238
|
]
|
|
3684
4239
|
|
|
3685
4240
|
[[package]]
|
|
3686
4241
|
name = "wasm-bindgen-shared"
|
|
3687
|
-
version = "0.2.
|
|
4242
|
+
version = "0.2.106"
|
|
3688
4243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
-
checksum = "
|
|
4244
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
3690
4245
|
dependencies = [
|
|
3691
4246
|
"unicode-ident",
|
|
3692
4247
|
]
|
|
3693
4248
|
|
|
4249
|
+
[[package]]
|
|
4250
|
+
name = "wasm-streams"
|
|
4251
|
+
version = "0.4.2"
|
|
4252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4253
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4254
|
+
dependencies = [
|
|
4255
|
+
"futures-util",
|
|
4256
|
+
"js-sys",
|
|
4257
|
+
"wasm-bindgen",
|
|
4258
|
+
"wasm-bindgen-futures",
|
|
4259
|
+
"web-sys",
|
|
4260
|
+
]
|
|
4261
|
+
|
|
3694
4262
|
[[package]]
|
|
3695
4263
|
name = "web-sys"
|
|
3696
|
-
version = "0.3.
|
|
4264
|
+
version = "0.3.83"
|
|
3697
4265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
-
checksum = "
|
|
4266
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
3699
4267
|
dependencies = [
|
|
3700
4268
|
"js-sys",
|
|
3701
4269
|
"wasm-bindgen",
|
|
@@ -3711,6 +4279,23 @@ dependencies = [
|
|
|
3711
4279
|
"wasm-bindgen",
|
|
3712
4280
|
]
|
|
3713
4281
|
|
|
4282
|
+
[[package]]
|
|
4283
|
+
name = "webbrowser"
|
|
4284
|
+
version = "0.8.15"
|
|
4285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4286
|
+
checksum = "db67ae75a9405634f5882791678772c94ff5f16a66535aae186e26aa0841fc8b"
|
|
4287
|
+
dependencies = [
|
|
4288
|
+
"core-foundation 0.9.4",
|
|
4289
|
+
"home",
|
|
4290
|
+
"jni",
|
|
4291
|
+
"log",
|
|
4292
|
+
"ndk-context",
|
|
4293
|
+
"objc",
|
|
4294
|
+
"raw-window-handle",
|
|
4295
|
+
"url",
|
|
4296
|
+
"web-sys",
|
|
4297
|
+
]
|
|
4298
|
+
|
|
3714
4299
|
[[package]]
|
|
3715
4300
|
name = "webpki"
|
|
3716
4301
|
version = "0.22.4"
|
|
@@ -3718,68 +4303,104 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3718
4303
|
checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
|
|
3719
4304
|
dependencies = [
|
|
3720
4305
|
"ring",
|
|
3721
|
-
"untrusted",
|
|
4306
|
+
"untrusted 0.9.0",
|
|
3722
4307
|
]
|
|
3723
4308
|
|
|
3724
4309
|
[[package]]
|
|
3725
|
-
name = "
|
|
3726
|
-
version = "0.
|
|
4310
|
+
name = "webpki-roots"
|
|
4311
|
+
version = "1.0.5"
|
|
3727
4312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
-
checksum = "
|
|
4313
|
+
checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
|
|
3729
4314
|
dependencies = [
|
|
3730
|
-
"
|
|
3731
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
4315
|
+
"rustls-pki-types",
|
|
3732
4316
|
]
|
|
3733
4317
|
|
|
3734
4318
|
[[package]]
|
|
3735
|
-
name = "winapi-
|
|
3736
|
-
version = "0.
|
|
4319
|
+
name = "winapi-util"
|
|
4320
|
+
version = "0.1.11"
|
|
3737
4321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3738
|
-
checksum = "
|
|
4322
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4323
|
+
dependencies = [
|
|
4324
|
+
"windows-sys 0.61.2",
|
|
4325
|
+
]
|
|
3739
4326
|
|
|
3740
4327
|
[[package]]
|
|
3741
|
-
name = "
|
|
3742
|
-
version = "0.
|
|
4328
|
+
name = "windows-core"
|
|
4329
|
+
version = "0.62.2"
|
|
4330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4331
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4332
|
+
dependencies = [
|
|
4333
|
+
"windows-implement",
|
|
4334
|
+
"windows-interface",
|
|
4335
|
+
"windows-link",
|
|
4336
|
+
"windows-result",
|
|
4337
|
+
"windows-strings",
|
|
4338
|
+
]
|
|
4339
|
+
|
|
4340
|
+
[[package]]
|
|
4341
|
+
name = "windows-implement"
|
|
4342
|
+
version = "0.60.2"
|
|
4343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4344
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4345
|
+
dependencies = [
|
|
4346
|
+
"proc-macro2",
|
|
4347
|
+
"quote",
|
|
4348
|
+
"syn 2.0.114",
|
|
4349
|
+
]
|
|
4350
|
+
|
|
4351
|
+
[[package]]
|
|
4352
|
+
name = "windows-interface"
|
|
4353
|
+
version = "0.59.3"
|
|
4354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4355
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4356
|
+
dependencies = [
|
|
4357
|
+
"proc-macro2",
|
|
4358
|
+
"quote",
|
|
4359
|
+
"syn 2.0.114",
|
|
4360
|
+
]
|
|
4361
|
+
|
|
4362
|
+
[[package]]
|
|
4363
|
+
name = "windows-link"
|
|
4364
|
+
version = "0.2.1"
|
|
3743
4365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
-
checksum = "
|
|
4366
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3745
4367
|
|
|
3746
4368
|
[[package]]
|
|
3747
4369
|
name = "windows-registry"
|
|
3748
|
-
version = "0.
|
|
4370
|
+
version = "0.6.1"
|
|
3749
4371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3750
|
-
checksum = "
|
|
4372
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
3751
4373
|
dependencies = [
|
|
4374
|
+
"windows-link",
|
|
3752
4375
|
"windows-result",
|
|
3753
4376
|
"windows-strings",
|
|
3754
|
-
"windows-targets 0.52.6",
|
|
3755
4377
|
]
|
|
3756
4378
|
|
|
3757
4379
|
[[package]]
|
|
3758
4380
|
name = "windows-result"
|
|
3759
|
-
version = "0.
|
|
4381
|
+
version = "0.4.1"
|
|
3760
4382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
-
checksum = "
|
|
4383
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3762
4384
|
dependencies = [
|
|
3763
|
-
"windows-
|
|
4385
|
+
"windows-link",
|
|
3764
4386
|
]
|
|
3765
4387
|
|
|
3766
4388
|
[[package]]
|
|
3767
4389
|
name = "windows-strings"
|
|
3768
|
-
version = "0.1
|
|
4390
|
+
version = "0.5.1"
|
|
3769
4391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
-
checksum = "
|
|
4392
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3771
4393
|
dependencies = [
|
|
3772
|
-
"windows-
|
|
3773
|
-
"windows-targets 0.52.6",
|
|
4394
|
+
"windows-link",
|
|
3774
4395
|
]
|
|
3775
4396
|
|
|
3776
4397
|
[[package]]
|
|
3777
4398
|
name = "windows-sys"
|
|
3778
|
-
version = "0.
|
|
4399
|
+
version = "0.45.0"
|
|
3779
4400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3780
|
-
checksum = "
|
|
4401
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
3781
4402
|
dependencies = [
|
|
3782
|
-
"windows-targets 0.
|
|
4403
|
+
"windows-targets 0.42.2",
|
|
3783
4404
|
]
|
|
3784
4405
|
|
|
3785
4406
|
[[package]]
|
|
@@ -3800,19 +4421,37 @@ dependencies = [
|
|
|
3800
4421
|
"windows-targets 0.52.6",
|
|
3801
4422
|
]
|
|
3802
4423
|
|
|
4424
|
+
[[package]]
|
|
4425
|
+
name = "windows-sys"
|
|
4426
|
+
version = "0.60.2"
|
|
4427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4428
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4429
|
+
dependencies = [
|
|
4430
|
+
"windows-targets 0.53.5",
|
|
4431
|
+
]
|
|
4432
|
+
|
|
4433
|
+
[[package]]
|
|
4434
|
+
name = "windows-sys"
|
|
4435
|
+
version = "0.61.2"
|
|
4436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4437
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4438
|
+
dependencies = [
|
|
4439
|
+
"windows-link",
|
|
4440
|
+
]
|
|
4441
|
+
|
|
3803
4442
|
[[package]]
|
|
3804
4443
|
name = "windows-targets"
|
|
3805
|
-
version = "0.
|
|
4444
|
+
version = "0.42.2"
|
|
3806
4445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3807
|
-
checksum = "
|
|
4446
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
3808
4447
|
dependencies = [
|
|
3809
|
-
"windows_aarch64_gnullvm 0.
|
|
3810
|
-
"windows_aarch64_msvc 0.
|
|
3811
|
-
"windows_i686_gnu 0.
|
|
3812
|
-
"windows_i686_msvc 0.
|
|
3813
|
-
"windows_x86_64_gnu 0.
|
|
3814
|
-
"windows_x86_64_gnullvm 0.
|
|
3815
|
-
"windows_x86_64_msvc 0.
|
|
4448
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4449
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4450
|
+
"windows_i686_gnu 0.42.2",
|
|
4451
|
+
"windows_i686_msvc 0.42.2",
|
|
4452
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4453
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4454
|
+
"windows_x86_64_msvc 0.42.2",
|
|
3816
4455
|
]
|
|
3817
4456
|
|
|
3818
4457
|
[[package]]
|
|
@@ -3824,18 +4463,35 @@ dependencies = [
|
|
|
3824
4463
|
"windows_aarch64_gnullvm 0.52.6",
|
|
3825
4464
|
"windows_aarch64_msvc 0.52.6",
|
|
3826
4465
|
"windows_i686_gnu 0.52.6",
|
|
3827
|
-
"windows_i686_gnullvm",
|
|
4466
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3828
4467
|
"windows_i686_msvc 0.52.6",
|
|
3829
4468
|
"windows_x86_64_gnu 0.52.6",
|
|
3830
4469
|
"windows_x86_64_gnullvm 0.52.6",
|
|
3831
4470
|
"windows_x86_64_msvc 0.52.6",
|
|
3832
4471
|
]
|
|
3833
4472
|
|
|
4473
|
+
[[package]]
|
|
4474
|
+
name = "windows-targets"
|
|
4475
|
+
version = "0.53.5"
|
|
4476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4477
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4478
|
+
dependencies = [
|
|
4479
|
+
"windows-link",
|
|
4480
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4481
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4482
|
+
"windows_i686_gnu 0.53.1",
|
|
4483
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4484
|
+
"windows_i686_msvc 0.53.1",
|
|
4485
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4486
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4487
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4488
|
+
]
|
|
4489
|
+
|
|
3834
4490
|
[[package]]
|
|
3835
4491
|
name = "windows_aarch64_gnullvm"
|
|
3836
|
-
version = "0.
|
|
4492
|
+
version = "0.42.2"
|
|
3837
4493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
-
checksum = "
|
|
4494
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
3839
4495
|
|
|
3840
4496
|
[[package]]
|
|
3841
4497
|
name = "windows_aarch64_gnullvm"
|
|
@@ -3843,11 +4499,17 @@ version = "0.52.6"
|
|
|
3843
4499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
4500
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3845
4501
|
|
|
4502
|
+
[[package]]
|
|
4503
|
+
name = "windows_aarch64_gnullvm"
|
|
4504
|
+
version = "0.53.1"
|
|
4505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4506
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4507
|
+
|
|
3846
4508
|
[[package]]
|
|
3847
4509
|
name = "windows_aarch64_msvc"
|
|
3848
|
-
version = "0.
|
|
4510
|
+
version = "0.42.2"
|
|
3849
4511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3850
|
-
checksum = "
|
|
4512
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
3851
4513
|
|
|
3852
4514
|
[[package]]
|
|
3853
4515
|
name = "windows_aarch64_msvc"
|
|
@@ -3855,11 +4517,17 @@ version = "0.52.6"
|
|
|
3855
4517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3856
4518
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3857
4519
|
|
|
4520
|
+
[[package]]
|
|
4521
|
+
name = "windows_aarch64_msvc"
|
|
4522
|
+
version = "0.53.1"
|
|
4523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4524
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4525
|
+
|
|
3858
4526
|
[[package]]
|
|
3859
4527
|
name = "windows_i686_gnu"
|
|
3860
|
-
version = "0.
|
|
4528
|
+
version = "0.42.2"
|
|
3861
4529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
|
-
checksum = "
|
|
4530
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
3863
4531
|
|
|
3864
4532
|
[[package]]
|
|
3865
4533
|
name = "windows_i686_gnu"
|
|
@@ -3867,17 +4535,29 @@ version = "0.52.6"
|
|
|
3867
4535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3868
4536
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3869
4537
|
|
|
4538
|
+
[[package]]
|
|
4539
|
+
name = "windows_i686_gnu"
|
|
4540
|
+
version = "0.53.1"
|
|
4541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4542
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4543
|
+
|
|
3870
4544
|
[[package]]
|
|
3871
4545
|
name = "windows_i686_gnullvm"
|
|
3872
4546
|
version = "0.52.6"
|
|
3873
4547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3874
4548
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3875
4549
|
|
|
4550
|
+
[[package]]
|
|
4551
|
+
name = "windows_i686_gnullvm"
|
|
4552
|
+
version = "0.53.1"
|
|
4553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4554
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4555
|
+
|
|
3876
4556
|
[[package]]
|
|
3877
4557
|
name = "windows_i686_msvc"
|
|
3878
|
-
version = "0.
|
|
4558
|
+
version = "0.42.2"
|
|
3879
4559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3880
|
-
checksum = "
|
|
4560
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
3881
4561
|
|
|
3882
4562
|
[[package]]
|
|
3883
4563
|
name = "windows_i686_msvc"
|
|
@@ -3885,11 +4565,17 @@ version = "0.52.6"
|
|
|
3885
4565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3886
4566
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3887
4567
|
|
|
4568
|
+
[[package]]
|
|
4569
|
+
name = "windows_i686_msvc"
|
|
4570
|
+
version = "0.53.1"
|
|
4571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4572
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4573
|
+
|
|
3888
4574
|
[[package]]
|
|
3889
4575
|
name = "windows_x86_64_gnu"
|
|
3890
|
-
version = "0.
|
|
4576
|
+
version = "0.42.2"
|
|
3891
4577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
-
checksum = "
|
|
4578
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
3893
4579
|
|
|
3894
4580
|
[[package]]
|
|
3895
4581
|
name = "windows_x86_64_gnu"
|
|
@@ -3897,11 +4583,17 @@ version = "0.52.6"
|
|
|
3897
4583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3898
4584
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3899
4585
|
|
|
4586
|
+
[[package]]
|
|
4587
|
+
name = "windows_x86_64_gnu"
|
|
4588
|
+
version = "0.53.1"
|
|
4589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4590
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4591
|
+
|
|
3900
4592
|
[[package]]
|
|
3901
4593
|
name = "windows_x86_64_gnullvm"
|
|
3902
|
-
version = "0.
|
|
4594
|
+
version = "0.42.2"
|
|
3903
4595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
-
checksum = "
|
|
4596
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3905
4597
|
|
|
3906
4598
|
[[package]]
|
|
3907
4599
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3909,11 +4601,17 @@ version = "0.52.6"
|
|
|
3909
4601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3910
4602
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3911
4603
|
|
|
4604
|
+
[[package]]
|
|
4605
|
+
name = "windows_x86_64_gnullvm"
|
|
4606
|
+
version = "0.53.1"
|
|
4607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4608
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4609
|
+
|
|
3912
4610
|
[[package]]
|
|
3913
4611
|
name = "windows_x86_64_msvc"
|
|
3914
|
-
version = "0.
|
|
4612
|
+
version = "0.42.2"
|
|
3915
4613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3916
|
-
checksum = "
|
|
4614
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3917
4615
|
|
|
3918
4616
|
[[package]]
|
|
3919
4617
|
name = "windows_x86_64_msvc"
|
|
@@ -3921,26 +4619,32 @@ version = "0.52.6"
|
|
|
3921
4619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3922
4620
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3923
4621
|
|
|
4622
|
+
[[package]]
|
|
4623
|
+
name = "windows_x86_64_msvc"
|
|
4624
|
+
version = "0.53.1"
|
|
4625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4626
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4627
|
+
|
|
3924
4628
|
[[package]]
|
|
3925
4629
|
name = "winnow"
|
|
3926
|
-
version = "0.
|
|
4630
|
+
version = "0.7.14"
|
|
3927
4631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
-
checksum = "
|
|
4632
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
3929
4633
|
dependencies = [
|
|
3930
4634
|
"memchr",
|
|
3931
4635
|
]
|
|
3932
4636
|
|
|
3933
4637
|
[[package]]
|
|
3934
|
-
name = "
|
|
3935
|
-
version = "
|
|
4638
|
+
name = "wit-bindgen"
|
|
4639
|
+
version = "0.46.0"
|
|
3936
4640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3937
|
-
checksum = "
|
|
4641
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3938
4642
|
|
|
3939
4643
|
[[package]]
|
|
3940
4644
|
name = "writeable"
|
|
3941
|
-
version = "0.
|
|
4645
|
+
version = "0.6.2"
|
|
3942
4646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3943
|
-
checksum = "
|
|
4647
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3944
4648
|
|
|
3945
4649
|
[[package]]
|
|
3946
4650
|
name = "yansi"
|
|
@@ -3950,11 +4654,10 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
3950
4654
|
|
|
3951
4655
|
[[package]]
|
|
3952
4656
|
name = "yoke"
|
|
3953
|
-
version = "0.
|
|
4657
|
+
version = "0.8.1"
|
|
3954
4658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3955
|
-
checksum = "
|
|
4659
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3956
4660
|
dependencies = [
|
|
3957
|
-
"serde",
|
|
3958
4661
|
"stable_deref_trait",
|
|
3959
4662
|
"yoke-derive",
|
|
3960
4663
|
"zerofrom",
|
|
@@ -3962,69 +4665,79 @@ dependencies = [
|
|
|
3962
4665
|
|
|
3963
4666
|
[[package]]
|
|
3964
4667
|
name = "yoke-derive"
|
|
3965
|
-
version = "0.
|
|
4668
|
+
version = "0.8.1"
|
|
3966
4669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3967
|
-
checksum = "
|
|
4670
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3968
4671
|
dependencies = [
|
|
3969
4672
|
"proc-macro2",
|
|
3970
4673
|
"quote",
|
|
3971
|
-
"syn 2.0.
|
|
4674
|
+
"syn 2.0.114",
|
|
3972
4675
|
"synstructure",
|
|
3973
4676
|
]
|
|
3974
4677
|
|
|
3975
4678
|
[[package]]
|
|
3976
4679
|
name = "zerocopy"
|
|
3977
|
-
version = "0.
|
|
4680
|
+
version = "0.8.32"
|
|
3978
4681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3979
|
-
checksum = "
|
|
4682
|
+
checksum = "1fabae64378cb18147bb18bca364e63bdbe72a0ffe4adf0addfec8aa166b2c56"
|
|
3980
4683
|
dependencies = [
|
|
3981
|
-
"byteorder",
|
|
3982
4684
|
"zerocopy-derive",
|
|
3983
4685
|
]
|
|
3984
4686
|
|
|
3985
4687
|
[[package]]
|
|
3986
4688
|
name = "zerocopy-derive"
|
|
3987
|
-
version = "0.
|
|
4689
|
+
version = "0.8.32"
|
|
3988
4690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "
|
|
4691
|
+
checksum = "c9c2d862265a8bb4471d87e033e730f536e2a285cc7cb05dbce09a2a97075f90"
|
|
3990
4692
|
dependencies = [
|
|
3991
4693
|
"proc-macro2",
|
|
3992
4694
|
"quote",
|
|
3993
|
-
"syn 2.0.
|
|
4695
|
+
"syn 2.0.114",
|
|
3994
4696
|
]
|
|
3995
4697
|
|
|
3996
4698
|
[[package]]
|
|
3997
4699
|
name = "zerofrom"
|
|
3998
|
-
version = "0.1.
|
|
4700
|
+
version = "0.1.6"
|
|
3999
4701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4000
|
-
checksum = "
|
|
4702
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4001
4703
|
dependencies = [
|
|
4002
4704
|
"zerofrom-derive",
|
|
4003
4705
|
]
|
|
4004
4706
|
|
|
4005
4707
|
[[package]]
|
|
4006
4708
|
name = "zerofrom-derive"
|
|
4007
|
-
version = "0.1.
|
|
4709
|
+
version = "0.1.6"
|
|
4008
4710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4009
|
-
checksum = "
|
|
4711
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4010
4712
|
dependencies = [
|
|
4011
4713
|
"proc-macro2",
|
|
4012
4714
|
"quote",
|
|
4013
|
-
"syn 2.0.
|
|
4715
|
+
"syn 2.0.114",
|
|
4014
4716
|
"synstructure",
|
|
4015
4717
|
]
|
|
4016
4718
|
|
|
4017
4719
|
[[package]]
|
|
4018
4720
|
name = "zeroize"
|
|
4019
|
-
version = "1.8.
|
|
4721
|
+
version = "1.8.2"
|
|
4722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4723
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4724
|
+
|
|
4725
|
+
[[package]]
|
|
4726
|
+
name = "zerotrie"
|
|
4727
|
+
version = "0.2.3"
|
|
4020
4728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4021
|
-
checksum = "
|
|
4729
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4730
|
+
dependencies = [
|
|
4731
|
+
"displaydoc",
|
|
4732
|
+
"yoke",
|
|
4733
|
+
"zerofrom",
|
|
4734
|
+
]
|
|
4022
4735
|
|
|
4023
4736
|
[[package]]
|
|
4024
4737
|
name = "zerovec"
|
|
4025
|
-
version = "0.
|
|
4738
|
+
version = "0.11.5"
|
|
4026
4739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4027
|
-
checksum = "
|
|
4740
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4028
4741
|
dependencies = [
|
|
4029
4742
|
"yoke",
|
|
4030
4743
|
"zerofrom",
|
|
@@ -4033,11 +4746,17 @@ dependencies = [
|
|
|
4033
4746
|
|
|
4034
4747
|
[[package]]
|
|
4035
4748
|
name = "zerovec-derive"
|
|
4036
|
-
version = "0.
|
|
4749
|
+
version = "0.11.2"
|
|
4037
4750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4038
|
-
checksum = "
|
|
4751
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4039
4752
|
dependencies = [
|
|
4040
4753
|
"proc-macro2",
|
|
4041
4754
|
"quote",
|
|
4042
|
-
"syn 2.0.
|
|
4755
|
+
"syn 2.0.114",
|
|
4043
4756
|
]
|
|
4757
|
+
|
|
4758
|
+
[[package]]
|
|
4759
|
+
name = "zmij"
|
|
4760
|
+
version = "1.0.12"
|
|
4761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4762
|
+
checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8"
|