taskchampion-rb 0.2.0
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.
- checksums.yaml +7 -0
- data/.claude/settings.local.json +14 -0
- data/.rubocop.yml +21 -0
- data/CHANGELOG.md +15 -0
- data/Cargo.lock +3671 -0
- data/Cargo.toml +7 -0
- data/README.md +112 -0
- data/Rakefile +28 -0
- data/docs/API_REFERENCE.md +419 -0
- data/docs/THREAD_SAFETY.md +370 -0
- data/docs/breakthrough.md +246 -0
- data/docs/description.md +3 -0
- data/docs/phase_3_plan.md +482 -0
- data/docs/plan.md +612 -0
- data/example.md +465 -0
- data/examples/basic_usage.rb +278 -0
- data/examples/sync_workflow.rb +480 -0
- data/ext/taskchampion/Cargo.toml +20 -0
- data/ext/taskchampion/extconf.rb +6 -0
- data/ext/taskchampion/src/access_mode.rs +132 -0
- data/ext/taskchampion/src/annotation.rs +77 -0
- data/ext/taskchampion/src/dependency_map.rs +65 -0
- data/ext/taskchampion/src/error.rs +78 -0
- data/ext/taskchampion/src/lib.rs +41 -0
- data/ext/taskchampion/src/operation.rs +234 -0
- data/ext/taskchampion/src/operations.rs +180 -0
- data/ext/taskchampion/src/replica.rs +289 -0
- data/ext/taskchampion/src/status.rs +186 -0
- data/ext/taskchampion/src/tag.rs +77 -0
- data/ext/taskchampion/src/task.rs +388 -0
- data/ext/taskchampion/src/thread_check.rs +61 -0
- data/ext/taskchampion/src/util.rs +131 -0
- data/ext/taskchampion/src/working_set.rs +72 -0
- data/lib/taskchampion/version.rb +5 -0
- data/lib/taskchampion.rb +41 -0
- data/sig/taskchampion.rbs +4 -0
- data/taskchampion-0.2.0.gem +0 -0
- metadata +96 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,3671 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 4
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.24.2"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "adler2"
|
16
|
+
version = "2.0.1"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "ahash"
|
22
|
+
version = "0.8.12"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
25
|
+
dependencies = [
|
26
|
+
"cfg-if",
|
27
|
+
"once_cell",
|
28
|
+
"version_check",
|
29
|
+
"zerocopy",
|
30
|
+
]
|
31
|
+
|
32
|
+
[[package]]
|
33
|
+
name = "aho-corasick"
|
34
|
+
version = "1.1.3"
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
36
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
37
|
+
dependencies = [
|
38
|
+
"memchr",
|
39
|
+
]
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "allocator-api2"
|
43
|
+
version = "0.2.21"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
46
|
+
|
47
|
+
[[package]]
|
48
|
+
name = "android-tzdata"
|
49
|
+
version = "0.1.1"
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
51
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
52
|
+
|
53
|
+
[[package]]
|
54
|
+
name = "android_system_properties"
|
55
|
+
version = "0.1.5"
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
57
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
58
|
+
dependencies = [
|
59
|
+
"libc",
|
60
|
+
]
|
61
|
+
|
62
|
+
[[package]]
|
63
|
+
name = "anyhow"
|
64
|
+
version = "1.0.98"
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
67
|
+
|
68
|
+
[[package]]
|
69
|
+
name = "async-stream"
|
70
|
+
version = "0.3.6"
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
73
|
+
dependencies = [
|
74
|
+
"async-stream-impl",
|
75
|
+
"futures-core",
|
76
|
+
"pin-project-lite",
|
77
|
+
]
|
78
|
+
|
79
|
+
[[package]]
|
80
|
+
name = "async-stream-impl"
|
81
|
+
version = "0.3.6"
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
84
|
+
dependencies = [
|
85
|
+
"proc-macro2",
|
86
|
+
"quote",
|
87
|
+
"syn",
|
88
|
+
]
|
89
|
+
|
90
|
+
[[package]]
|
91
|
+
name = "async-trait"
|
92
|
+
version = "0.1.88"
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
95
|
+
dependencies = [
|
96
|
+
"proc-macro2",
|
97
|
+
"quote",
|
98
|
+
"syn",
|
99
|
+
]
|
100
|
+
|
101
|
+
[[package]]
|
102
|
+
name = "atomic-waker"
|
103
|
+
version = "1.1.2"
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
105
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
106
|
+
|
107
|
+
[[package]]
|
108
|
+
name = "autocfg"
|
109
|
+
version = "1.5.0"
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
111
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
112
|
+
|
113
|
+
[[package]]
|
114
|
+
name = "aws-config"
|
115
|
+
version = "1.8.3"
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
+
checksum = "c0baa720ebadea158c5bda642ac444a2af0cdf7bb66b46d1e4533de5d1f449d0"
|
118
|
+
dependencies = [
|
119
|
+
"aws-credential-types",
|
120
|
+
"aws-runtime",
|
121
|
+
"aws-sdk-sso",
|
122
|
+
"aws-sdk-ssooidc",
|
123
|
+
"aws-sdk-sts",
|
124
|
+
"aws-smithy-async",
|
125
|
+
"aws-smithy-http",
|
126
|
+
"aws-smithy-json",
|
127
|
+
"aws-smithy-runtime",
|
128
|
+
"aws-smithy-runtime-api",
|
129
|
+
"aws-smithy-types",
|
130
|
+
"aws-types",
|
131
|
+
"bytes",
|
132
|
+
"fastrand",
|
133
|
+
"hex",
|
134
|
+
"http 1.3.1",
|
135
|
+
"ring",
|
136
|
+
"time",
|
137
|
+
"tokio",
|
138
|
+
"tracing",
|
139
|
+
"url",
|
140
|
+
"zeroize",
|
141
|
+
]
|
142
|
+
|
143
|
+
[[package]]
|
144
|
+
name = "aws-credential-types"
|
145
|
+
version = "1.2.4"
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
147
|
+
checksum = "b68c2194a190e1efc999612792e25b1ab3abfefe4306494efaaabc25933c0cbe"
|
148
|
+
dependencies = [
|
149
|
+
"aws-smithy-async",
|
150
|
+
"aws-smithy-runtime-api",
|
151
|
+
"aws-smithy-types",
|
152
|
+
"zeroize",
|
153
|
+
]
|
154
|
+
|
155
|
+
[[package]]
|
156
|
+
name = "aws-lc-rs"
|
157
|
+
version = "1.13.3"
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
159
|
+
checksum = "5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17ba"
|
160
|
+
dependencies = [
|
161
|
+
"aws-lc-sys",
|
162
|
+
"zeroize",
|
163
|
+
]
|
164
|
+
|
165
|
+
[[package]]
|
166
|
+
name = "aws-lc-sys"
|
167
|
+
version = "0.30.0"
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
169
|
+
checksum = "dbfd150b5dbdb988bcc8fb1fe787eb6b7ee6180ca24da683b61ea5405f3d43ff"
|
170
|
+
dependencies = [
|
171
|
+
"bindgen",
|
172
|
+
"cc",
|
173
|
+
"cmake",
|
174
|
+
"dunce",
|
175
|
+
"fs_extra",
|
176
|
+
]
|
177
|
+
|
178
|
+
[[package]]
|
179
|
+
name = "aws-runtime"
|
180
|
+
version = "1.5.9"
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
+
checksum = "b2090e664216c78e766b6bac10fe74d2f451c02441d43484cd76ac9a295075f7"
|
183
|
+
dependencies = [
|
184
|
+
"aws-credential-types",
|
185
|
+
"aws-sigv4",
|
186
|
+
"aws-smithy-async",
|
187
|
+
"aws-smithy-eventstream",
|
188
|
+
"aws-smithy-http",
|
189
|
+
"aws-smithy-runtime",
|
190
|
+
"aws-smithy-runtime-api",
|
191
|
+
"aws-smithy-types",
|
192
|
+
"aws-types",
|
193
|
+
"bytes",
|
194
|
+
"fastrand",
|
195
|
+
"http 0.2.12",
|
196
|
+
"http-body 0.4.6",
|
197
|
+
"percent-encoding",
|
198
|
+
"pin-project-lite",
|
199
|
+
"tracing",
|
200
|
+
"uuid",
|
201
|
+
]
|
202
|
+
|
203
|
+
[[package]]
|
204
|
+
name = "aws-sdk-s3"
|
205
|
+
version = "1.100.0"
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
+
checksum = "8c5eafbdcd898114b839ba68ac628e31c4cfc3e11dfca38dc1b2de2f35bb6270"
|
208
|
+
dependencies = [
|
209
|
+
"aws-credential-types",
|
210
|
+
"aws-runtime",
|
211
|
+
"aws-sigv4",
|
212
|
+
"aws-smithy-async",
|
213
|
+
"aws-smithy-checksums",
|
214
|
+
"aws-smithy-eventstream",
|
215
|
+
"aws-smithy-http",
|
216
|
+
"aws-smithy-json",
|
217
|
+
"aws-smithy-runtime",
|
218
|
+
"aws-smithy-runtime-api",
|
219
|
+
"aws-smithy-types",
|
220
|
+
"aws-smithy-xml",
|
221
|
+
"aws-types",
|
222
|
+
"bytes",
|
223
|
+
"fastrand",
|
224
|
+
"hex",
|
225
|
+
"hmac",
|
226
|
+
"http 0.2.12",
|
227
|
+
"http 1.3.1",
|
228
|
+
"http-body 0.4.6",
|
229
|
+
"lru",
|
230
|
+
"percent-encoding",
|
231
|
+
"regex-lite",
|
232
|
+
"sha2",
|
233
|
+
"tracing",
|
234
|
+
"url",
|
235
|
+
]
|
236
|
+
|
237
|
+
[[package]]
|
238
|
+
name = "aws-sdk-sso"
|
239
|
+
version = "1.78.0"
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
241
|
+
checksum = "dbd7bc4bd34303733bded362c4c997a39130eac4310257c79aae8484b1c4b724"
|
242
|
+
dependencies = [
|
243
|
+
"aws-credential-types",
|
244
|
+
"aws-runtime",
|
245
|
+
"aws-smithy-async",
|
246
|
+
"aws-smithy-http",
|
247
|
+
"aws-smithy-json",
|
248
|
+
"aws-smithy-runtime",
|
249
|
+
"aws-smithy-runtime-api",
|
250
|
+
"aws-smithy-types",
|
251
|
+
"aws-types",
|
252
|
+
"bytes",
|
253
|
+
"fastrand",
|
254
|
+
"http 0.2.12",
|
255
|
+
"regex-lite",
|
256
|
+
"tracing",
|
257
|
+
]
|
258
|
+
|
259
|
+
[[package]]
|
260
|
+
name = "aws-sdk-ssooidc"
|
261
|
+
version = "1.79.0"
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
263
|
+
checksum = "77358d25f781bb106c1a69531231d4fd12c6be904edb0c47198c604df5a2dbca"
|
264
|
+
dependencies = [
|
265
|
+
"aws-credential-types",
|
266
|
+
"aws-runtime",
|
267
|
+
"aws-smithy-async",
|
268
|
+
"aws-smithy-http",
|
269
|
+
"aws-smithy-json",
|
270
|
+
"aws-smithy-runtime",
|
271
|
+
"aws-smithy-runtime-api",
|
272
|
+
"aws-smithy-types",
|
273
|
+
"aws-types",
|
274
|
+
"bytes",
|
275
|
+
"fastrand",
|
276
|
+
"http 0.2.12",
|
277
|
+
"regex-lite",
|
278
|
+
"tracing",
|
279
|
+
]
|
280
|
+
|
281
|
+
[[package]]
|
282
|
+
name = "aws-sdk-sts"
|
283
|
+
version = "1.80.0"
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
285
|
+
checksum = "06e3ed2a9b828ae7763ddaed41d51724d2661a50c45f845b08967e52f4939cfc"
|
286
|
+
dependencies = [
|
287
|
+
"aws-credential-types",
|
288
|
+
"aws-runtime",
|
289
|
+
"aws-smithy-async",
|
290
|
+
"aws-smithy-http",
|
291
|
+
"aws-smithy-json",
|
292
|
+
"aws-smithy-query",
|
293
|
+
"aws-smithy-runtime",
|
294
|
+
"aws-smithy-runtime-api",
|
295
|
+
"aws-smithy-types",
|
296
|
+
"aws-smithy-xml",
|
297
|
+
"aws-types",
|
298
|
+
"fastrand",
|
299
|
+
"http 0.2.12",
|
300
|
+
"regex-lite",
|
301
|
+
"tracing",
|
302
|
+
]
|
303
|
+
|
304
|
+
[[package]]
|
305
|
+
name = "aws-sigv4"
|
306
|
+
version = "1.3.3"
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
+
checksum = "ddfb9021f581b71870a17eac25b52335b82211cdc092e02b6876b2bcefa61666"
|
309
|
+
dependencies = [
|
310
|
+
"aws-credential-types",
|
311
|
+
"aws-smithy-eventstream",
|
312
|
+
"aws-smithy-http",
|
313
|
+
"aws-smithy-runtime-api",
|
314
|
+
"aws-smithy-types",
|
315
|
+
"bytes",
|
316
|
+
"crypto-bigint 0.5.5",
|
317
|
+
"form_urlencoded",
|
318
|
+
"hex",
|
319
|
+
"hmac",
|
320
|
+
"http 0.2.12",
|
321
|
+
"http 1.3.1",
|
322
|
+
"p256",
|
323
|
+
"percent-encoding",
|
324
|
+
"ring",
|
325
|
+
"sha2",
|
326
|
+
"subtle",
|
327
|
+
"time",
|
328
|
+
"tracing",
|
329
|
+
"zeroize",
|
330
|
+
]
|
331
|
+
|
332
|
+
[[package]]
|
333
|
+
name = "aws-smithy-async"
|
334
|
+
version = "1.2.5"
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
+
checksum = "1e190749ea56f8c42bf15dd76c65e14f8f765233e6df9b0506d9d934ebef867c"
|
337
|
+
dependencies = [
|
338
|
+
"futures-util",
|
339
|
+
"pin-project-lite",
|
340
|
+
"tokio",
|
341
|
+
]
|
342
|
+
|
343
|
+
[[package]]
|
344
|
+
name = "aws-smithy-checksums"
|
345
|
+
version = "0.63.5"
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
347
|
+
checksum = "5ab9472f7a8ec259ddb5681d2ef1cb1cf16c0411890063e67cdc7b62562cc496"
|
348
|
+
dependencies = [
|
349
|
+
"aws-smithy-http",
|
350
|
+
"aws-smithy-types",
|
351
|
+
"bytes",
|
352
|
+
"crc-fast",
|
353
|
+
"hex",
|
354
|
+
"http 0.2.12",
|
355
|
+
"http-body 0.4.6",
|
356
|
+
"md-5",
|
357
|
+
"pin-project-lite",
|
358
|
+
"sha1",
|
359
|
+
"sha2",
|
360
|
+
"tracing",
|
361
|
+
]
|
362
|
+
|
363
|
+
[[package]]
|
364
|
+
name = "aws-smithy-eventstream"
|
365
|
+
version = "0.60.10"
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
367
|
+
checksum = "604c7aec361252b8f1c871a7641d5e0ba3a7f5a586e51b66bc9510a5519594d9"
|
368
|
+
dependencies = [
|
369
|
+
"aws-smithy-types",
|
370
|
+
"bytes",
|
371
|
+
"crc32fast",
|
372
|
+
]
|
373
|
+
|
374
|
+
[[package]]
|
375
|
+
name = "aws-smithy-http"
|
376
|
+
version = "0.62.2"
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
378
|
+
checksum = "43c82ba4cab184ea61f6edaafc1072aad3c2a17dcf4c0fce19ac5694b90d8b5f"
|
379
|
+
dependencies = [
|
380
|
+
"aws-smithy-eventstream",
|
381
|
+
"aws-smithy-runtime-api",
|
382
|
+
"aws-smithy-types",
|
383
|
+
"bytes",
|
384
|
+
"bytes-utils",
|
385
|
+
"futures-core",
|
386
|
+
"http 0.2.12",
|
387
|
+
"http 1.3.1",
|
388
|
+
"http-body 0.4.6",
|
389
|
+
"percent-encoding",
|
390
|
+
"pin-project-lite",
|
391
|
+
"pin-utils",
|
392
|
+
"tracing",
|
393
|
+
]
|
394
|
+
|
395
|
+
[[package]]
|
396
|
+
name = "aws-smithy-http-client"
|
397
|
+
version = "1.0.6"
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
399
|
+
checksum = "f108f1ca850f3feef3009bdcc977be201bca9a91058864d9de0684e64514bee0"
|
400
|
+
dependencies = [
|
401
|
+
"aws-smithy-async",
|
402
|
+
"aws-smithy-runtime-api",
|
403
|
+
"aws-smithy-types",
|
404
|
+
"h2 0.3.27",
|
405
|
+
"h2 0.4.11",
|
406
|
+
"http 0.2.12",
|
407
|
+
"http 1.3.1",
|
408
|
+
"http-body 0.4.6",
|
409
|
+
"hyper 0.14.32",
|
410
|
+
"hyper 1.6.0",
|
411
|
+
"hyper-rustls 0.24.2",
|
412
|
+
"hyper-rustls 0.27.7",
|
413
|
+
"hyper-util",
|
414
|
+
"pin-project-lite",
|
415
|
+
"rustls 0.21.12",
|
416
|
+
"rustls 0.23.31",
|
417
|
+
"rustls-native-certs 0.8.1",
|
418
|
+
"rustls-pki-types",
|
419
|
+
"tokio",
|
420
|
+
"tower",
|
421
|
+
"tracing",
|
422
|
+
]
|
423
|
+
|
424
|
+
[[package]]
|
425
|
+
name = "aws-smithy-json"
|
426
|
+
version = "0.61.4"
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
+
checksum = "a16e040799d29c17412943bdbf488fd75db04112d0c0d4b9290bacf5ae0014b9"
|
429
|
+
dependencies = [
|
430
|
+
"aws-smithy-types",
|
431
|
+
]
|
432
|
+
|
433
|
+
[[package]]
|
434
|
+
name = "aws-smithy-observability"
|
435
|
+
version = "0.1.3"
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
+
checksum = "9364d5989ac4dd918e5cc4c4bdcc61c9be17dcd2586ea7f69e348fc7c6cab393"
|
438
|
+
dependencies = [
|
439
|
+
"aws-smithy-runtime-api",
|
440
|
+
]
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "aws-smithy-query"
|
444
|
+
version = "0.60.7"
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
|
+
checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb"
|
447
|
+
dependencies = [
|
448
|
+
"aws-smithy-types",
|
449
|
+
"urlencoding",
|
450
|
+
]
|
451
|
+
|
452
|
+
[[package]]
|
453
|
+
name = "aws-smithy-runtime"
|
454
|
+
version = "1.8.5"
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
456
|
+
checksum = "660f70d9d8af6876b4c9aa8dcb0dbaf0f89b04ee9a4455bea1b4ba03b15f26f6"
|
457
|
+
dependencies = [
|
458
|
+
"aws-smithy-async",
|
459
|
+
"aws-smithy-http",
|
460
|
+
"aws-smithy-http-client",
|
461
|
+
"aws-smithy-observability",
|
462
|
+
"aws-smithy-runtime-api",
|
463
|
+
"aws-smithy-types",
|
464
|
+
"bytes",
|
465
|
+
"fastrand",
|
466
|
+
"http 0.2.12",
|
467
|
+
"http 1.3.1",
|
468
|
+
"http-body 0.4.6",
|
469
|
+
"http-body 1.0.1",
|
470
|
+
"pin-project-lite",
|
471
|
+
"pin-utils",
|
472
|
+
"tokio",
|
473
|
+
"tracing",
|
474
|
+
]
|
475
|
+
|
476
|
+
[[package]]
|
477
|
+
name = "aws-smithy-runtime-api"
|
478
|
+
version = "1.8.5"
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
+
checksum = "937a49ecf061895fca4a6dd8e864208ed9be7546c0527d04bc07d502ec5fba1c"
|
481
|
+
dependencies = [
|
482
|
+
"aws-smithy-async",
|
483
|
+
"aws-smithy-types",
|
484
|
+
"bytes",
|
485
|
+
"http 0.2.12",
|
486
|
+
"http 1.3.1",
|
487
|
+
"pin-project-lite",
|
488
|
+
"tokio",
|
489
|
+
"tracing",
|
490
|
+
"zeroize",
|
491
|
+
]
|
492
|
+
|
493
|
+
[[package]]
|
494
|
+
name = "aws-smithy-types"
|
495
|
+
version = "1.3.2"
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
|
+
checksum = "d498595448e43de7f4296b7b7a18a8a02c61ec9349128c80a368f7c3b4ab11a8"
|
498
|
+
dependencies = [
|
499
|
+
"base64-simd",
|
500
|
+
"bytes",
|
501
|
+
"bytes-utils",
|
502
|
+
"futures-core",
|
503
|
+
"http 0.2.12",
|
504
|
+
"http 1.3.1",
|
505
|
+
"http-body 0.4.6",
|
506
|
+
"http-body 1.0.1",
|
507
|
+
"http-body-util",
|
508
|
+
"itoa",
|
509
|
+
"num-integer",
|
510
|
+
"pin-project-lite",
|
511
|
+
"pin-utils",
|
512
|
+
"ryu",
|
513
|
+
"serde",
|
514
|
+
"time",
|
515
|
+
"tokio",
|
516
|
+
"tokio-util",
|
517
|
+
]
|
518
|
+
|
519
|
+
[[package]]
|
520
|
+
name = "aws-smithy-xml"
|
521
|
+
version = "0.60.10"
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
+
checksum = "3db87b96cb1b16c024980f133968d52882ca0daaee3a086c6decc500f6c99728"
|
524
|
+
dependencies = [
|
525
|
+
"xmlparser",
|
526
|
+
]
|
527
|
+
|
528
|
+
[[package]]
|
529
|
+
name = "aws-types"
|
530
|
+
version = "1.3.8"
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
+
checksum = "b069d19bf01e46298eaedd7c6f283fe565a59263e53eebec945f3e6398f42390"
|
533
|
+
dependencies = [
|
534
|
+
"aws-credential-types",
|
535
|
+
"aws-smithy-async",
|
536
|
+
"aws-smithy-runtime-api",
|
537
|
+
"aws-smithy-types",
|
538
|
+
"rustc_version",
|
539
|
+
"tracing",
|
540
|
+
]
|
541
|
+
|
542
|
+
[[package]]
|
543
|
+
name = "backtrace"
|
544
|
+
version = "0.3.75"
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
547
|
+
dependencies = [
|
548
|
+
"addr2line",
|
549
|
+
"cfg-if",
|
550
|
+
"libc",
|
551
|
+
"miniz_oxide",
|
552
|
+
"object",
|
553
|
+
"rustc-demangle",
|
554
|
+
"windows-targets 0.52.6",
|
555
|
+
]
|
556
|
+
|
557
|
+
[[package]]
|
558
|
+
name = "base16ct"
|
559
|
+
version = "0.1.1"
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
561
|
+
checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
|
562
|
+
|
563
|
+
[[package]]
|
564
|
+
name = "base64"
|
565
|
+
version = "0.21.7"
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "base64"
|
571
|
+
version = "0.22.1"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
574
|
+
|
575
|
+
[[package]]
|
576
|
+
name = "base64-simd"
|
577
|
+
version = "0.8.0"
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
579
|
+
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
580
|
+
dependencies = [
|
581
|
+
"outref",
|
582
|
+
"vsimd",
|
583
|
+
]
|
584
|
+
|
585
|
+
[[package]]
|
586
|
+
name = "base64ct"
|
587
|
+
version = "1.8.0"
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
589
|
+
checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
|
590
|
+
|
591
|
+
[[package]]
|
592
|
+
name = "bindgen"
|
593
|
+
version = "0.69.5"
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
595
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
596
|
+
dependencies = [
|
597
|
+
"bitflags",
|
598
|
+
"cexpr",
|
599
|
+
"clang-sys",
|
600
|
+
"itertools",
|
601
|
+
"lazy_static",
|
602
|
+
"lazycell",
|
603
|
+
"log",
|
604
|
+
"prettyplease",
|
605
|
+
"proc-macro2",
|
606
|
+
"quote",
|
607
|
+
"regex",
|
608
|
+
"rustc-hash 1.1.0",
|
609
|
+
"shlex",
|
610
|
+
"syn",
|
611
|
+
"which",
|
612
|
+
]
|
613
|
+
|
614
|
+
[[package]]
|
615
|
+
name = "bitflags"
|
616
|
+
version = "2.9.1"
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
619
|
+
|
620
|
+
[[package]]
|
621
|
+
name = "block-buffer"
|
622
|
+
version = "0.10.4"
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
624
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
625
|
+
dependencies = [
|
626
|
+
"generic-array",
|
627
|
+
]
|
628
|
+
|
629
|
+
[[package]]
|
630
|
+
name = "bumpalo"
|
631
|
+
version = "3.19.0"
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
634
|
+
|
635
|
+
[[package]]
|
636
|
+
name = "byteorder"
|
637
|
+
version = "1.5.0"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "bytes"
|
643
|
+
version = "1.10.1"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
646
|
+
|
647
|
+
[[package]]
|
648
|
+
name = "bytes-utils"
|
649
|
+
version = "0.1.4"
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
651
|
+
checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
|
652
|
+
dependencies = [
|
653
|
+
"bytes",
|
654
|
+
"either",
|
655
|
+
]
|
656
|
+
|
657
|
+
[[package]]
|
658
|
+
name = "cc"
|
659
|
+
version = "1.2.30"
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
+
checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
|
662
|
+
dependencies = [
|
663
|
+
"jobserver",
|
664
|
+
"libc",
|
665
|
+
"shlex",
|
666
|
+
]
|
667
|
+
|
668
|
+
[[package]]
|
669
|
+
name = "cexpr"
|
670
|
+
version = "0.6.0"
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
673
|
+
dependencies = [
|
674
|
+
"nom",
|
675
|
+
]
|
676
|
+
|
677
|
+
[[package]]
|
678
|
+
name = "cfg-if"
|
679
|
+
version = "1.0.1"
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
682
|
+
|
683
|
+
[[package]]
|
684
|
+
name = "cfg_aliases"
|
685
|
+
version = "0.2.1"
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
688
|
+
|
689
|
+
[[package]]
|
690
|
+
name = "chrono"
|
691
|
+
version = "0.4.41"
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
693
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
694
|
+
dependencies = [
|
695
|
+
"android-tzdata",
|
696
|
+
"iana-time-zone",
|
697
|
+
"js-sys",
|
698
|
+
"num-traits",
|
699
|
+
"serde",
|
700
|
+
"wasm-bindgen",
|
701
|
+
"windows-link",
|
702
|
+
]
|
703
|
+
|
704
|
+
[[package]]
|
705
|
+
name = "clang-sys"
|
706
|
+
version = "1.8.1"
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
708
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
709
|
+
dependencies = [
|
710
|
+
"glob",
|
711
|
+
"libc",
|
712
|
+
"libloading",
|
713
|
+
]
|
714
|
+
|
715
|
+
[[package]]
|
716
|
+
name = "cmake"
|
717
|
+
version = "0.1.54"
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
+
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
|
720
|
+
dependencies = [
|
721
|
+
"cc",
|
722
|
+
]
|
723
|
+
|
724
|
+
[[package]]
|
725
|
+
name = "const-oid"
|
726
|
+
version = "0.9.6"
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
728
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
729
|
+
|
730
|
+
[[package]]
|
731
|
+
name = "core-foundation"
|
732
|
+
version = "0.9.4"
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
734
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
735
|
+
dependencies = [
|
736
|
+
"core-foundation-sys",
|
737
|
+
"libc",
|
738
|
+
]
|
739
|
+
|
740
|
+
[[package]]
|
741
|
+
name = "core-foundation"
|
742
|
+
version = "0.10.1"
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
744
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
745
|
+
dependencies = [
|
746
|
+
"core-foundation-sys",
|
747
|
+
"libc",
|
748
|
+
]
|
749
|
+
|
750
|
+
[[package]]
|
751
|
+
name = "core-foundation-sys"
|
752
|
+
version = "0.8.7"
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
754
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
755
|
+
|
756
|
+
[[package]]
|
757
|
+
name = "cpufeatures"
|
758
|
+
version = "0.2.17"
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
760
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
761
|
+
dependencies = [
|
762
|
+
"libc",
|
763
|
+
]
|
764
|
+
|
765
|
+
[[package]]
|
766
|
+
name = "crc"
|
767
|
+
version = "3.3.0"
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
+
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
770
|
+
dependencies = [
|
771
|
+
"crc-catalog",
|
772
|
+
]
|
773
|
+
|
774
|
+
[[package]]
|
775
|
+
name = "crc-catalog"
|
776
|
+
version = "2.4.0"
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
+
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
779
|
+
|
780
|
+
[[package]]
|
781
|
+
name = "crc-fast"
|
782
|
+
version = "1.3.0"
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
784
|
+
checksum = "6bf62af4cc77d8fe1c22dde4e721d87f2f54056139d8c412e1366b740305f56f"
|
785
|
+
dependencies = [
|
786
|
+
"crc",
|
787
|
+
"digest",
|
788
|
+
"libc",
|
789
|
+
"rand",
|
790
|
+
"regex",
|
791
|
+
]
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "crc32fast"
|
795
|
+
version = "1.5.0"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
798
|
+
dependencies = [
|
799
|
+
"cfg-if",
|
800
|
+
]
|
801
|
+
|
802
|
+
[[package]]
|
803
|
+
name = "crypto-bigint"
|
804
|
+
version = "0.4.9"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
|
807
|
+
dependencies = [
|
808
|
+
"generic-array",
|
809
|
+
"rand_core 0.6.4",
|
810
|
+
"subtle",
|
811
|
+
"zeroize",
|
812
|
+
]
|
813
|
+
|
814
|
+
[[package]]
|
815
|
+
name = "crypto-bigint"
|
816
|
+
version = "0.5.5"
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
818
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
819
|
+
dependencies = [
|
820
|
+
"rand_core 0.6.4",
|
821
|
+
"subtle",
|
822
|
+
]
|
823
|
+
|
824
|
+
[[package]]
|
825
|
+
name = "crypto-common"
|
826
|
+
version = "0.1.6"
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
828
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
829
|
+
dependencies = [
|
830
|
+
"generic-array",
|
831
|
+
"typenum",
|
832
|
+
]
|
833
|
+
|
834
|
+
[[package]]
|
835
|
+
name = "der"
|
836
|
+
version = "0.6.1"
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
838
|
+
checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
|
839
|
+
dependencies = [
|
840
|
+
"const-oid",
|
841
|
+
"zeroize",
|
842
|
+
]
|
843
|
+
|
844
|
+
[[package]]
|
845
|
+
name = "der"
|
846
|
+
version = "0.7.10"
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
849
|
+
dependencies = [
|
850
|
+
"const-oid",
|
851
|
+
"pem-rfc7468",
|
852
|
+
"zeroize",
|
853
|
+
]
|
854
|
+
|
855
|
+
[[package]]
|
856
|
+
name = "deranged"
|
857
|
+
version = "0.4.0"
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
859
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
860
|
+
dependencies = [
|
861
|
+
"powerfmt",
|
862
|
+
"serde",
|
863
|
+
]
|
864
|
+
|
865
|
+
[[package]]
|
866
|
+
name = "digest"
|
867
|
+
version = "0.10.7"
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
869
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
870
|
+
dependencies = [
|
871
|
+
"block-buffer",
|
872
|
+
"crypto-common",
|
873
|
+
"subtle",
|
874
|
+
]
|
875
|
+
|
876
|
+
[[package]]
|
877
|
+
name = "displaydoc"
|
878
|
+
version = "0.2.5"
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
880
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
881
|
+
dependencies = [
|
882
|
+
"proc-macro2",
|
883
|
+
"quote",
|
884
|
+
"syn",
|
885
|
+
]
|
886
|
+
|
887
|
+
[[package]]
|
888
|
+
name = "dunce"
|
889
|
+
version = "1.0.5"
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
892
|
+
|
893
|
+
[[package]]
|
894
|
+
name = "ecdsa"
|
895
|
+
version = "0.14.8"
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
|
+
checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
|
898
|
+
dependencies = [
|
899
|
+
"der 0.6.1",
|
900
|
+
"elliptic-curve",
|
901
|
+
"rfc6979",
|
902
|
+
"signature",
|
903
|
+
]
|
904
|
+
|
905
|
+
[[package]]
|
906
|
+
name = "either"
|
907
|
+
version = "1.15.0"
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
909
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
910
|
+
|
911
|
+
[[package]]
|
912
|
+
name = "elliptic-curve"
|
913
|
+
version = "0.12.3"
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
915
|
+
checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
|
916
|
+
dependencies = [
|
917
|
+
"base16ct",
|
918
|
+
"crypto-bigint 0.4.9",
|
919
|
+
"der 0.6.1",
|
920
|
+
"digest",
|
921
|
+
"ff",
|
922
|
+
"generic-array",
|
923
|
+
"group",
|
924
|
+
"pkcs8 0.9.0",
|
925
|
+
"rand_core 0.6.4",
|
926
|
+
"sec1",
|
927
|
+
"subtle",
|
928
|
+
"zeroize",
|
929
|
+
]
|
930
|
+
|
931
|
+
[[package]]
|
932
|
+
name = "encoding_rs"
|
933
|
+
version = "0.8.35"
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
935
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
936
|
+
dependencies = [
|
937
|
+
"cfg-if",
|
938
|
+
]
|
939
|
+
|
940
|
+
[[package]]
|
941
|
+
name = "equivalent"
|
942
|
+
version = "1.0.2"
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
944
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
945
|
+
|
946
|
+
[[package]]
|
947
|
+
name = "errno"
|
948
|
+
version = "0.3.13"
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
950
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
951
|
+
dependencies = [
|
952
|
+
"libc",
|
953
|
+
"windows-sys 0.59.0",
|
954
|
+
]
|
955
|
+
|
956
|
+
[[package]]
|
957
|
+
name = "fallible-iterator"
|
958
|
+
version = "0.3.0"
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
960
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
961
|
+
|
962
|
+
[[package]]
|
963
|
+
name = "fallible-streaming-iterator"
|
964
|
+
version = "0.1.9"
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
967
|
+
|
968
|
+
[[package]]
|
969
|
+
name = "fastrand"
|
970
|
+
version = "2.3.0"
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
972
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
973
|
+
|
974
|
+
[[package]]
|
975
|
+
name = "ff"
|
976
|
+
version = "0.12.1"
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
|
+
checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
|
979
|
+
dependencies = [
|
980
|
+
"rand_core 0.6.4",
|
981
|
+
"subtle",
|
982
|
+
]
|
983
|
+
|
984
|
+
[[package]]
|
985
|
+
name = "flate2"
|
986
|
+
version = "1.1.2"
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
988
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
989
|
+
dependencies = [
|
990
|
+
"crc32fast",
|
991
|
+
"miniz_oxide",
|
992
|
+
]
|
993
|
+
|
994
|
+
[[package]]
|
995
|
+
name = "fnv"
|
996
|
+
version = "1.0.7"
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
999
|
+
|
1000
|
+
[[package]]
|
1001
|
+
name = "foldhash"
|
1002
|
+
version = "0.1.5"
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
1005
|
+
|
1006
|
+
[[package]]
|
1007
|
+
name = "form_urlencoded"
|
1008
|
+
version = "1.2.1"
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
1011
|
+
dependencies = [
|
1012
|
+
"percent-encoding",
|
1013
|
+
]
|
1014
|
+
|
1015
|
+
[[package]]
|
1016
|
+
name = "fs_extra"
|
1017
|
+
version = "1.3.0"
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
1020
|
+
|
1021
|
+
[[package]]
|
1022
|
+
name = "futures-channel"
|
1023
|
+
version = "0.3.31"
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1025
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
1026
|
+
dependencies = [
|
1027
|
+
"futures-core",
|
1028
|
+
]
|
1029
|
+
|
1030
|
+
[[package]]
|
1031
|
+
name = "futures-core"
|
1032
|
+
version = "0.3.31"
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
1035
|
+
|
1036
|
+
[[package]]
|
1037
|
+
name = "futures-io"
|
1038
|
+
version = "0.3.31"
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1040
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
1041
|
+
|
1042
|
+
[[package]]
|
1043
|
+
name = "futures-macro"
|
1044
|
+
version = "0.3.31"
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
1047
|
+
dependencies = [
|
1048
|
+
"proc-macro2",
|
1049
|
+
"quote",
|
1050
|
+
"syn",
|
1051
|
+
]
|
1052
|
+
|
1053
|
+
[[package]]
|
1054
|
+
name = "futures-sink"
|
1055
|
+
version = "0.3.31"
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
1058
|
+
|
1059
|
+
[[package]]
|
1060
|
+
name = "futures-task"
|
1061
|
+
version = "0.3.31"
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1063
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
1064
|
+
|
1065
|
+
[[package]]
|
1066
|
+
name = "futures-util"
|
1067
|
+
version = "0.3.31"
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1069
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
1070
|
+
dependencies = [
|
1071
|
+
"futures-core",
|
1072
|
+
"futures-io",
|
1073
|
+
"futures-macro",
|
1074
|
+
"futures-sink",
|
1075
|
+
"futures-task",
|
1076
|
+
"memchr",
|
1077
|
+
"pin-project-lite",
|
1078
|
+
"pin-utils",
|
1079
|
+
"slab",
|
1080
|
+
]
|
1081
|
+
|
1082
|
+
[[package]]
|
1083
|
+
name = "generic-array"
|
1084
|
+
version = "0.14.7"
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1086
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1087
|
+
dependencies = [
|
1088
|
+
"typenum",
|
1089
|
+
"version_check",
|
1090
|
+
]
|
1091
|
+
|
1092
|
+
[[package]]
|
1093
|
+
name = "getrandom"
|
1094
|
+
version = "0.2.16"
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
1097
|
+
dependencies = [
|
1098
|
+
"cfg-if",
|
1099
|
+
"js-sys",
|
1100
|
+
"libc",
|
1101
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
1102
|
+
"wasm-bindgen",
|
1103
|
+
]
|
1104
|
+
|
1105
|
+
[[package]]
|
1106
|
+
name = "getrandom"
|
1107
|
+
version = "0.3.3"
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1109
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
1110
|
+
dependencies = [
|
1111
|
+
"cfg-if",
|
1112
|
+
"js-sys",
|
1113
|
+
"libc",
|
1114
|
+
"r-efi",
|
1115
|
+
"wasi 0.14.2+wasi-0.2.4",
|
1116
|
+
"wasm-bindgen",
|
1117
|
+
]
|
1118
|
+
|
1119
|
+
[[package]]
|
1120
|
+
name = "gimli"
|
1121
|
+
version = "0.31.1"
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1123
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
1124
|
+
|
1125
|
+
[[package]]
|
1126
|
+
name = "glob"
|
1127
|
+
version = "0.3.2"
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1129
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
1130
|
+
|
1131
|
+
[[package]]
|
1132
|
+
name = "google-cloud-auth"
|
1133
|
+
version = "0.17.2"
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1135
|
+
checksum = "e57a13fbacc5e9c41ded3ad8d0373175a6b7a6ad430d99e89d314ac121b7ab06"
|
1136
|
+
dependencies = [
|
1137
|
+
"async-trait",
|
1138
|
+
"base64 0.21.7",
|
1139
|
+
"google-cloud-metadata",
|
1140
|
+
"google-cloud-token",
|
1141
|
+
"home",
|
1142
|
+
"jsonwebtoken",
|
1143
|
+
"reqwest",
|
1144
|
+
"serde",
|
1145
|
+
"serde_json",
|
1146
|
+
"thiserror 1.0.69",
|
1147
|
+
"time",
|
1148
|
+
"tokio",
|
1149
|
+
"tracing",
|
1150
|
+
"urlencoding",
|
1151
|
+
]
|
1152
|
+
|
1153
|
+
[[package]]
|
1154
|
+
name = "google-cloud-metadata"
|
1155
|
+
version = "0.5.1"
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
+
checksum = "d901aeb453fd80e51d64df4ee005014f6cf39f2d736dd64f7239c132d9d39a6a"
|
1158
|
+
dependencies = [
|
1159
|
+
"reqwest",
|
1160
|
+
"thiserror 1.0.69",
|
1161
|
+
"tokio",
|
1162
|
+
]
|
1163
|
+
|
1164
|
+
[[package]]
|
1165
|
+
name = "google-cloud-storage"
|
1166
|
+
version = "0.24.0"
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
+
checksum = "34a73d9e94d35665909050f02e035d8bdc82e419241b1b027ebf1ea51dc8a470"
|
1169
|
+
dependencies = [
|
1170
|
+
"anyhow",
|
1171
|
+
"async-stream",
|
1172
|
+
"async-trait",
|
1173
|
+
"base64 0.21.7",
|
1174
|
+
"bytes",
|
1175
|
+
"futures-util",
|
1176
|
+
"google-cloud-auth",
|
1177
|
+
"google-cloud-metadata",
|
1178
|
+
"google-cloud-token",
|
1179
|
+
"hex",
|
1180
|
+
"once_cell",
|
1181
|
+
"percent-encoding",
|
1182
|
+
"pkcs8 0.10.2",
|
1183
|
+
"regex",
|
1184
|
+
"reqwest",
|
1185
|
+
"reqwest-middleware",
|
1186
|
+
"ring",
|
1187
|
+
"serde",
|
1188
|
+
"serde_json",
|
1189
|
+
"sha2",
|
1190
|
+
"thiserror 1.0.69",
|
1191
|
+
"time",
|
1192
|
+
"tokio",
|
1193
|
+
"tracing",
|
1194
|
+
"url",
|
1195
|
+
]
|
1196
|
+
|
1197
|
+
[[package]]
|
1198
|
+
name = "google-cloud-token"
|
1199
|
+
version = "0.1.2"
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1201
|
+
checksum = "8f49c12ba8b21d128a2ce8585955246977fbce4415f680ebf9199b6f9d6d725f"
|
1202
|
+
dependencies = [
|
1203
|
+
"async-trait",
|
1204
|
+
]
|
1205
|
+
|
1206
|
+
[[package]]
|
1207
|
+
name = "group"
|
1208
|
+
version = "0.12.1"
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1210
|
+
checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
|
1211
|
+
dependencies = [
|
1212
|
+
"ff",
|
1213
|
+
"rand_core 0.6.4",
|
1214
|
+
"subtle",
|
1215
|
+
]
|
1216
|
+
|
1217
|
+
[[package]]
|
1218
|
+
name = "h2"
|
1219
|
+
version = "0.3.27"
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
1222
|
+
dependencies = [
|
1223
|
+
"bytes",
|
1224
|
+
"fnv",
|
1225
|
+
"futures-core",
|
1226
|
+
"futures-sink",
|
1227
|
+
"futures-util",
|
1228
|
+
"http 0.2.12",
|
1229
|
+
"indexmap",
|
1230
|
+
"slab",
|
1231
|
+
"tokio",
|
1232
|
+
"tokio-util",
|
1233
|
+
"tracing",
|
1234
|
+
]
|
1235
|
+
|
1236
|
+
[[package]]
|
1237
|
+
name = "h2"
|
1238
|
+
version = "0.4.11"
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
+
checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
|
1241
|
+
dependencies = [
|
1242
|
+
"atomic-waker",
|
1243
|
+
"bytes",
|
1244
|
+
"fnv",
|
1245
|
+
"futures-core",
|
1246
|
+
"futures-sink",
|
1247
|
+
"http 1.3.1",
|
1248
|
+
"indexmap",
|
1249
|
+
"slab",
|
1250
|
+
"tokio",
|
1251
|
+
"tokio-util",
|
1252
|
+
"tracing",
|
1253
|
+
]
|
1254
|
+
|
1255
|
+
[[package]]
|
1256
|
+
name = "hashbrown"
|
1257
|
+
version = "0.14.5"
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1259
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
1260
|
+
dependencies = [
|
1261
|
+
"ahash",
|
1262
|
+
]
|
1263
|
+
|
1264
|
+
[[package]]
|
1265
|
+
name = "hashbrown"
|
1266
|
+
version = "0.15.4"
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1268
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
1269
|
+
dependencies = [
|
1270
|
+
"allocator-api2",
|
1271
|
+
"equivalent",
|
1272
|
+
"foldhash",
|
1273
|
+
]
|
1274
|
+
|
1275
|
+
[[package]]
|
1276
|
+
name = "hashlink"
|
1277
|
+
version = "0.9.1"
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
1280
|
+
dependencies = [
|
1281
|
+
"hashbrown 0.14.5",
|
1282
|
+
]
|
1283
|
+
|
1284
|
+
[[package]]
|
1285
|
+
name = "heck"
|
1286
|
+
version = "0.5.0"
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1288
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
1289
|
+
|
1290
|
+
[[package]]
|
1291
|
+
name = "hex"
|
1292
|
+
version = "0.4.3"
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1294
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
1295
|
+
|
1296
|
+
[[package]]
|
1297
|
+
name = "hmac"
|
1298
|
+
version = "0.12.1"
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1300
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
1301
|
+
dependencies = [
|
1302
|
+
"digest",
|
1303
|
+
]
|
1304
|
+
|
1305
|
+
[[package]]
|
1306
|
+
name = "home"
|
1307
|
+
version = "0.5.11"
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1309
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
1310
|
+
dependencies = [
|
1311
|
+
"windows-sys 0.59.0",
|
1312
|
+
]
|
1313
|
+
|
1314
|
+
[[package]]
|
1315
|
+
name = "http"
|
1316
|
+
version = "0.2.12"
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1318
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
1319
|
+
dependencies = [
|
1320
|
+
"bytes",
|
1321
|
+
"fnv",
|
1322
|
+
"itoa",
|
1323
|
+
]
|
1324
|
+
|
1325
|
+
[[package]]
|
1326
|
+
name = "http"
|
1327
|
+
version = "1.3.1"
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1329
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
1330
|
+
dependencies = [
|
1331
|
+
"bytes",
|
1332
|
+
"fnv",
|
1333
|
+
"itoa",
|
1334
|
+
]
|
1335
|
+
|
1336
|
+
[[package]]
|
1337
|
+
name = "http-body"
|
1338
|
+
version = "0.4.6"
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1340
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
1341
|
+
dependencies = [
|
1342
|
+
"bytes",
|
1343
|
+
"http 0.2.12",
|
1344
|
+
"pin-project-lite",
|
1345
|
+
]
|
1346
|
+
|
1347
|
+
[[package]]
|
1348
|
+
name = "http-body"
|
1349
|
+
version = "1.0.1"
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1351
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
1352
|
+
dependencies = [
|
1353
|
+
"bytes",
|
1354
|
+
"http 1.3.1",
|
1355
|
+
]
|
1356
|
+
|
1357
|
+
[[package]]
|
1358
|
+
name = "http-body-util"
|
1359
|
+
version = "0.1.3"
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1361
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
1362
|
+
dependencies = [
|
1363
|
+
"bytes",
|
1364
|
+
"futures-core",
|
1365
|
+
"http 1.3.1",
|
1366
|
+
"http-body 1.0.1",
|
1367
|
+
"pin-project-lite",
|
1368
|
+
]
|
1369
|
+
|
1370
|
+
[[package]]
|
1371
|
+
name = "httparse"
|
1372
|
+
version = "1.10.1"
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
1375
|
+
|
1376
|
+
[[package]]
|
1377
|
+
name = "httpdate"
|
1378
|
+
version = "1.0.3"
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1380
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
1381
|
+
|
1382
|
+
[[package]]
|
1383
|
+
name = "hyper"
|
1384
|
+
version = "0.14.32"
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
1387
|
+
dependencies = [
|
1388
|
+
"bytes",
|
1389
|
+
"futures-channel",
|
1390
|
+
"futures-core",
|
1391
|
+
"futures-util",
|
1392
|
+
"h2 0.3.27",
|
1393
|
+
"http 0.2.12",
|
1394
|
+
"http-body 0.4.6",
|
1395
|
+
"httparse",
|
1396
|
+
"httpdate",
|
1397
|
+
"itoa",
|
1398
|
+
"pin-project-lite",
|
1399
|
+
"socket2 0.5.10",
|
1400
|
+
"tokio",
|
1401
|
+
"tower-service",
|
1402
|
+
"tracing",
|
1403
|
+
"want",
|
1404
|
+
]
|
1405
|
+
|
1406
|
+
[[package]]
|
1407
|
+
name = "hyper"
|
1408
|
+
version = "1.6.0"
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1410
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
1411
|
+
dependencies = [
|
1412
|
+
"bytes",
|
1413
|
+
"futures-channel",
|
1414
|
+
"futures-util",
|
1415
|
+
"h2 0.4.11",
|
1416
|
+
"http 1.3.1",
|
1417
|
+
"http-body 1.0.1",
|
1418
|
+
"httparse",
|
1419
|
+
"itoa",
|
1420
|
+
"pin-project-lite",
|
1421
|
+
"smallvec",
|
1422
|
+
"tokio",
|
1423
|
+
"want",
|
1424
|
+
]
|
1425
|
+
|
1426
|
+
[[package]]
|
1427
|
+
name = "hyper-rustls"
|
1428
|
+
version = "0.24.2"
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1430
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
1431
|
+
dependencies = [
|
1432
|
+
"futures-util",
|
1433
|
+
"http 0.2.12",
|
1434
|
+
"hyper 0.14.32",
|
1435
|
+
"log",
|
1436
|
+
"rustls 0.21.12",
|
1437
|
+
"rustls-native-certs 0.6.3",
|
1438
|
+
"tokio",
|
1439
|
+
"tokio-rustls 0.24.1",
|
1440
|
+
]
|
1441
|
+
|
1442
|
+
[[package]]
|
1443
|
+
name = "hyper-rustls"
|
1444
|
+
version = "0.27.7"
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
1447
|
+
dependencies = [
|
1448
|
+
"http 1.3.1",
|
1449
|
+
"hyper 1.6.0",
|
1450
|
+
"hyper-util",
|
1451
|
+
"rustls 0.23.31",
|
1452
|
+
"rustls-native-certs 0.8.1",
|
1453
|
+
"rustls-pki-types",
|
1454
|
+
"tokio",
|
1455
|
+
"tokio-rustls 0.26.2",
|
1456
|
+
"tower-service",
|
1457
|
+
"webpki-roots 1.0.2",
|
1458
|
+
]
|
1459
|
+
|
1460
|
+
[[package]]
|
1461
|
+
name = "hyper-util"
|
1462
|
+
version = "0.1.16"
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1464
|
+
checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
|
1465
|
+
dependencies = [
|
1466
|
+
"base64 0.22.1",
|
1467
|
+
"bytes",
|
1468
|
+
"futures-channel",
|
1469
|
+
"futures-core",
|
1470
|
+
"futures-util",
|
1471
|
+
"http 1.3.1",
|
1472
|
+
"http-body 1.0.1",
|
1473
|
+
"hyper 1.6.0",
|
1474
|
+
"ipnet",
|
1475
|
+
"libc",
|
1476
|
+
"percent-encoding",
|
1477
|
+
"pin-project-lite",
|
1478
|
+
"socket2 0.6.0",
|
1479
|
+
"tokio",
|
1480
|
+
"tower-service",
|
1481
|
+
"tracing",
|
1482
|
+
]
|
1483
|
+
|
1484
|
+
[[package]]
|
1485
|
+
name = "iana-time-zone"
|
1486
|
+
version = "0.1.63"
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1488
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
1489
|
+
dependencies = [
|
1490
|
+
"android_system_properties",
|
1491
|
+
"core-foundation-sys",
|
1492
|
+
"iana-time-zone-haiku",
|
1493
|
+
"js-sys",
|
1494
|
+
"log",
|
1495
|
+
"wasm-bindgen",
|
1496
|
+
"windows-core",
|
1497
|
+
]
|
1498
|
+
|
1499
|
+
[[package]]
|
1500
|
+
name = "iana-time-zone-haiku"
|
1501
|
+
version = "0.1.2"
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1503
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
1504
|
+
dependencies = [
|
1505
|
+
"cc",
|
1506
|
+
]
|
1507
|
+
|
1508
|
+
[[package]]
|
1509
|
+
name = "icu_collections"
|
1510
|
+
version = "2.0.0"
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1512
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
1513
|
+
dependencies = [
|
1514
|
+
"displaydoc",
|
1515
|
+
"potential_utf",
|
1516
|
+
"yoke",
|
1517
|
+
"zerofrom",
|
1518
|
+
"zerovec",
|
1519
|
+
]
|
1520
|
+
|
1521
|
+
[[package]]
|
1522
|
+
name = "icu_locale_core"
|
1523
|
+
version = "2.0.0"
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1525
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
1526
|
+
dependencies = [
|
1527
|
+
"displaydoc",
|
1528
|
+
"litemap",
|
1529
|
+
"tinystr",
|
1530
|
+
"writeable",
|
1531
|
+
"zerovec",
|
1532
|
+
]
|
1533
|
+
|
1534
|
+
[[package]]
|
1535
|
+
name = "icu_normalizer"
|
1536
|
+
version = "2.0.0"
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1538
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
1539
|
+
dependencies = [
|
1540
|
+
"displaydoc",
|
1541
|
+
"icu_collections",
|
1542
|
+
"icu_normalizer_data",
|
1543
|
+
"icu_properties",
|
1544
|
+
"icu_provider",
|
1545
|
+
"smallvec",
|
1546
|
+
"zerovec",
|
1547
|
+
]
|
1548
|
+
|
1549
|
+
[[package]]
|
1550
|
+
name = "icu_normalizer_data"
|
1551
|
+
version = "2.0.0"
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1553
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
1554
|
+
|
1555
|
+
[[package]]
|
1556
|
+
name = "icu_properties"
|
1557
|
+
version = "2.0.1"
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1559
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
1560
|
+
dependencies = [
|
1561
|
+
"displaydoc",
|
1562
|
+
"icu_collections",
|
1563
|
+
"icu_locale_core",
|
1564
|
+
"icu_properties_data",
|
1565
|
+
"icu_provider",
|
1566
|
+
"potential_utf",
|
1567
|
+
"zerotrie",
|
1568
|
+
"zerovec",
|
1569
|
+
]
|
1570
|
+
|
1571
|
+
[[package]]
|
1572
|
+
name = "icu_properties_data"
|
1573
|
+
version = "2.0.1"
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1575
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
1576
|
+
|
1577
|
+
[[package]]
|
1578
|
+
name = "icu_provider"
|
1579
|
+
version = "2.0.0"
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1581
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
1582
|
+
dependencies = [
|
1583
|
+
"displaydoc",
|
1584
|
+
"icu_locale_core",
|
1585
|
+
"stable_deref_trait",
|
1586
|
+
"tinystr",
|
1587
|
+
"writeable",
|
1588
|
+
"yoke",
|
1589
|
+
"zerofrom",
|
1590
|
+
"zerotrie",
|
1591
|
+
"zerovec",
|
1592
|
+
]
|
1593
|
+
|
1594
|
+
[[package]]
|
1595
|
+
name = "idna"
|
1596
|
+
version = "1.0.3"
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1598
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
1599
|
+
dependencies = [
|
1600
|
+
"idna_adapter",
|
1601
|
+
"smallvec",
|
1602
|
+
"utf8_iter",
|
1603
|
+
]
|
1604
|
+
|
1605
|
+
[[package]]
|
1606
|
+
name = "idna_adapter"
|
1607
|
+
version = "1.2.1"
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1609
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
1610
|
+
dependencies = [
|
1611
|
+
"icu_normalizer",
|
1612
|
+
"icu_properties",
|
1613
|
+
]
|
1614
|
+
|
1615
|
+
[[package]]
|
1616
|
+
name = "indexmap"
|
1617
|
+
version = "2.10.0"
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1619
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
1620
|
+
dependencies = [
|
1621
|
+
"equivalent",
|
1622
|
+
"hashbrown 0.15.4",
|
1623
|
+
]
|
1624
|
+
|
1625
|
+
[[package]]
|
1626
|
+
name = "io-uring"
|
1627
|
+
version = "0.7.9"
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1629
|
+
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
|
1630
|
+
dependencies = [
|
1631
|
+
"bitflags",
|
1632
|
+
"cfg-if",
|
1633
|
+
"libc",
|
1634
|
+
]
|
1635
|
+
|
1636
|
+
[[package]]
|
1637
|
+
name = "ipnet"
|
1638
|
+
version = "2.11.0"
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
1641
|
+
|
1642
|
+
[[package]]
|
1643
|
+
name = "iri-string"
|
1644
|
+
version = "0.7.8"
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1646
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
1647
|
+
dependencies = [
|
1648
|
+
"memchr",
|
1649
|
+
"serde",
|
1650
|
+
]
|
1651
|
+
|
1652
|
+
[[package]]
|
1653
|
+
name = "itertools"
|
1654
|
+
version = "0.12.1"
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1656
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
1657
|
+
dependencies = [
|
1658
|
+
"either",
|
1659
|
+
]
|
1660
|
+
|
1661
|
+
[[package]]
|
1662
|
+
name = "itoa"
|
1663
|
+
version = "1.0.15"
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1665
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1666
|
+
|
1667
|
+
[[package]]
|
1668
|
+
name = "jobserver"
|
1669
|
+
version = "0.1.33"
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1671
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
1672
|
+
dependencies = [
|
1673
|
+
"getrandom 0.3.3",
|
1674
|
+
"libc",
|
1675
|
+
]
|
1676
|
+
|
1677
|
+
[[package]]
|
1678
|
+
name = "js-sys"
|
1679
|
+
version = "0.3.77"
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1681
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
1682
|
+
dependencies = [
|
1683
|
+
"once_cell",
|
1684
|
+
"wasm-bindgen",
|
1685
|
+
]
|
1686
|
+
|
1687
|
+
[[package]]
|
1688
|
+
name = "jsonwebtoken"
|
1689
|
+
version = "9.3.1"
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1691
|
+
checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
|
1692
|
+
dependencies = [
|
1693
|
+
"base64 0.22.1",
|
1694
|
+
"js-sys",
|
1695
|
+
"pem",
|
1696
|
+
"ring",
|
1697
|
+
"serde",
|
1698
|
+
"serde_json",
|
1699
|
+
"simple_asn1",
|
1700
|
+
]
|
1701
|
+
|
1702
|
+
[[package]]
|
1703
|
+
name = "lazy_static"
|
1704
|
+
version = "1.5.0"
|
1705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1706
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
1707
|
+
|
1708
|
+
[[package]]
|
1709
|
+
name = "lazycell"
|
1710
|
+
version = "1.3.0"
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1712
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
1713
|
+
|
1714
|
+
[[package]]
|
1715
|
+
name = "libc"
|
1716
|
+
version = "0.2.174"
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1718
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
1719
|
+
|
1720
|
+
[[package]]
|
1721
|
+
name = "libloading"
|
1722
|
+
version = "0.8.8"
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1724
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
1725
|
+
dependencies = [
|
1726
|
+
"cfg-if",
|
1727
|
+
"windows-targets 0.53.3",
|
1728
|
+
]
|
1729
|
+
|
1730
|
+
[[package]]
|
1731
|
+
name = "libsqlite3-sys"
|
1732
|
+
version = "0.30.1"
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1734
|
+
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
|
1735
|
+
dependencies = [
|
1736
|
+
"cc",
|
1737
|
+
"pkg-config",
|
1738
|
+
"vcpkg",
|
1739
|
+
]
|
1740
|
+
|
1741
|
+
[[package]]
|
1742
|
+
name = "linux-raw-sys"
|
1743
|
+
version = "0.4.15"
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1745
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
1746
|
+
|
1747
|
+
[[package]]
|
1748
|
+
name = "litemap"
|
1749
|
+
version = "0.8.0"
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1751
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
1752
|
+
|
1753
|
+
[[package]]
|
1754
|
+
name = "lock_api"
|
1755
|
+
version = "0.4.13"
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1757
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
1758
|
+
dependencies = [
|
1759
|
+
"autocfg",
|
1760
|
+
"scopeguard",
|
1761
|
+
]
|
1762
|
+
|
1763
|
+
[[package]]
|
1764
|
+
name = "log"
|
1765
|
+
version = "0.4.27"
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1767
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
1768
|
+
|
1769
|
+
[[package]]
|
1770
|
+
name = "lru"
|
1771
|
+
version = "0.12.5"
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1773
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
1774
|
+
dependencies = [
|
1775
|
+
"hashbrown 0.15.4",
|
1776
|
+
]
|
1777
|
+
|
1778
|
+
[[package]]
|
1779
|
+
name = "lru-slab"
|
1780
|
+
version = "0.1.2"
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1782
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
1783
|
+
|
1784
|
+
[[package]]
|
1785
|
+
name = "magnus"
|
1786
|
+
version = "0.7.1"
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1788
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
1789
|
+
dependencies = [
|
1790
|
+
"magnus-macros",
|
1791
|
+
"rb-sys",
|
1792
|
+
"rb-sys-env",
|
1793
|
+
"seq-macro",
|
1794
|
+
]
|
1795
|
+
|
1796
|
+
[[package]]
|
1797
|
+
name = "magnus-macros"
|
1798
|
+
version = "0.6.0"
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1800
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1801
|
+
dependencies = [
|
1802
|
+
"proc-macro2",
|
1803
|
+
"quote",
|
1804
|
+
"syn",
|
1805
|
+
]
|
1806
|
+
|
1807
|
+
[[package]]
|
1808
|
+
name = "md-5"
|
1809
|
+
version = "0.10.6"
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1811
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
1812
|
+
dependencies = [
|
1813
|
+
"cfg-if",
|
1814
|
+
"digest",
|
1815
|
+
]
|
1816
|
+
|
1817
|
+
[[package]]
|
1818
|
+
name = "memchr"
|
1819
|
+
version = "2.7.5"
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1821
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
1822
|
+
|
1823
|
+
[[package]]
|
1824
|
+
name = "mime"
|
1825
|
+
version = "0.3.17"
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1827
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
1828
|
+
|
1829
|
+
[[package]]
|
1830
|
+
name = "mime_guess"
|
1831
|
+
version = "2.0.5"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
1834
|
+
dependencies = [
|
1835
|
+
"mime",
|
1836
|
+
"unicase",
|
1837
|
+
]
|
1838
|
+
|
1839
|
+
[[package]]
|
1840
|
+
name = "minimal-lexical"
|
1841
|
+
version = "0.2.1"
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1843
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1844
|
+
|
1845
|
+
[[package]]
|
1846
|
+
name = "miniz_oxide"
|
1847
|
+
version = "0.8.9"
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1849
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
1850
|
+
dependencies = [
|
1851
|
+
"adler2",
|
1852
|
+
]
|
1853
|
+
|
1854
|
+
[[package]]
|
1855
|
+
name = "mio"
|
1856
|
+
version = "1.0.4"
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1858
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
1859
|
+
dependencies = [
|
1860
|
+
"libc",
|
1861
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
1862
|
+
"windows-sys 0.59.0",
|
1863
|
+
]
|
1864
|
+
|
1865
|
+
[[package]]
|
1866
|
+
name = "nom"
|
1867
|
+
version = "7.1.3"
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1869
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
1870
|
+
dependencies = [
|
1871
|
+
"memchr",
|
1872
|
+
"minimal-lexical",
|
1873
|
+
]
|
1874
|
+
|
1875
|
+
[[package]]
|
1876
|
+
name = "num-bigint"
|
1877
|
+
version = "0.4.6"
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1879
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
1880
|
+
dependencies = [
|
1881
|
+
"num-integer",
|
1882
|
+
"num-traits",
|
1883
|
+
]
|
1884
|
+
|
1885
|
+
[[package]]
|
1886
|
+
name = "num-conv"
|
1887
|
+
version = "0.1.0"
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1889
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
1890
|
+
|
1891
|
+
[[package]]
|
1892
|
+
name = "num-integer"
|
1893
|
+
version = "0.1.46"
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1895
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
1896
|
+
dependencies = [
|
1897
|
+
"num-traits",
|
1898
|
+
]
|
1899
|
+
|
1900
|
+
[[package]]
|
1901
|
+
name = "num-traits"
|
1902
|
+
version = "0.2.19"
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
1905
|
+
dependencies = [
|
1906
|
+
"autocfg",
|
1907
|
+
]
|
1908
|
+
|
1909
|
+
[[package]]
|
1910
|
+
name = "object"
|
1911
|
+
version = "0.36.7"
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1913
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1914
|
+
dependencies = [
|
1915
|
+
"memchr",
|
1916
|
+
]
|
1917
|
+
|
1918
|
+
[[package]]
|
1919
|
+
name = "once_cell"
|
1920
|
+
version = "1.21.3"
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1922
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1923
|
+
|
1924
|
+
[[package]]
|
1925
|
+
name = "openssl-probe"
|
1926
|
+
version = "0.1.6"
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1928
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
1929
|
+
|
1930
|
+
[[package]]
|
1931
|
+
name = "outref"
|
1932
|
+
version = "0.5.2"
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1934
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
1935
|
+
|
1936
|
+
[[package]]
|
1937
|
+
name = "p256"
|
1938
|
+
version = "0.11.1"
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1940
|
+
checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
|
1941
|
+
dependencies = [
|
1942
|
+
"ecdsa",
|
1943
|
+
"elliptic-curve",
|
1944
|
+
"sha2",
|
1945
|
+
]
|
1946
|
+
|
1947
|
+
[[package]]
|
1948
|
+
name = "parking_lot"
|
1949
|
+
version = "0.12.4"
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1951
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
1952
|
+
dependencies = [
|
1953
|
+
"lock_api",
|
1954
|
+
"parking_lot_core",
|
1955
|
+
]
|
1956
|
+
|
1957
|
+
[[package]]
|
1958
|
+
name = "parking_lot_core"
|
1959
|
+
version = "0.9.11"
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1961
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
1962
|
+
dependencies = [
|
1963
|
+
"cfg-if",
|
1964
|
+
"libc",
|
1965
|
+
"redox_syscall",
|
1966
|
+
"smallvec",
|
1967
|
+
"windows-targets 0.52.6",
|
1968
|
+
]
|
1969
|
+
|
1970
|
+
[[package]]
|
1971
|
+
name = "pem"
|
1972
|
+
version = "3.0.5"
|
1973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1974
|
+
checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
|
1975
|
+
dependencies = [
|
1976
|
+
"base64 0.22.1",
|
1977
|
+
"serde",
|
1978
|
+
]
|
1979
|
+
|
1980
|
+
[[package]]
|
1981
|
+
name = "pem-rfc7468"
|
1982
|
+
version = "0.7.0"
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1984
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
1985
|
+
dependencies = [
|
1986
|
+
"base64ct",
|
1987
|
+
]
|
1988
|
+
|
1989
|
+
[[package]]
|
1990
|
+
name = "percent-encoding"
|
1991
|
+
version = "2.3.1"
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1994
|
+
|
1995
|
+
[[package]]
|
1996
|
+
name = "pin-project-lite"
|
1997
|
+
version = "0.2.16"
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1999
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
2000
|
+
|
2001
|
+
[[package]]
|
2002
|
+
name = "pin-utils"
|
2003
|
+
version = "0.1.0"
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2005
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
2006
|
+
|
2007
|
+
[[package]]
|
2008
|
+
name = "pkcs8"
|
2009
|
+
version = "0.9.0"
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2011
|
+
checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
|
2012
|
+
dependencies = [
|
2013
|
+
"der 0.6.1",
|
2014
|
+
"spki 0.6.0",
|
2015
|
+
]
|
2016
|
+
|
2017
|
+
[[package]]
|
2018
|
+
name = "pkcs8"
|
2019
|
+
version = "0.10.2"
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
2022
|
+
dependencies = [
|
2023
|
+
"der 0.7.10",
|
2024
|
+
"spki 0.7.3",
|
2025
|
+
]
|
2026
|
+
|
2027
|
+
[[package]]
|
2028
|
+
name = "pkg-config"
|
2029
|
+
version = "0.3.32"
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2031
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
2032
|
+
|
2033
|
+
[[package]]
|
2034
|
+
name = "potential_utf"
|
2035
|
+
version = "0.1.2"
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2037
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
2038
|
+
dependencies = [
|
2039
|
+
"zerovec",
|
2040
|
+
]
|
2041
|
+
|
2042
|
+
[[package]]
|
2043
|
+
name = "powerfmt"
|
2044
|
+
version = "0.2.0"
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2046
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
2047
|
+
|
2048
|
+
[[package]]
|
2049
|
+
name = "ppv-lite86"
|
2050
|
+
version = "0.2.21"
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2052
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
2053
|
+
dependencies = [
|
2054
|
+
"zerocopy",
|
2055
|
+
]
|
2056
|
+
|
2057
|
+
[[package]]
|
2058
|
+
name = "prettyplease"
|
2059
|
+
version = "0.2.36"
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2061
|
+
checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
|
2062
|
+
dependencies = [
|
2063
|
+
"proc-macro2",
|
2064
|
+
"syn",
|
2065
|
+
]
|
2066
|
+
|
2067
|
+
[[package]]
|
2068
|
+
name = "proc-macro2"
|
2069
|
+
version = "1.0.95"
|
2070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
2072
|
+
dependencies = [
|
2073
|
+
"unicode-ident",
|
2074
|
+
]
|
2075
|
+
|
2076
|
+
[[package]]
|
2077
|
+
name = "quinn"
|
2078
|
+
version = "0.11.8"
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2080
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
2081
|
+
dependencies = [
|
2082
|
+
"bytes",
|
2083
|
+
"cfg_aliases",
|
2084
|
+
"pin-project-lite",
|
2085
|
+
"quinn-proto",
|
2086
|
+
"quinn-udp",
|
2087
|
+
"rustc-hash 2.1.1",
|
2088
|
+
"rustls 0.23.31",
|
2089
|
+
"socket2 0.5.10",
|
2090
|
+
"thiserror 2.0.12",
|
2091
|
+
"tokio",
|
2092
|
+
"tracing",
|
2093
|
+
"web-time",
|
2094
|
+
]
|
2095
|
+
|
2096
|
+
[[package]]
|
2097
|
+
name = "quinn-proto"
|
2098
|
+
version = "0.11.12"
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2100
|
+
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
|
2101
|
+
dependencies = [
|
2102
|
+
"bytes",
|
2103
|
+
"getrandom 0.3.3",
|
2104
|
+
"lru-slab",
|
2105
|
+
"rand",
|
2106
|
+
"ring",
|
2107
|
+
"rustc-hash 2.1.1",
|
2108
|
+
"rustls 0.23.31",
|
2109
|
+
"rustls-pki-types",
|
2110
|
+
"slab",
|
2111
|
+
"thiserror 2.0.12",
|
2112
|
+
"tinyvec",
|
2113
|
+
"tracing",
|
2114
|
+
"web-time",
|
2115
|
+
]
|
2116
|
+
|
2117
|
+
[[package]]
|
2118
|
+
name = "quinn-udp"
|
2119
|
+
version = "0.5.13"
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2121
|
+
checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
|
2122
|
+
dependencies = [
|
2123
|
+
"cfg_aliases",
|
2124
|
+
"libc",
|
2125
|
+
"once_cell",
|
2126
|
+
"socket2 0.5.10",
|
2127
|
+
"tracing",
|
2128
|
+
"windows-sys 0.59.0",
|
2129
|
+
]
|
2130
|
+
|
2131
|
+
[[package]]
|
2132
|
+
name = "quote"
|
2133
|
+
version = "1.0.40"
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2135
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
2136
|
+
dependencies = [
|
2137
|
+
"proc-macro2",
|
2138
|
+
]
|
2139
|
+
|
2140
|
+
[[package]]
|
2141
|
+
name = "r-efi"
|
2142
|
+
version = "5.3.0"
|
2143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2144
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
2145
|
+
|
2146
|
+
[[package]]
|
2147
|
+
name = "rand"
|
2148
|
+
version = "0.9.2"
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2150
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
2151
|
+
dependencies = [
|
2152
|
+
"rand_chacha",
|
2153
|
+
"rand_core 0.9.3",
|
2154
|
+
]
|
2155
|
+
|
2156
|
+
[[package]]
|
2157
|
+
name = "rand_chacha"
|
2158
|
+
version = "0.9.0"
|
2159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2160
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
2161
|
+
dependencies = [
|
2162
|
+
"ppv-lite86",
|
2163
|
+
"rand_core 0.9.3",
|
2164
|
+
]
|
2165
|
+
|
2166
|
+
[[package]]
|
2167
|
+
name = "rand_core"
|
2168
|
+
version = "0.6.4"
|
2169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2170
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2171
|
+
dependencies = [
|
2172
|
+
"getrandom 0.2.16",
|
2173
|
+
]
|
2174
|
+
|
2175
|
+
[[package]]
|
2176
|
+
name = "rand_core"
|
2177
|
+
version = "0.9.3"
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2179
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
2180
|
+
dependencies = [
|
2181
|
+
"getrandom 0.3.3",
|
2182
|
+
]
|
2183
|
+
|
2184
|
+
[[package]]
|
2185
|
+
name = "rb-sys"
|
2186
|
+
version = "0.9.116"
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2188
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
2189
|
+
dependencies = [
|
2190
|
+
"rb-sys-build",
|
2191
|
+
]
|
2192
|
+
|
2193
|
+
[[package]]
|
2194
|
+
name = "rb-sys-build"
|
2195
|
+
version = "0.9.116"
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2197
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
2198
|
+
dependencies = [
|
2199
|
+
"bindgen",
|
2200
|
+
"lazy_static",
|
2201
|
+
"proc-macro2",
|
2202
|
+
"quote",
|
2203
|
+
"regex",
|
2204
|
+
"shell-words",
|
2205
|
+
"syn",
|
2206
|
+
]
|
2207
|
+
|
2208
|
+
[[package]]
|
2209
|
+
name = "rb-sys-env"
|
2210
|
+
version = "0.1.2"
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2212
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
2213
|
+
|
2214
|
+
[[package]]
|
2215
|
+
name = "redox_syscall"
|
2216
|
+
version = "0.5.17"
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2218
|
+
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
|
2219
|
+
dependencies = [
|
2220
|
+
"bitflags",
|
2221
|
+
]
|
2222
|
+
|
2223
|
+
[[package]]
|
2224
|
+
name = "regex"
|
2225
|
+
version = "1.11.1"
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2227
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
2228
|
+
dependencies = [
|
2229
|
+
"aho-corasick",
|
2230
|
+
"memchr",
|
2231
|
+
"regex-automata",
|
2232
|
+
"regex-syntax",
|
2233
|
+
]
|
2234
|
+
|
2235
|
+
[[package]]
|
2236
|
+
name = "regex-automata"
|
2237
|
+
version = "0.4.9"
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2239
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
2240
|
+
dependencies = [
|
2241
|
+
"aho-corasick",
|
2242
|
+
"memchr",
|
2243
|
+
"regex-syntax",
|
2244
|
+
]
|
2245
|
+
|
2246
|
+
[[package]]
|
2247
|
+
name = "regex-lite"
|
2248
|
+
version = "0.1.6"
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2250
|
+
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
|
2251
|
+
|
2252
|
+
[[package]]
|
2253
|
+
name = "regex-syntax"
|
2254
|
+
version = "0.8.5"
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2257
|
+
|
2258
|
+
[[package]]
|
2259
|
+
name = "reqwest"
|
2260
|
+
version = "0.12.22"
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
+
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
|
2263
|
+
dependencies = [
|
2264
|
+
"base64 0.22.1",
|
2265
|
+
"bytes",
|
2266
|
+
"encoding_rs",
|
2267
|
+
"futures-core",
|
2268
|
+
"futures-util",
|
2269
|
+
"http 1.3.1",
|
2270
|
+
"http-body 1.0.1",
|
2271
|
+
"http-body-util",
|
2272
|
+
"hyper 1.6.0",
|
2273
|
+
"hyper-rustls 0.27.7",
|
2274
|
+
"hyper-util",
|
2275
|
+
"js-sys",
|
2276
|
+
"log",
|
2277
|
+
"mime",
|
2278
|
+
"mime_guess",
|
2279
|
+
"percent-encoding",
|
2280
|
+
"pin-project-lite",
|
2281
|
+
"quinn",
|
2282
|
+
"rustls 0.23.31",
|
2283
|
+
"rustls-pki-types",
|
2284
|
+
"serde",
|
2285
|
+
"serde_json",
|
2286
|
+
"serde_urlencoded",
|
2287
|
+
"sync_wrapper",
|
2288
|
+
"tokio",
|
2289
|
+
"tokio-rustls 0.26.2",
|
2290
|
+
"tokio-util",
|
2291
|
+
"tower",
|
2292
|
+
"tower-http",
|
2293
|
+
"tower-service",
|
2294
|
+
"url",
|
2295
|
+
"wasm-bindgen",
|
2296
|
+
"wasm-bindgen-futures",
|
2297
|
+
"wasm-streams",
|
2298
|
+
"web-sys",
|
2299
|
+
"webpki-roots 1.0.2",
|
2300
|
+
]
|
2301
|
+
|
2302
|
+
[[package]]
|
2303
|
+
name = "reqwest-middleware"
|
2304
|
+
version = "0.4.2"
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2306
|
+
checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e"
|
2307
|
+
dependencies = [
|
2308
|
+
"anyhow",
|
2309
|
+
"async-trait",
|
2310
|
+
"http 1.3.1",
|
2311
|
+
"reqwest",
|
2312
|
+
"serde",
|
2313
|
+
"thiserror 1.0.69",
|
2314
|
+
"tower-service",
|
2315
|
+
]
|
2316
|
+
|
2317
|
+
[[package]]
|
2318
|
+
name = "rfc6979"
|
2319
|
+
version = "0.3.1"
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2321
|
+
checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
|
2322
|
+
dependencies = [
|
2323
|
+
"crypto-bigint 0.4.9",
|
2324
|
+
"hmac",
|
2325
|
+
"zeroize",
|
2326
|
+
]
|
2327
|
+
|
2328
|
+
[[package]]
|
2329
|
+
name = "ring"
|
2330
|
+
version = "0.17.14"
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2332
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
2333
|
+
dependencies = [
|
2334
|
+
"cc",
|
2335
|
+
"cfg-if",
|
2336
|
+
"getrandom 0.2.16",
|
2337
|
+
"libc",
|
2338
|
+
"untrusted",
|
2339
|
+
"windows-sys 0.52.0",
|
2340
|
+
]
|
2341
|
+
|
2342
|
+
[[package]]
|
2343
|
+
name = "rusqlite"
|
2344
|
+
version = "0.32.1"
|
2345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2346
|
+
checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
|
2347
|
+
dependencies = [
|
2348
|
+
"bitflags",
|
2349
|
+
"fallible-iterator",
|
2350
|
+
"fallible-streaming-iterator",
|
2351
|
+
"hashlink",
|
2352
|
+
"libsqlite3-sys",
|
2353
|
+
"smallvec",
|
2354
|
+
]
|
2355
|
+
|
2356
|
+
[[package]]
|
2357
|
+
name = "rustc-demangle"
|
2358
|
+
version = "0.1.26"
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
2361
|
+
|
2362
|
+
[[package]]
|
2363
|
+
name = "rustc-hash"
|
2364
|
+
version = "1.1.0"
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2366
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
2367
|
+
|
2368
|
+
[[package]]
|
2369
|
+
name = "rustc-hash"
|
2370
|
+
version = "2.1.1"
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2372
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
2373
|
+
|
2374
|
+
[[package]]
|
2375
|
+
name = "rustc_version"
|
2376
|
+
version = "0.4.1"
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2378
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
2379
|
+
dependencies = [
|
2380
|
+
"semver",
|
2381
|
+
]
|
2382
|
+
|
2383
|
+
[[package]]
|
2384
|
+
name = "rustix"
|
2385
|
+
version = "0.38.44"
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2387
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
2388
|
+
dependencies = [
|
2389
|
+
"bitflags",
|
2390
|
+
"errno",
|
2391
|
+
"libc",
|
2392
|
+
"linux-raw-sys",
|
2393
|
+
"windows-sys 0.59.0",
|
2394
|
+
]
|
2395
|
+
|
2396
|
+
[[package]]
|
2397
|
+
name = "rustls"
|
2398
|
+
version = "0.21.12"
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2400
|
+
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
2401
|
+
dependencies = [
|
2402
|
+
"log",
|
2403
|
+
"ring",
|
2404
|
+
"rustls-webpki 0.101.7",
|
2405
|
+
"sct",
|
2406
|
+
]
|
2407
|
+
|
2408
|
+
[[package]]
|
2409
|
+
name = "rustls"
|
2410
|
+
version = "0.23.31"
|
2411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2412
|
+
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
|
2413
|
+
dependencies = [
|
2414
|
+
"aws-lc-rs",
|
2415
|
+
"log",
|
2416
|
+
"once_cell",
|
2417
|
+
"ring",
|
2418
|
+
"rustls-pki-types",
|
2419
|
+
"rustls-webpki 0.103.4",
|
2420
|
+
"subtle",
|
2421
|
+
"zeroize",
|
2422
|
+
]
|
2423
|
+
|
2424
|
+
[[package]]
|
2425
|
+
name = "rustls-native-certs"
|
2426
|
+
version = "0.6.3"
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2428
|
+
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
|
2429
|
+
dependencies = [
|
2430
|
+
"openssl-probe",
|
2431
|
+
"rustls-pemfile",
|
2432
|
+
"schannel",
|
2433
|
+
"security-framework 2.11.1",
|
2434
|
+
]
|
2435
|
+
|
2436
|
+
[[package]]
|
2437
|
+
name = "rustls-native-certs"
|
2438
|
+
version = "0.8.1"
|
2439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2440
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
2441
|
+
dependencies = [
|
2442
|
+
"openssl-probe",
|
2443
|
+
"rustls-pki-types",
|
2444
|
+
"schannel",
|
2445
|
+
"security-framework 3.2.0",
|
2446
|
+
]
|
2447
|
+
|
2448
|
+
[[package]]
|
2449
|
+
name = "rustls-pemfile"
|
2450
|
+
version = "1.0.4"
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2452
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
2453
|
+
dependencies = [
|
2454
|
+
"base64 0.21.7",
|
2455
|
+
]
|
2456
|
+
|
2457
|
+
[[package]]
|
2458
|
+
name = "rustls-pki-types"
|
2459
|
+
version = "1.12.0"
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2461
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
2462
|
+
dependencies = [
|
2463
|
+
"web-time",
|
2464
|
+
"zeroize",
|
2465
|
+
]
|
2466
|
+
|
2467
|
+
[[package]]
|
2468
|
+
name = "rustls-webpki"
|
2469
|
+
version = "0.101.7"
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2471
|
+
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
2472
|
+
dependencies = [
|
2473
|
+
"ring",
|
2474
|
+
"untrusted",
|
2475
|
+
]
|
2476
|
+
|
2477
|
+
[[package]]
|
2478
|
+
name = "rustls-webpki"
|
2479
|
+
version = "0.103.4"
|
2480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2481
|
+
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
2482
|
+
dependencies = [
|
2483
|
+
"aws-lc-rs",
|
2484
|
+
"ring",
|
2485
|
+
"rustls-pki-types",
|
2486
|
+
"untrusted",
|
2487
|
+
]
|
2488
|
+
|
2489
|
+
[[package]]
|
2490
|
+
name = "rustversion"
|
2491
|
+
version = "1.0.21"
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2493
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
2494
|
+
|
2495
|
+
[[package]]
|
2496
|
+
name = "ryu"
|
2497
|
+
version = "1.0.20"
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2499
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
2500
|
+
|
2501
|
+
[[package]]
|
2502
|
+
name = "schannel"
|
2503
|
+
version = "0.1.27"
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2505
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
2506
|
+
dependencies = [
|
2507
|
+
"windows-sys 0.59.0",
|
2508
|
+
]
|
2509
|
+
|
2510
|
+
[[package]]
|
2511
|
+
name = "scopeguard"
|
2512
|
+
version = "1.2.0"
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2514
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
2515
|
+
|
2516
|
+
[[package]]
|
2517
|
+
name = "sct"
|
2518
|
+
version = "0.7.1"
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2520
|
+
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
2521
|
+
dependencies = [
|
2522
|
+
"ring",
|
2523
|
+
"untrusted",
|
2524
|
+
]
|
2525
|
+
|
2526
|
+
[[package]]
|
2527
|
+
name = "sec1"
|
2528
|
+
version = "0.3.0"
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2530
|
+
checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
|
2531
|
+
dependencies = [
|
2532
|
+
"base16ct",
|
2533
|
+
"der 0.6.1",
|
2534
|
+
"generic-array",
|
2535
|
+
"pkcs8 0.9.0",
|
2536
|
+
"subtle",
|
2537
|
+
"zeroize",
|
2538
|
+
]
|
2539
|
+
|
2540
|
+
[[package]]
|
2541
|
+
name = "security-framework"
|
2542
|
+
version = "2.11.1"
|
2543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2544
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
2545
|
+
dependencies = [
|
2546
|
+
"bitflags",
|
2547
|
+
"core-foundation 0.9.4",
|
2548
|
+
"core-foundation-sys",
|
2549
|
+
"libc",
|
2550
|
+
"security-framework-sys",
|
2551
|
+
]
|
2552
|
+
|
2553
|
+
[[package]]
|
2554
|
+
name = "security-framework"
|
2555
|
+
version = "3.2.0"
|
2556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2557
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
2558
|
+
dependencies = [
|
2559
|
+
"bitflags",
|
2560
|
+
"core-foundation 0.10.1",
|
2561
|
+
"core-foundation-sys",
|
2562
|
+
"libc",
|
2563
|
+
"security-framework-sys",
|
2564
|
+
]
|
2565
|
+
|
2566
|
+
[[package]]
|
2567
|
+
name = "security-framework-sys"
|
2568
|
+
version = "2.14.0"
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2570
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
2571
|
+
dependencies = [
|
2572
|
+
"core-foundation-sys",
|
2573
|
+
"libc",
|
2574
|
+
]
|
2575
|
+
|
2576
|
+
[[package]]
|
2577
|
+
name = "semver"
|
2578
|
+
version = "1.0.26"
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2580
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
2581
|
+
|
2582
|
+
[[package]]
|
2583
|
+
name = "seq-macro"
|
2584
|
+
version = "0.3.6"
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2586
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
2587
|
+
|
2588
|
+
[[package]]
|
2589
|
+
name = "serde"
|
2590
|
+
version = "1.0.219"
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2592
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
2593
|
+
dependencies = [
|
2594
|
+
"serde_derive",
|
2595
|
+
]
|
2596
|
+
|
2597
|
+
[[package]]
|
2598
|
+
name = "serde_derive"
|
2599
|
+
version = "1.0.219"
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2601
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
2602
|
+
dependencies = [
|
2603
|
+
"proc-macro2",
|
2604
|
+
"quote",
|
2605
|
+
"syn",
|
2606
|
+
]
|
2607
|
+
|
2608
|
+
[[package]]
|
2609
|
+
name = "serde_json"
|
2610
|
+
version = "1.0.141"
|
2611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2612
|
+
checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
|
2613
|
+
dependencies = [
|
2614
|
+
"itoa",
|
2615
|
+
"memchr",
|
2616
|
+
"ryu",
|
2617
|
+
"serde",
|
2618
|
+
]
|
2619
|
+
|
2620
|
+
[[package]]
|
2621
|
+
name = "serde_urlencoded"
|
2622
|
+
version = "0.7.1"
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2624
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2625
|
+
dependencies = [
|
2626
|
+
"form_urlencoded",
|
2627
|
+
"itoa",
|
2628
|
+
"ryu",
|
2629
|
+
"serde",
|
2630
|
+
]
|
2631
|
+
|
2632
|
+
[[package]]
|
2633
|
+
name = "sha1"
|
2634
|
+
version = "0.10.6"
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2636
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
2637
|
+
dependencies = [
|
2638
|
+
"cfg-if",
|
2639
|
+
"cpufeatures",
|
2640
|
+
"digest",
|
2641
|
+
]
|
2642
|
+
|
2643
|
+
[[package]]
|
2644
|
+
name = "sha2"
|
2645
|
+
version = "0.10.9"
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2647
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
2648
|
+
dependencies = [
|
2649
|
+
"cfg-if",
|
2650
|
+
"cpufeatures",
|
2651
|
+
"digest",
|
2652
|
+
]
|
2653
|
+
|
2654
|
+
[[package]]
|
2655
|
+
name = "shell-words"
|
2656
|
+
version = "1.1.0"
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2658
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
2659
|
+
|
2660
|
+
[[package]]
|
2661
|
+
name = "shlex"
|
2662
|
+
version = "1.3.0"
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2664
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
2665
|
+
|
2666
|
+
[[package]]
|
2667
|
+
name = "signal-hook-registry"
|
2668
|
+
version = "1.4.5"
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2670
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
2671
|
+
dependencies = [
|
2672
|
+
"libc",
|
2673
|
+
]
|
2674
|
+
|
2675
|
+
[[package]]
|
2676
|
+
name = "signature"
|
2677
|
+
version = "1.6.4"
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2679
|
+
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
|
2680
|
+
dependencies = [
|
2681
|
+
"digest",
|
2682
|
+
"rand_core 0.6.4",
|
2683
|
+
]
|
2684
|
+
|
2685
|
+
[[package]]
|
2686
|
+
name = "simple_asn1"
|
2687
|
+
version = "0.6.3"
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2689
|
+
checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
|
2690
|
+
dependencies = [
|
2691
|
+
"num-bigint",
|
2692
|
+
"num-traits",
|
2693
|
+
"thiserror 2.0.12",
|
2694
|
+
"time",
|
2695
|
+
]
|
2696
|
+
|
2697
|
+
[[package]]
|
2698
|
+
name = "slab"
|
2699
|
+
version = "0.4.10"
|
2700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2701
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
2702
|
+
|
2703
|
+
[[package]]
|
2704
|
+
name = "smallvec"
|
2705
|
+
version = "1.15.1"
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2707
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
2708
|
+
|
2709
|
+
[[package]]
|
2710
|
+
name = "socket2"
|
2711
|
+
version = "0.5.10"
|
2712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2713
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
2714
|
+
dependencies = [
|
2715
|
+
"libc",
|
2716
|
+
"windows-sys 0.52.0",
|
2717
|
+
]
|
2718
|
+
|
2719
|
+
[[package]]
|
2720
|
+
name = "socket2"
|
2721
|
+
version = "0.6.0"
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2723
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
2724
|
+
dependencies = [
|
2725
|
+
"libc",
|
2726
|
+
"windows-sys 0.59.0",
|
2727
|
+
]
|
2728
|
+
|
2729
|
+
[[package]]
|
2730
|
+
name = "spki"
|
2731
|
+
version = "0.6.0"
|
2732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2733
|
+
checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
|
2734
|
+
dependencies = [
|
2735
|
+
"base64ct",
|
2736
|
+
"der 0.6.1",
|
2737
|
+
]
|
2738
|
+
|
2739
|
+
[[package]]
|
2740
|
+
name = "spki"
|
2741
|
+
version = "0.7.3"
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2743
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
2744
|
+
dependencies = [
|
2745
|
+
"base64ct",
|
2746
|
+
"der 0.7.10",
|
2747
|
+
]
|
2748
|
+
|
2749
|
+
[[package]]
|
2750
|
+
name = "stable_deref_trait"
|
2751
|
+
version = "1.2.0"
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2753
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2754
|
+
|
2755
|
+
[[package]]
|
2756
|
+
name = "strum"
|
2757
|
+
version = "0.27.2"
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2759
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
2760
|
+
|
2761
|
+
[[package]]
|
2762
|
+
name = "strum_macros"
|
2763
|
+
version = "0.27.2"
|
2764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2765
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
2766
|
+
dependencies = [
|
2767
|
+
"heck",
|
2768
|
+
"proc-macro2",
|
2769
|
+
"quote",
|
2770
|
+
"syn",
|
2771
|
+
]
|
2772
|
+
|
2773
|
+
[[package]]
|
2774
|
+
name = "subtle"
|
2775
|
+
version = "2.6.1"
|
2776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2777
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2778
|
+
|
2779
|
+
[[package]]
|
2780
|
+
name = "syn"
|
2781
|
+
version = "2.0.104"
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2783
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
2784
|
+
dependencies = [
|
2785
|
+
"proc-macro2",
|
2786
|
+
"quote",
|
2787
|
+
"unicode-ident",
|
2788
|
+
]
|
2789
|
+
|
2790
|
+
[[package]]
|
2791
|
+
name = "sync_wrapper"
|
2792
|
+
version = "1.0.2"
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2794
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
2795
|
+
dependencies = [
|
2796
|
+
"futures-core",
|
2797
|
+
]
|
2798
|
+
|
2799
|
+
[[package]]
|
2800
|
+
name = "synstructure"
|
2801
|
+
version = "0.13.2"
|
2802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2803
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
2804
|
+
dependencies = [
|
2805
|
+
"proc-macro2",
|
2806
|
+
"quote",
|
2807
|
+
"syn",
|
2808
|
+
]
|
2809
|
+
|
2810
|
+
[[package]]
|
2811
|
+
name = "taskchampion"
|
2812
|
+
version = "0.1.0"
|
2813
|
+
dependencies = [
|
2814
|
+
"chrono",
|
2815
|
+
"magnus",
|
2816
|
+
"rb-sys",
|
2817
|
+
"taskchampion 2.0.3",
|
2818
|
+
"uuid",
|
2819
|
+
]
|
2820
|
+
|
2821
|
+
[[package]]
|
2822
|
+
name = "taskchampion"
|
2823
|
+
version = "2.0.3"
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2825
|
+
checksum = "b010f5ebe51e88ae490691ed2a43b699e3468c8e3838e244accd8526aca7751b"
|
2826
|
+
dependencies = [
|
2827
|
+
"anyhow",
|
2828
|
+
"aws-config",
|
2829
|
+
"aws-credential-types",
|
2830
|
+
"aws-sdk-s3",
|
2831
|
+
"byteorder",
|
2832
|
+
"chrono",
|
2833
|
+
"flate2",
|
2834
|
+
"google-cloud-storage",
|
2835
|
+
"log",
|
2836
|
+
"ring",
|
2837
|
+
"rusqlite",
|
2838
|
+
"serde",
|
2839
|
+
"serde_json",
|
2840
|
+
"strum",
|
2841
|
+
"strum_macros",
|
2842
|
+
"thiserror 2.0.12",
|
2843
|
+
"tokio",
|
2844
|
+
"ureq",
|
2845
|
+
"url",
|
2846
|
+
"uuid",
|
2847
|
+
]
|
2848
|
+
|
2849
|
+
[[package]]
|
2850
|
+
name = "thiserror"
|
2851
|
+
version = "1.0.69"
|
2852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2853
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
2854
|
+
dependencies = [
|
2855
|
+
"thiserror-impl 1.0.69",
|
2856
|
+
]
|
2857
|
+
|
2858
|
+
[[package]]
|
2859
|
+
name = "thiserror"
|
2860
|
+
version = "2.0.12"
|
2861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2862
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
2863
|
+
dependencies = [
|
2864
|
+
"thiserror-impl 2.0.12",
|
2865
|
+
]
|
2866
|
+
|
2867
|
+
[[package]]
|
2868
|
+
name = "thiserror-impl"
|
2869
|
+
version = "1.0.69"
|
2870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2871
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
2872
|
+
dependencies = [
|
2873
|
+
"proc-macro2",
|
2874
|
+
"quote",
|
2875
|
+
"syn",
|
2876
|
+
]
|
2877
|
+
|
2878
|
+
[[package]]
|
2879
|
+
name = "thiserror-impl"
|
2880
|
+
version = "2.0.12"
|
2881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2882
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
2883
|
+
dependencies = [
|
2884
|
+
"proc-macro2",
|
2885
|
+
"quote",
|
2886
|
+
"syn",
|
2887
|
+
]
|
2888
|
+
|
2889
|
+
[[package]]
|
2890
|
+
name = "time"
|
2891
|
+
version = "0.3.41"
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2893
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
2894
|
+
dependencies = [
|
2895
|
+
"deranged",
|
2896
|
+
"itoa",
|
2897
|
+
"num-conv",
|
2898
|
+
"powerfmt",
|
2899
|
+
"serde",
|
2900
|
+
"time-core",
|
2901
|
+
"time-macros",
|
2902
|
+
]
|
2903
|
+
|
2904
|
+
[[package]]
|
2905
|
+
name = "time-core"
|
2906
|
+
version = "0.1.4"
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2908
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
2909
|
+
|
2910
|
+
[[package]]
|
2911
|
+
name = "time-macros"
|
2912
|
+
version = "0.2.22"
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2914
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
2915
|
+
dependencies = [
|
2916
|
+
"num-conv",
|
2917
|
+
"time-core",
|
2918
|
+
]
|
2919
|
+
|
2920
|
+
[[package]]
|
2921
|
+
name = "tinystr"
|
2922
|
+
version = "0.8.1"
|
2923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2924
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
2925
|
+
dependencies = [
|
2926
|
+
"displaydoc",
|
2927
|
+
"zerovec",
|
2928
|
+
]
|
2929
|
+
|
2930
|
+
[[package]]
|
2931
|
+
name = "tinyvec"
|
2932
|
+
version = "1.9.0"
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2934
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
2935
|
+
dependencies = [
|
2936
|
+
"tinyvec_macros",
|
2937
|
+
]
|
2938
|
+
|
2939
|
+
[[package]]
|
2940
|
+
name = "tinyvec_macros"
|
2941
|
+
version = "0.1.1"
|
2942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2943
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
2944
|
+
|
2945
|
+
[[package]]
|
2946
|
+
name = "tokio"
|
2947
|
+
version = "1.47.0"
|
2948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2949
|
+
checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35"
|
2950
|
+
dependencies = [
|
2951
|
+
"backtrace",
|
2952
|
+
"bytes",
|
2953
|
+
"io-uring",
|
2954
|
+
"libc",
|
2955
|
+
"mio",
|
2956
|
+
"parking_lot",
|
2957
|
+
"pin-project-lite",
|
2958
|
+
"signal-hook-registry",
|
2959
|
+
"slab",
|
2960
|
+
"socket2 0.6.0",
|
2961
|
+
"tokio-macros",
|
2962
|
+
"windows-sys 0.59.0",
|
2963
|
+
]
|
2964
|
+
|
2965
|
+
[[package]]
|
2966
|
+
name = "tokio-macros"
|
2967
|
+
version = "2.5.0"
|
2968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2969
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
2970
|
+
dependencies = [
|
2971
|
+
"proc-macro2",
|
2972
|
+
"quote",
|
2973
|
+
"syn",
|
2974
|
+
]
|
2975
|
+
|
2976
|
+
[[package]]
|
2977
|
+
name = "tokio-rustls"
|
2978
|
+
version = "0.24.1"
|
2979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2980
|
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
2981
|
+
dependencies = [
|
2982
|
+
"rustls 0.21.12",
|
2983
|
+
"tokio",
|
2984
|
+
]
|
2985
|
+
|
2986
|
+
[[package]]
|
2987
|
+
name = "tokio-rustls"
|
2988
|
+
version = "0.26.2"
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2990
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
2991
|
+
dependencies = [
|
2992
|
+
"rustls 0.23.31",
|
2993
|
+
"tokio",
|
2994
|
+
]
|
2995
|
+
|
2996
|
+
[[package]]
|
2997
|
+
name = "tokio-util"
|
2998
|
+
version = "0.7.15"
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3000
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
3001
|
+
dependencies = [
|
3002
|
+
"bytes",
|
3003
|
+
"futures-core",
|
3004
|
+
"futures-sink",
|
3005
|
+
"pin-project-lite",
|
3006
|
+
"tokio",
|
3007
|
+
]
|
3008
|
+
|
3009
|
+
[[package]]
|
3010
|
+
name = "tower"
|
3011
|
+
version = "0.5.2"
|
3012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3013
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
3014
|
+
dependencies = [
|
3015
|
+
"futures-core",
|
3016
|
+
"futures-util",
|
3017
|
+
"pin-project-lite",
|
3018
|
+
"sync_wrapper",
|
3019
|
+
"tokio",
|
3020
|
+
"tower-layer",
|
3021
|
+
"tower-service",
|
3022
|
+
]
|
3023
|
+
|
3024
|
+
[[package]]
|
3025
|
+
name = "tower-http"
|
3026
|
+
version = "0.6.6"
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3028
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
3029
|
+
dependencies = [
|
3030
|
+
"bitflags",
|
3031
|
+
"bytes",
|
3032
|
+
"futures-util",
|
3033
|
+
"http 1.3.1",
|
3034
|
+
"http-body 1.0.1",
|
3035
|
+
"iri-string",
|
3036
|
+
"pin-project-lite",
|
3037
|
+
"tower",
|
3038
|
+
"tower-layer",
|
3039
|
+
"tower-service",
|
3040
|
+
]
|
3041
|
+
|
3042
|
+
[[package]]
|
3043
|
+
name = "tower-layer"
|
3044
|
+
version = "0.3.3"
|
3045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3046
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
3047
|
+
|
3048
|
+
[[package]]
|
3049
|
+
name = "tower-service"
|
3050
|
+
version = "0.3.3"
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3052
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
3053
|
+
|
3054
|
+
[[package]]
|
3055
|
+
name = "tracing"
|
3056
|
+
version = "0.1.41"
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3058
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
3059
|
+
dependencies = [
|
3060
|
+
"pin-project-lite",
|
3061
|
+
"tracing-attributes",
|
3062
|
+
"tracing-core",
|
3063
|
+
]
|
3064
|
+
|
3065
|
+
[[package]]
|
3066
|
+
name = "tracing-attributes"
|
3067
|
+
version = "0.1.30"
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3069
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
3070
|
+
dependencies = [
|
3071
|
+
"proc-macro2",
|
3072
|
+
"quote",
|
3073
|
+
"syn",
|
3074
|
+
]
|
3075
|
+
|
3076
|
+
[[package]]
|
3077
|
+
name = "tracing-core"
|
3078
|
+
version = "0.1.34"
|
3079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3080
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
3081
|
+
dependencies = [
|
3082
|
+
"once_cell",
|
3083
|
+
]
|
3084
|
+
|
3085
|
+
[[package]]
|
3086
|
+
name = "try-lock"
|
3087
|
+
version = "0.2.5"
|
3088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3089
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
3090
|
+
|
3091
|
+
[[package]]
|
3092
|
+
name = "typenum"
|
3093
|
+
version = "1.18.0"
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3095
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
3096
|
+
|
3097
|
+
[[package]]
|
3098
|
+
name = "unicase"
|
3099
|
+
version = "2.8.1"
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3101
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
3102
|
+
|
3103
|
+
[[package]]
|
3104
|
+
name = "unicode-ident"
|
3105
|
+
version = "1.0.18"
|
3106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3107
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
3108
|
+
|
3109
|
+
[[package]]
|
3110
|
+
name = "untrusted"
|
3111
|
+
version = "0.9.0"
|
3112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3113
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
3114
|
+
|
3115
|
+
[[package]]
|
3116
|
+
name = "ureq"
|
3117
|
+
version = "2.12.1"
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3119
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
3120
|
+
dependencies = [
|
3121
|
+
"base64 0.22.1",
|
3122
|
+
"flate2",
|
3123
|
+
"log",
|
3124
|
+
"once_cell",
|
3125
|
+
"rustls 0.23.31",
|
3126
|
+
"rustls-pki-types",
|
3127
|
+
"url",
|
3128
|
+
"webpki-roots 0.26.11",
|
3129
|
+
]
|
3130
|
+
|
3131
|
+
[[package]]
|
3132
|
+
name = "url"
|
3133
|
+
version = "2.5.4"
|
3134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3135
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
3136
|
+
dependencies = [
|
3137
|
+
"form_urlencoded",
|
3138
|
+
"idna",
|
3139
|
+
"percent-encoding",
|
3140
|
+
]
|
3141
|
+
|
3142
|
+
[[package]]
|
3143
|
+
name = "urlencoding"
|
3144
|
+
version = "2.1.3"
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3146
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
3147
|
+
|
3148
|
+
[[package]]
|
3149
|
+
name = "utf8_iter"
|
3150
|
+
version = "1.0.4"
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3152
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
3153
|
+
|
3154
|
+
[[package]]
|
3155
|
+
name = "uuid"
|
3156
|
+
version = "1.17.0"
|
3157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3158
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
3159
|
+
dependencies = [
|
3160
|
+
"getrandom 0.3.3",
|
3161
|
+
"js-sys",
|
3162
|
+
"serde",
|
3163
|
+
"wasm-bindgen",
|
3164
|
+
]
|
3165
|
+
|
3166
|
+
[[package]]
|
3167
|
+
name = "vcpkg"
|
3168
|
+
version = "0.2.15"
|
3169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3170
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
3171
|
+
|
3172
|
+
[[package]]
|
3173
|
+
name = "version_check"
|
3174
|
+
version = "0.9.5"
|
3175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3176
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
3177
|
+
|
3178
|
+
[[package]]
|
3179
|
+
name = "vsimd"
|
3180
|
+
version = "0.8.0"
|
3181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3182
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
3183
|
+
|
3184
|
+
[[package]]
|
3185
|
+
name = "want"
|
3186
|
+
version = "0.3.1"
|
3187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3188
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
3189
|
+
dependencies = [
|
3190
|
+
"try-lock",
|
3191
|
+
]
|
3192
|
+
|
3193
|
+
[[package]]
|
3194
|
+
name = "wasi"
|
3195
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
3196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3197
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
3198
|
+
|
3199
|
+
[[package]]
|
3200
|
+
name = "wasi"
|
3201
|
+
version = "0.14.2+wasi-0.2.4"
|
3202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3203
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
3204
|
+
dependencies = [
|
3205
|
+
"wit-bindgen-rt",
|
3206
|
+
]
|
3207
|
+
|
3208
|
+
[[package]]
|
3209
|
+
name = "wasm-bindgen"
|
3210
|
+
version = "0.2.100"
|
3211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3212
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
3213
|
+
dependencies = [
|
3214
|
+
"cfg-if",
|
3215
|
+
"once_cell",
|
3216
|
+
"rustversion",
|
3217
|
+
"wasm-bindgen-macro",
|
3218
|
+
]
|
3219
|
+
|
3220
|
+
[[package]]
|
3221
|
+
name = "wasm-bindgen-backend"
|
3222
|
+
version = "0.2.100"
|
3223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3224
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
3225
|
+
dependencies = [
|
3226
|
+
"bumpalo",
|
3227
|
+
"log",
|
3228
|
+
"proc-macro2",
|
3229
|
+
"quote",
|
3230
|
+
"syn",
|
3231
|
+
"wasm-bindgen-shared",
|
3232
|
+
]
|
3233
|
+
|
3234
|
+
[[package]]
|
3235
|
+
name = "wasm-bindgen-futures"
|
3236
|
+
version = "0.4.50"
|
3237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3238
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
3239
|
+
dependencies = [
|
3240
|
+
"cfg-if",
|
3241
|
+
"js-sys",
|
3242
|
+
"once_cell",
|
3243
|
+
"wasm-bindgen",
|
3244
|
+
"web-sys",
|
3245
|
+
]
|
3246
|
+
|
3247
|
+
[[package]]
|
3248
|
+
name = "wasm-bindgen-macro"
|
3249
|
+
version = "0.2.100"
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3251
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
3252
|
+
dependencies = [
|
3253
|
+
"quote",
|
3254
|
+
"wasm-bindgen-macro-support",
|
3255
|
+
]
|
3256
|
+
|
3257
|
+
[[package]]
|
3258
|
+
name = "wasm-bindgen-macro-support"
|
3259
|
+
version = "0.2.100"
|
3260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3261
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
3262
|
+
dependencies = [
|
3263
|
+
"proc-macro2",
|
3264
|
+
"quote",
|
3265
|
+
"syn",
|
3266
|
+
"wasm-bindgen-backend",
|
3267
|
+
"wasm-bindgen-shared",
|
3268
|
+
]
|
3269
|
+
|
3270
|
+
[[package]]
|
3271
|
+
name = "wasm-bindgen-shared"
|
3272
|
+
version = "0.2.100"
|
3273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3274
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
3275
|
+
dependencies = [
|
3276
|
+
"unicode-ident",
|
3277
|
+
]
|
3278
|
+
|
3279
|
+
[[package]]
|
3280
|
+
name = "wasm-streams"
|
3281
|
+
version = "0.4.2"
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3283
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
3284
|
+
dependencies = [
|
3285
|
+
"futures-util",
|
3286
|
+
"js-sys",
|
3287
|
+
"wasm-bindgen",
|
3288
|
+
"wasm-bindgen-futures",
|
3289
|
+
"web-sys",
|
3290
|
+
]
|
3291
|
+
|
3292
|
+
[[package]]
|
3293
|
+
name = "web-sys"
|
3294
|
+
version = "0.3.77"
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3296
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
3297
|
+
dependencies = [
|
3298
|
+
"js-sys",
|
3299
|
+
"wasm-bindgen",
|
3300
|
+
]
|
3301
|
+
|
3302
|
+
[[package]]
|
3303
|
+
name = "web-time"
|
3304
|
+
version = "1.1.0"
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3306
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
3307
|
+
dependencies = [
|
3308
|
+
"js-sys",
|
3309
|
+
"wasm-bindgen",
|
3310
|
+
]
|
3311
|
+
|
3312
|
+
[[package]]
|
3313
|
+
name = "webpki-roots"
|
3314
|
+
version = "0.26.11"
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3316
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
3317
|
+
dependencies = [
|
3318
|
+
"webpki-roots 1.0.2",
|
3319
|
+
]
|
3320
|
+
|
3321
|
+
[[package]]
|
3322
|
+
name = "webpki-roots"
|
3323
|
+
version = "1.0.2"
|
3324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3325
|
+
checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
|
3326
|
+
dependencies = [
|
3327
|
+
"rustls-pki-types",
|
3328
|
+
]
|
3329
|
+
|
3330
|
+
[[package]]
|
3331
|
+
name = "which"
|
3332
|
+
version = "4.4.2"
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3334
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
3335
|
+
dependencies = [
|
3336
|
+
"either",
|
3337
|
+
"home",
|
3338
|
+
"once_cell",
|
3339
|
+
"rustix",
|
3340
|
+
]
|
3341
|
+
|
3342
|
+
[[package]]
|
3343
|
+
name = "windows-core"
|
3344
|
+
version = "0.61.2"
|
3345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3346
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
3347
|
+
dependencies = [
|
3348
|
+
"windows-implement",
|
3349
|
+
"windows-interface",
|
3350
|
+
"windows-link",
|
3351
|
+
"windows-result",
|
3352
|
+
"windows-strings",
|
3353
|
+
]
|
3354
|
+
|
3355
|
+
[[package]]
|
3356
|
+
name = "windows-implement"
|
3357
|
+
version = "0.60.0"
|
3358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3359
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
3360
|
+
dependencies = [
|
3361
|
+
"proc-macro2",
|
3362
|
+
"quote",
|
3363
|
+
"syn",
|
3364
|
+
]
|
3365
|
+
|
3366
|
+
[[package]]
|
3367
|
+
name = "windows-interface"
|
3368
|
+
version = "0.59.1"
|
3369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3370
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
3371
|
+
dependencies = [
|
3372
|
+
"proc-macro2",
|
3373
|
+
"quote",
|
3374
|
+
"syn",
|
3375
|
+
]
|
3376
|
+
|
3377
|
+
[[package]]
|
3378
|
+
name = "windows-link"
|
3379
|
+
version = "0.1.3"
|
3380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3381
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
3382
|
+
|
3383
|
+
[[package]]
|
3384
|
+
name = "windows-result"
|
3385
|
+
version = "0.3.4"
|
3386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3387
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
3388
|
+
dependencies = [
|
3389
|
+
"windows-link",
|
3390
|
+
]
|
3391
|
+
|
3392
|
+
[[package]]
|
3393
|
+
name = "windows-strings"
|
3394
|
+
version = "0.4.2"
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3396
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
3397
|
+
dependencies = [
|
3398
|
+
"windows-link",
|
3399
|
+
]
|
3400
|
+
|
3401
|
+
[[package]]
|
3402
|
+
name = "windows-sys"
|
3403
|
+
version = "0.52.0"
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3405
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
3406
|
+
dependencies = [
|
3407
|
+
"windows-targets 0.52.6",
|
3408
|
+
]
|
3409
|
+
|
3410
|
+
[[package]]
|
3411
|
+
name = "windows-sys"
|
3412
|
+
version = "0.59.0"
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3414
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
3415
|
+
dependencies = [
|
3416
|
+
"windows-targets 0.52.6",
|
3417
|
+
]
|
3418
|
+
|
3419
|
+
[[package]]
|
3420
|
+
name = "windows-targets"
|
3421
|
+
version = "0.52.6"
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3423
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
3424
|
+
dependencies = [
|
3425
|
+
"windows_aarch64_gnullvm 0.52.6",
|
3426
|
+
"windows_aarch64_msvc 0.52.6",
|
3427
|
+
"windows_i686_gnu 0.52.6",
|
3428
|
+
"windows_i686_gnullvm 0.52.6",
|
3429
|
+
"windows_i686_msvc 0.52.6",
|
3430
|
+
"windows_x86_64_gnu 0.52.6",
|
3431
|
+
"windows_x86_64_gnullvm 0.52.6",
|
3432
|
+
"windows_x86_64_msvc 0.52.6",
|
3433
|
+
]
|
3434
|
+
|
3435
|
+
[[package]]
|
3436
|
+
name = "windows-targets"
|
3437
|
+
version = "0.53.3"
|
3438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3439
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
3440
|
+
dependencies = [
|
3441
|
+
"windows-link",
|
3442
|
+
"windows_aarch64_gnullvm 0.53.0",
|
3443
|
+
"windows_aarch64_msvc 0.53.0",
|
3444
|
+
"windows_i686_gnu 0.53.0",
|
3445
|
+
"windows_i686_gnullvm 0.53.0",
|
3446
|
+
"windows_i686_msvc 0.53.0",
|
3447
|
+
"windows_x86_64_gnu 0.53.0",
|
3448
|
+
"windows_x86_64_gnullvm 0.53.0",
|
3449
|
+
"windows_x86_64_msvc 0.53.0",
|
3450
|
+
]
|
3451
|
+
|
3452
|
+
[[package]]
|
3453
|
+
name = "windows_aarch64_gnullvm"
|
3454
|
+
version = "0.52.6"
|
3455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3456
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
3457
|
+
|
3458
|
+
[[package]]
|
3459
|
+
name = "windows_aarch64_gnullvm"
|
3460
|
+
version = "0.53.0"
|
3461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3462
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
3463
|
+
|
3464
|
+
[[package]]
|
3465
|
+
name = "windows_aarch64_msvc"
|
3466
|
+
version = "0.52.6"
|
3467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3468
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
3469
|
+
|
3470
|
+
[[package]]
|
3471
|
+
name = "windows_aarch64_msvc"
|
3472
|
+
version = "0.53.0"
|
3473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3474
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
3475
|
+
|
3476
|
+
[[package]]
|
3477
|
+
name = "windows_i686_gnu"
|
3478
|
+
version = "0.52.6"
|
3479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3480
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
3481
|
+
|
3482
|
+
[[package]]
|
3483
|
+
name = "windows_i686_gnu"
|
3484
|
+
version = "0.53.0"
|
3485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3486
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
3487
|
+
|
3488
|
+
[[package]]
|
3489
|
+
name = "windows_i686_gnullvm"
|
3490
|
+
version = "0.52.6"
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3492
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
3493
|
+
|
3494
|
+
[[package]]
|
3495
|
+
name = "windows_i686_gnullvm"
|
3496
|
+
version = "0.53.0"
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3498
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
3499
|
+
|
3500
|
+
[[package]]
|
3501
|
+
name = "windows_i686_msvc"
|
3502
|
+
version = "0.52.6"
|
3503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3504
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
3505
|
+
|
3506
|
+
[[package]]
|
3507
|
+
name = "windows_i686_msvc"
|
3508
|
+
version = "0.53.0"
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3510
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
3511
|
+
|
3512
|
+
[[package]]
|
3513
|
+
name = "windows_x86_64_gnu"
|
3514
|
+
version = "0.52.6"
|
3515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3516
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
3517
|
+
|
3518
|
+
[[package]]
|
3519
|
+
name = "windows_x86_64_gnu"
|
3520
|
+
version = "0.53.0"
|
3521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3522
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
3523
|
+
|
3524
|
+
[[package]]
|
3525
|
+
name = "windows_x86_64_gnullvm"
|
3526
|
+
version = "0.52.6"
|
3527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3528
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
3529
|
+
|
3530
|
+
[[package]]
|
3531
|
+
name = "windows_x86_64_gnullvm"
|
3532
|
+
version = "0.53.0"
|
3533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3534
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
3535
|
+
|
3536
|
+
[[package]]
|
3537
|
+
name = "windows_x86_64_msvc"
|
3538
|
+
version = "0.52.6"
|
3539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3540
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
3541
|
+
|
3542
|
+
[[package]]
|
3543
|
+
name = "windows_x86_64_msvc"
|
3544
|
+
version = "0.53.0"
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3546
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
3547
|
+
|
3548
|
+
[[package]]
|
3549
|
+
name = "wit-bindgen-rt"
|
3550
|
+
version = "0.39.0"
|
3551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3552
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
3553
|
+
dependencies = [
|
3554
|
+
"bitflags",
|
3555
|
+
]
|
3556
|
+
|
3557
|
+
[[package]]
|
3558
|
+
name = "writeable"
|
3559
|
+
version = "0.6.1"
|
3560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3561
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
3562
|
+
|
3563
|
+
[[package]]
|
3564
|
+
name = "xmlparser"
|
3565
|
+
version = "0.13.6"
|
3566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3567
|
+
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
3568
|
+
|
3569
|
+
[[package]]
|
3570
|
+
name = "yoke"
|
3571
|
+
version = "0.8.0"
|
3572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3573
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
3574
|
+
dependencies = [
|
3575
|
+
"serde",
|
3576
|
+
"stable_deref_trait",
|
3577
|
+
"yoke-derive",
|
3578
|
+
"zerofrom",
|
3579
|
+
]
|
3580
|
+
|
3581
|
+
[[package]]
|
3582
|
+
name = "yoke-derive"
|
3583
|
+
version = "0.8.0"
|
3584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3585
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
3586
|
+
dependencies = [
|
3587
|
+
"proc-macro2",
|
3588
|
+
"quote",
|
3589
|
+
"syn",
|
3590
|
+
"synstructure",
|
3591
|
+
]
|
3592
|
+
|
3593
|
+
[[package]]
|
3594
|
+
name = "zerocopy"
|
3595
|
+
version = "0.8.26"
|
3596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3597
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
3598
|
+
dependencies = [
|
3599
|
+
"zerocopy-derive",
|
3600
|
+
]
|
3601
|
+
|
3602
|
+
[[package]]
|
3603
|
+
name = "zerocopy-derive"
|
3604
|
+
version = "0.8.26"
|
3605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3606
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
3607
|
+
dependencies = [
|
3608
|
+
"proc-macro2",
|
3609
|
+
"quote",
|
3610
|
+
"syn",
|
3611
|
+
]
|
3612
|
+
|
3613
|
+
[[package]]
|
3614
|
+
name = "zerofrom"
|
3615
|
+
version = "0.1.6"
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3617
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
3618
|
+
dependencies = [
|
3619
|
+
"zerofrom-derive",
|
3620
|
+
]
|
3621
|
+
|
3622
|
+
[[package]]
|
3623
|
+
name = "zerofrom-derive"
|
3624
|
+
version = "0.1.6"
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3626
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
3627
|
+
dependencies = [
|
3628
|
+
"proc-macro2",
|
3629
|
+
"quote",
|
3630
|
+
"syn",
|
3631
|
+
"synstructure",
|
3632
|
+
]
|
3633
|
+
|
3634
|
+
[[package]]
|
3635
|
+
name = "zeroize"
|
3636
|
+
version = "1.8.1"
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3638
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
3639
|
+
|
3640
|
+
[[package]]
|
3641
|
+
name = "zerotrie"
|
3642
|
+
version = "0.2.2"
|
3643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3644
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
3645
|
+
dependencies = [
|
3646
|
+
"displaydoc",
|
3647
|
+
"yoke",
|
3648
|
+
"zerofrom",
|
3649
|
+
]
|
3650
|
+
|
3651
|
+
[[package]]
|
3652
|
+
name = "zerovec"
|
3653
|
+
version = "0.11.2"
|
3654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3655
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
3656
|
+
dependencies = [
|
3657
|
+
"yoke",
|
3658
|
+
"zerofrom",
|
3659
|
+
"zerovec-derive",
|
3660
|
+
]
|
3661
|
+
|
3662
|
+
[[package]]
|
3663
|
+
name = "zerovec-derive"
|
3664
|
+
version = "0.11.1"
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3666
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
3667
|
+
dependencies = [
|
3668
|
+
"proc-macro2",
|
3669
|
+
"quote",
|
3670
|
+
"syn",
|
3671
|
+
]
|