@tutao/node-mimimi 266.250202.0 → 270.250214.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.
- package/Cargo.lock +2602 -0
- package/Cargo.toml +23 -28
- package/package.json +5 -5
- package/src/importer/attachment_importer.rs +137 -0
- package/src/importer/file_reader.rs +176 -63
- package/src/importer/filename_producer.rs +177 -124
- package/src/importer/importable_mail/mime_string_to_importable_mail_test.rs +12 -12
- package/src/importer/importable_mail/msg_file_compatibility_test.rs +1 -2
- package/src/importer/importable_mail.rs +26 -41
- package/src/importer/messages.rs +4 -0
- package/src/importer.rs +101 -348
- package/src/importer_api.rs +44 -16
- package/src/lib.rs +3 -0
- package/src/reduce_to_chunks.rs +14 -13
- package/rust-toolchain +0 -1
- package/src/tuta_imap.rs +0 -4
package/Cargo.lock
ADDED
|
@@ -0,0 +1,2602 @@
|
|
|
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.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aes"
|
|
22
|
+
version = "0.8.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"cipher",
|
|
28
|
+
"cpufeatures",
|
|
29
|
+
"zeroize",
|
|
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 = "android_liblog-sys"
|
|
43
|
+
version = "0.1.4"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "aaf82c031178ca72b38595a54d16df8a257df9deea7d97a8992870e5c6a738e7"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"libc",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "android_log"
|
|
52
|
+
version = "0.1.3"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "cc00e0d3a060cce3fa338f9644ce9a93901c79f5405330891aeca69c9957009a"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"android_liblog-sys",
|
|
57
|
+
"log 0.3.9",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "anyhow"
|
|
62
|
+
version = "1.0.95"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "argon2"
|
|
68
|
+
version = "0.5.3"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"base64ct",
|
|
73
|
+
"blake2",
|
|
74
|
+
"cpufeatures",
|
|
75
|
+
"password-hash",
|
|
76
|
+
"zeroize",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "askama"
|
|
81
|
+
version = "0.12.1"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"askama_derive",
|
|
86
|
+
"askama_escape",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "askama_derive"
|
|
91
|
+
version = "0.12.5"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"askama_parser",
|
|
96
|
+
"basic-toml",
|
|
97
|
+
"mime",
|
|
98
|
+
"mime_guess",
|
|
99
|
+
"proc-macro2",
|
|
100
|
+
"quote",
|
|
101
|
+
"serde",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "askama_escape"
|
|
107
|
+
version = "0.10.3"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "askama_parser"
|
|
113
|
+
version = "0.2.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"nom",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "async-trait"
|
|
122
|
+
version = "0.1.85"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"proc-macro2",
|
|
127
|
+
"quote",
|
|
128
|
+
"syn",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "atomic-waker"
|
|
133
|
+
version = "1.1.2"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "autocfg"
|
|
139
|
+
version = "1.4.0"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "aws-lc-rs"
|
|
145
|
+
version = "1.12.2"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "4c2b7ddaa2c56a367ad27a094ad8ef4faacf8a617c2575acb2ba88949df999ca"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"aws-lc-sys",
|
|
150
|
+
"paste",
|
|
151
|
+
"zeroize",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "aws-lc-sys"
|
|
156
|
+
version = "0.25.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "71b2ddd3ada61a305e1d8bb6c005d1eaa7d14d903681edfc400406d523a9b491"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"bindgen",
|
|
161
|
+
"cc",
|
|
162
|
+
"cmake",
|
|
163
|
+
"dunce",
|
|
164
|
+
"fs_extra",
|
|
165
|
+
"paste",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "backtrace"
|
|
170
|
+
version = "0.3.74"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"addr2line",
|
|
175
|
+
"cfg-if",
|
|
176
|
+
"libc",
|
|
177
|
+
"miniz_oxide",
|
|
178
|
+
"object",
|
|
179
|
+
"rustc-demangle",
|
|
180
|
+
"windows-targets 0.52.6",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "base64"
|
|
185
|
+
version = "0.22.1"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "base64ct"
|
|
191
|
+
version = "1.6.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "basic-toml"
|
|
197
|
+
version = "0.1.9"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"serde",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "bincode"
|
|
206
|
+
version = "1.3.3"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"serde",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "bindgen"
|
|
215
|
+
version = "0.69.5"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"bitflags",
|
|
220
|
+
"cexpr",
|
|
221
|
+
"clang-sys",
|
|
222
|
+
"itertools",
|
|
223
|
+
"lazy_static",
|
|
224
|
+
"lazycell",
|
|
225
|
+
"log 0.4.25",
|
|
226
|
+
"prettyplease",
|
|
227
|
+
"proc-macro2",
|
|
228
|
+
"quote",
|
|
229
|
+
"regex",
|
|
230
|
+
"rustc-hash",
|
|
231
|
+
"shlex",
|
|
232
|
+
"syn",
|
|
233
|
+
"which",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "bitflags"
|
|
238
|
+
version = "2.8.0"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "blake2"
|
|
244
|
+
version = "0.10.6"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"digest",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "block-buffer"
|
|
253
|
+
version = "0.10.4"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"generic-array",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "block-padding"
|
|
262
|
+
version = "0.3.3"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"generic-array",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "byteorder"
|
|
271
|
+
version = "1.5.0"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "bytes"
|
|
277
|
+
version = "1.9.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "camino"
|
|
283
|
+
version = "1.1.9"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"serde",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "cargo-platform"
|
|
292
|
+
version = "0.1.9"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"serde",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "cargo_metadata"
|
|
301
|
+
version = "0.15.4"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"camino",
|
|
306
|
+
"cargo-platform",
|
|
307
|
+
"semver",
|
|
308
|
+
"serde",
|
|
309
|
+
"serde_json",
|
|
310
|
+
"thiserror 1.0.69",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "cbc"
|
|
315
|
+
version = "0.1.2"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"cipher",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "cc"
|
|
324
|
+
version = "1.2.10"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"jobserver",
|
|
329
|
+
"libc",
|
|
330
|
+
"shlex",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "cexpr"
|
|
335
|
+
version = "0.6.0"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"nom",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "cfg-if"
|
|
344
|
+
version = "1.0.0"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "cipher"
|
|
350
|
+
version = "0.4.4"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"crypto-common",
|
|
355
|
+
"inout",
|
|
356
|
+
"zeroize",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "clang-sys"
|
|
361
|
+
version = "1.8.1"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"glob",
|
|
366
|
+
"libc",
|
|
367
|
+
"libloading",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "cmake"
|
|
372
|
+
version = "0.1.52"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "c682c223677e0e5b6b7f63a64b9351844c3f1b1678a68b7ee617e30fb082620e"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"cc",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "colored"
|
|
381
|
+
version = "2.2.0"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
384
|
+
dependencies = [
|
|
385
|
+
"lazy_static",
|
|
386
|
+
"windows-sys 0.59.0",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "const-hex"
|
|
391
|
+
version = "1.14.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"cfg-if",
|
|
396
|
+
"cpufeatures",
|
|
397
|
+
"hex",
|
|
398
|
+
"proptest",
|
|
399
|
+
"serde",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "const-oid"
|
|
404
|
+
version = "0.9.6"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "convert_case"
|
|
410
|
+
version = "0.6.0"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"unicode-segmentation",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "core-foundation"
|
|
419
|
+
version = "0.10.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"core-foundation-sys",
|
|
424
|
+
"libc",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "core-foundation-sys"
|
|
429
|
+
version = "0.8.7"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "cpufeatures"
|
|
435
|
+
version = "0.2.16"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"libc",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "crypto-common"
|
|
444
|
+
version = "0.1.6"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"generic-array",
|
|
449
|
+
"typenum",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "ctor"
|
|
454
|
+
version = "0.2.9"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"quote",
|
|
459
|
+
"syn",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "curve25519-dalek"
|
|
464
|
+
version = "4.1.3"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"cfg-if",
|
|
469
|
+
"cpufeatures",
|
|
470
|
+
"curve25519-dalek-derive",
|
|
471
|
+
"fiat-crypto",
|
|
472
|
+
"rustc_version",
|
|
473
|
+
"subtle",
|
|
474
|
+
"zeroize",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "curve25519-dalek-derive"
|
|
479
|
+
version = "0.1.1"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"proc-macro2",
|
|
484
|
+
"quote",
|
|
485
|
+
"syn",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "dashmap"
|
|
490
|
+
version = "5.5.3"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"cfg-if",
|
|
495
|
+
"hashbrown 0.14.5",
|
|
496
|
+
"lock_api",
|
|
497
|
+
"once_cell",
|
|
498
|
+
"parking_lot_core",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "der"
|
|
503
|
+
version = "0.7.9"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"const-oid",
|
|
508
|
+
"pem-rfc7468",
|
|
509
|
+
"zeroize",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "deranged"
|
|
514
|
+
version = "0.3.11"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"powerfmt",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "digest"
|
|
523
|
+
version = "0.10.7"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"block-buffer",
|
|
528
|
+
"const-oid",
|
|
529
|
+
"crypto-common",
|
|
530
|
+
"subtle",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "dunce"
|
|
535
|
+
version = "1.0.5"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "either"
|
|
541
|
+
version = "1.13.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "encoding_rs"
|
|
547
|
+
version = "0.8.35"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"cfg-if",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "equivalent"
|
|
556
|
+
version = "1.0.1"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "errno"
|
|
562
|
+
version = "0.3.10"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"libc",
|
|
567
|
+
"windows-sys 0.59.0",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "fiat-crypto"
|
|
572
|
+
version = "0.2.9"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "fnv"
|
|
578
|
+
version = "1.0.7"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "form_urlencoded"
|
|
584
|
+
version = "1.2.1"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"percent-encoding",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "fs-err"
|
|
593
|
+
version = "2.11.0"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"autocfg",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "fs_extra"
|
|
602
|
+
version = "1.3.0"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "futures"
|
|
608
|
+
version = "0.3.31"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"futures-channel",
|
|
613
|
+
"futures-core",
|
|
614
|
+
"futures-executor",
|
|
615
|
+
"futures-io",
|
|
616
|
+
"futures-sink",
|
|
617
|
+
"futures-task",
|
|
618
|
+
"futures-util",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "futures-channel"
|
|
623
|
+
version = "0.3.31"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"futures-core",
|
|
628
|
+
"futures-sink",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "futures-core"
|
|
633
|
+
version = "0.3.31"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "futures-executor"
|
|
639
|
+
version = "0.3.31"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"futures-core",
|
|
644
|
+
"futures-task",
|
|
645
|
+
"futures-util",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "futures-io"
|
|
650
|
+
version = "0.3.31"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "futures-macro"
|
|
656
|
+
version = "0.3.31"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"proc-macro2",
|
|
661
|
+
"quote",
|
|
662
|
+
"syn",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "futures-sink"
|
|
667
|
+
version = "0.3.31"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "futures-task"
|
|
673
|
+
version = "0.3.31"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "futures-util"
|
|
679
|
+
version = "0.3.31"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"futures-channel",
|
|
684
|
+
"futures-core",
|
|
685
|
+
"futures-io",
|
|
686
|
+
"futures-macro",
|
|
687
|
+
"futures-sink",
|
|
688
|
+
"futures-task",
|
|
689
|
+
"memchr",
|
|
690
|
+
"pin-project-lite",
|
|
691
|
+
"pin-utils",
|
|
692
|
+
"slab",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "generic-array"
|
|
697
|
+
version = "0.14.7"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"typenum",
|
|
702
|
+
"version_check",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "gethostname"
|
|
707
|
+
version = "0.4.3"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"libc",
|
|
712
|
+
"windows-targets 0.48.5",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "getrandom"
|
|
717
|
+
version = "0.2.15"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"cfg-if",
|
|
722
|
+
"libc",
|
|
723
|
+
"wasi",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "gimli"
|
|
728
|
+
version = "0.31.1"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "glob"
|
|
734
|
+
version = "0.3.2"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "goblin"
|
|
740
|
+
version = "0.8.2"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"log 0.4.25",
|
|
745
|
+
"plain",
|
|
746
|
+
"scroll",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "h2"
|
|
751
|
+
version = "0.4.7"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"atomic-waker",
|
|
756
|
+
"bytes",
|
|
757
|
+
"fnv",
|
|
758
|
+
"futures-core",
|
|
759
|
+
"futures-sink",
|
|
760
|
+
"http",
|
|
761
|
+
"indexmap",
|
|
762
|
+
"slab",
|
|
763
|
+
"tokio",
|
|
764
|
+
"tokio-util",
|
|
765
|
+
"tracing",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "hashbrown"
|
|
770
|
+
version = "0.14.5"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "hashbrown"
|
|
776
|
+
version = "0.15.2"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "heck"
|
|
782
|
+
version = "0.5.0"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "hex"
|
|
788
|
+
version = "0.4.3"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"serde",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "hkdf"
|
|
797
|
+
version = "0.12.4"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"hmac",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "hmac"
|
|
806
|
+
version = "0.12.1"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"digest",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "home"
|
|
815
|
+
version = "0.5.11"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"windows-sys 0.59.0",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "http"
|
|
824
|
+
version = "1.2.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"bytes",
|
|
829
|
+
"fnv",
|
|
830
|
+
"itoa",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "http-body"
|
|
835
|
+
version = "1.0.1"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"bytes",
|
|
840
|
+
"http",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "http-body-util"
|
|
845
|
+
version = "0.1.2"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"bytes",
|
|
850
|
+
"futures-util",
|
|
851
|
+
"http",
|
|
852
|
+
"http-body",
|
|
853
|
+
"pin-project-lite",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "httparse"
|
|
858
|
+
version = "1.9.5"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "httpdate"
|
|
864
|
+
version = "1.0.3"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "hyper"
|
|
870
|
+
version = "1.5.2"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"bytes",
|
|
875
|
+
"futures-channel",
|
|
876
|
+
"futures-util",
|
|
877
|
+
"h2",
|
|
878
|
+
"http",
|
|
879
|
+
"http-body",
|
|
880
|
+
"httparse",
|
|
881
|
+
"httpdate",
|
|
882
|
+
"itoa",
|
|
883
|
+
"pin-project-lite",
|
|
884
|
+
"smallvec",
|
|
885
|
+
"tokio",
|
|
886
|
+
"want",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "hyper-rustls"
|
|
891
|
+
version = "0.27.5"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"futures-util",
|
|
896
|
+
"http",
|
|
897
|
+
"hyper",
|
|
898
|
+
"hyper-util",
|
|
899
|
+
"log 0.4.25",
|
|
900
|
+
"rustls",
|
|
901
|
+
"rustls-native-certs",
|
|
902
|
+
"rustls-pki-types",
|
|
903
|
+
"tokio",
|
|
904
|
+
"tokio-rustls",
|
|
905
|
+
"tower-service",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "hyper-util"
|
|
910
|
+
version = "0.1.10"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"bytes",
|
|
915
|
+
"futures-channel",
|
|
916
|
+
"futures-util",
|
|
917
|
+
"http",
|
|
918
|
+
"http-body",
|
|
919
|
+
"hyper",
|
|
920
|
+
"pin-project-lite",
|
|
921
|
+
"socket2",
|
|
922
|
+
"tokio",
|
|
923
|
+
"tower-service",
|
|
924
|
+
"tracing",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "indexmap"
|
|
929
|
+
version = "2.7.1"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"equivalent",
|
|
934
|
+
"hashbrown 0.15.2",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "inout"
|
|
939
|
+
version = "0.1.3"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"block-padding",
|
|
944
|
+
"generic-array",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "itertools"
|
|
949
|
+
version = "0.12.1"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"either",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "itoa"
|
|
958
|
+
version = "1.0.14"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "jobserver"
|
|
964
|
+
version = "0.1.32"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"libc",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "keccak"
|
|
973
|
+
version = "0.1.5"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"cpufeatures",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "lazy_static"
|
|
982
|
+
version = "1.5.0"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"spin",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "lazycell"
|
|
991
|
+
version = "1.3.0"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "libc"
|
|
997
|
+
version = "0.2.169"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "libloading"
|
|
1003
|
+
version = "0.8.6"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"cfg-if",
|
|
1008
|
+
"windows-targets 0.52.6",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "libm"
|
|
1013
|
+
version = "0.2.11"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "linux-raw-sys"
|
|
1019
|
+
version = "0.4.15"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "lock_api"
|
|
1025
|
+
version = "0.4.12"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"autocfg",
|
|
1030
|
+
"scopeguard",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "log"
|
|
1035
|
+
version = "0.3.9"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"log 0.4.25",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "log"
|
|
1044
|
+
version = "0.4.25"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "lz4_flex"
|
|
1050
|
+
version = "0.11.3"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "mail-builder"
|
|
1056
|
+
version = "0.3.2"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "25f5871d5270ed80f2ee750b95600c8d69b05f8653ad3be913b2ad2e924fefcb"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"gethostname",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "mail-parser"
|
|
1065
|
+
version = "0.9.4"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "93c3b9e5d8b17faf573330bbc43b37d6e918c0a3bf8a88e7d0a220ebc84af9fc"
|
|
1068
|
+
dependencies = [
|
|
1069
|
+
"encoding_rs",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "memchr"
|
|
1074
|
+
version = "2.7.4"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "mime"
|
|
1080
|
+
version = "0.3.17"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "mime_guess"
|
|
1086
|
+
version = "2.0.5"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"mime",
|
|
1091
|
+
"unicase",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "minicbor"
|
|
1096
|
+
version = "0.25.1"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "c0452a60c1863c1f50b5f77cd295e8d2786849f35883f0b9e18e7e6e1b5691b0"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"minicbor-derive",
|
|
1101
|
+
]
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "minicbor-derive"
|
|
1105
|
+
version = "0.15.3"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "bd2209fff77f705b00c737016a48e73733d7fbccb8b007194db148f03561fb70"
|
|
1108
|
+
dependencies = [
|
|
1109
|
+
"proc-macro2",
|
|
1110
|
+
"quote",
|
|
1111
|
+
"syn",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "minimal-lexical"
|
|
1116
|
+
version = "0.2.1"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "miniz_oxide"
|
|
1122
|
+
version = "0.8.3"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"adler2",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "mio"
|
|
1131
|
+
version = "1.0.3"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"libc",
|
|
1136
|
+
"wasi",
|
|
1137
|
+
"windows-sys 0.52.0",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "napi"
|
|
1142
|
+
version = "2.16.13"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "214f07a80874bb96a8433b3cdfc84980d56c7b02e1a0d7ba4ba0db5cef785e2b"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"bitflags",
|
|
1147
|
+
"ctor",
|
|
1148
|
+
"napi-derive",
|
|
1149
|
+
"napi-sys",
|
|
1150
|
+
"once_cell",
|
|
1151
|
+
"tokio",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "napi-build"
|
|
1156
|
+
version = "2.1.4"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "db836caddef23662b94e16bf1f26c40eceb09d6aee5d5b06a7ac199320b69b19"
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "napi-derive"
|
|
1162
|
+
version = "2.16.13"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"cfg-if",
|
|
1167
|
+
"convert_case",
|
|
1168
|
+
"napi-derive-backend",
|
|
1169
|
+
"proc-macro2",
|
|
1170
|
+
"quote",
|
|
1171
|
+
"syn",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "napi-derive-backend"
|
|
1176
|
+
version = "1.0.75"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"convert_case",
|
|
1181
|
+
"once_cell",
|
|
1182
|
+
"proc-macro2",
|
|
1183
|
+
"quote",
|
|
1184
|
+
"regex",
|
|
1185
|
+
"semver",
|
|
1186
|
+
"syn",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "napi-sys"
|
|
1191
|
+
version = "2.4.0"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"libloading",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "nom"
|
|
1200
|
+
version = "7.1.3"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"memchr",
|
|
1205
|
+
"minimal-lexical",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "num-bigint-dig"
|
|
1210
|
+
version = "0.8.4"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"byteorder",
|
|
1215
|
+
"lazy_static",
|
|
1216
|
+
"libm",
|
|
1217
|
+
"num-integer",
|
|
1218
|
+
"num-iter",
|
|
1219
|
+
"num-traits",
|
|
1220
|
+
"rand",
|
|
1221
|
+
"smallvec",
|
|
1222
|
+
"zeroize",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "num-conv"
|
|
1227
|
+
version = "0.1.0"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "num-integer"
|
|
1233
|
+
version = "0.1.46"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"num-traits",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "num-iter"
|
|
1242
|
+
version = "0.1.45"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"autocfg",
|
|
1247
|
+
"num-integer",
|
|
1248
|
+
"num-traits",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "num-traits"
|
|
1253
|
+
version = "0.2.19"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"autocfg",
|
|
1258
|
+
"libm",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "num_enum"
|
|
1263
|
+
version = "0.7.3"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"num_enum_derive",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "num_enum_derive"
|
|
1272
|
+
version = "0.7.3"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"proc-macro-crate",
|
|
1277
|
+
"proc-macro2",
|
|
1278
|
+
"quote",
|
|
1279
|
+
"syn",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "num_threads"
|
|
1284
|
+
version = "0.1.7"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"libc",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "object"
|
|
1293
|
+
version = "0.36.7"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"memchr",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "once_cell"
|
|
1302
|
+
version = "1.20.2"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "openssl-probe"
|
|
1308
|
+
version = "0.1.6"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "oslog"
|
|
1314
|
+
version = "0.2.0"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "80d2043d1f61d77cb2f4b1f7b7b2295f40507f5f8e9d1c8bf10a1ca5f97a3969"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"cc",
|
|
1319
|
+
"dashmap",
|
|
1320
|
+
"log 0.4.25",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "parking_lot"
|
|
1325
|
+
version = "0.12.3"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"lock_api",
|
|
1330
|
+
"parking_lot_core",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "parking_lot_core"
|
|
1335
|
+
version = "0.9.10"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"cfg-if",
|
|
1340
|
+
"libc",
|
|
1341
|
+
"redox_syscall",
|
|
1342
|
+
"smallvec",
|
|
1343
|
+
"windows-targets 0.52.6",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "password-hash"
|
|
1348
|
+
version = "0.5.0"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"base64ct",
|
|
1353
|
+
"rand_core",
|
|
1354
|
+
"subtle",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "paste"
|
|
1359
|
+
version = "1.0.15"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "pem-rfc7468"
|
|
1365
|
+
version = "0.7.0"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"base64ct",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "percent-encoding"
|
|
1374
|
+
version = "2.3.1"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "pin-project-lite"
|
|
1380
|
+
version = "0.2.16"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "pin-utils"
|
|
1386
|
+
version = "0.1.0"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "pkcs1"
|
|
1392
|
+
version = "0.7.5"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"der",
|
|
1397
|
+
"pkcs8",
|
|
1398
|
+
"spki",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "pkcs8"
|
|
1403
|
+
version = "0.10.2"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"der",
|
|
1408
|
+
"spki",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "plain"
|
|
1413
|
+
version = "0.2.3"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "powerfmt"
|
|
1419
|
+
version = "0.2.0"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "ppv-lite86"
|
|
1425
|
+
version = "0.2.20"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"zerocopy",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "pqcrypto-internals"
|
|
1434
|
+
version = "0.2.7"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "62cd8ebf02b43967cda06e6a3f54d0bd9659459c3003d16aeedd07b44c6db06c"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"cc",
|
|
1439
|
+
"dunce",
|
|
1440
|
+
"getrandom",
|
|
1441
|
+
"libc",
|
|
1442
|
+
]
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "pqcrypto-mlkem"
|
|
1446
|
+
version = "0.1.0"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "219656f3ee9d9892e8ee475e7d8c35612fcec0ac2a18f847cca12b1affddb540"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"cc",
|
|
1451
|
+
"glob",
|
|
1452
|
+
"libc",
|
|
1453
|
+
"pqcrypto-internals",
|
|
1454
|
+
"pqcrypto-traits",
|
|
1455
|
+
]
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "pqcrypto-traits"
|
|
1459
|
+
version = "0.3.5"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "94e851c7654eed9e68d7d27164c454961a616cf8c203d500607ef22c737b51bb"
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "prettyplease"
|
|
1465
|
+
version = "0.2.29"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"proc-macro2",
|
|
1470
|
+
"syn",
|
|
1471
|
+
]
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "proc-macro-crate"
|
|
1475
|
+
version = "3.2.0"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"toml_edit",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "proc-macro2"
|
|
1484
|
+
version = "1.0.93"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"unicode-ident",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "proptest"
|
|
1493
|
+
version = "1.6.0"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"bitflags",
|
|
1498
|
+
"lazy_static",
|
|
1499
|
+
"num-traits",
|
|
1500
|
+
"rand",
|
|
1501
|
+
"rand_chacha",
|
|
1502
|
+
"rand_xorshift",
|
|
1503
|
+
"regex-syntax",
|
|
1504
|
+
"unarray",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "quote"
|
|
1509
|
+
version = "1.0.38"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"proc-macro2",
|
|
1514
|
+
]
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "rand"
|
|
1518
|
+
version = "0.8.5"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"libc",
|
|
1523
|
+
"rand_chacha",
|
|
1524
|
+
"rand_core",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "rand_chacha"
|
|
1529
|
+
version = "0.3.1"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"ppv-lite86",
|
|
1534
|
+
"rand_core",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "rand_core"
|
|
1539
|
+
version = "0.6.4"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"getrandom",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "rand_xorshift"
|
|
1548
|
+
version = "0.3.0"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"rand_core",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "redox_syscall"
|
|
1557
|
+
version = "0.5.8"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"bitflags",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "regex"
|
|
1566
|
+
version = "1.11.1"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"aho-corasick",
|
|
1571
|
+
"memchr",
|
|
1572
|
+
"regex-automata",
|
|
1573
|
+
"regex-syntax",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "regex-automata"
|
|
1578
|
+
version = "0.4.9"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"aho-corasick",
|
|
1583
|
+
"memchr",
|
|
1584
|
+
"regex-syntax",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "regex-syntax"
|
|
1589
|
+
version = "0.8.5"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "ring"
|
|
1595
|
+
version = "0.17.8"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"cc",
|
|
1600
|
+
"cfg-if",
|
|
1601
|
+
"getrandom",
|
|
1602
|
+
"libc",
|
|
1603
|
+
"spin",
|
|
1604
|
+
"untrusted",
|
|
1605
|
+
"windows-sys 0.52.0",
|
|
1606
|
+
]
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "rsa"
|
|
1610
|
+
version = "0.9.7"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
|
|
1613
|
+
dependencies = [
|
|
1614
|
+
"const-oid",
|
|
1615
|
+
"digest",
|
|
1616
|
+
"num-bigint-dig",
|
|
1617
|
+
"num-integer",
|
|
1618
|
+
"num-traits",
|
|
1619
|
+
"pkcs1",
|
|
1620
|
+
"pkcs8",
|
|
1621
|
+
"rand_core",
|
|
1622
|
+
"signature",
|
|
1623
|
+
"spki",
|
|
1624
|
+
"subtle",
|
|
1625
|
+
"zeroize",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "rustc-demangle"
|
|
1630
|
+
version = "0.1.24"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "rustc-hash"
|
|
1636
|
+
version = "1.1.0"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "rustc_version"
|
|
1642
|
+
version = "0.4.1"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1645
|
+
dependencies = [
|
|
1646
|
+
"semver",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "rustix"
|
|
1651
|
+
version = "0.38.44"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"bitflags",
|
|
1656
|
+
"errno",
|
|
1657
|
+
"libc",
|
|
1658
|
+
"linux-raw-sys",
|
|
1659
|
+
"windows-sys 0.59.0",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "rustls"
|
|
1664
|
+
version = "0.23.21"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"aws-lc-rs",
|
|
1669
|
+
"log 0.4.25",
|
|
1670
|
+
"once_cell",
|
|
1671
|
+
"ring",
|
|
1672
|
+
"rustls-pki-types",
|
|
1673
|
+
"rustls-webpki",
|
|
1674
|
+
"subtle",
|
|
1675
|
+
"zeroize",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "rustls-native-certs"
|
|
1680
|
+
version = "0.8.1"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"openssl-probe",
|
|
1685
|
+
"rustls-pki-types",
|
|
1686
|
+
"schannel",
|
|
1687
|
+
"security-framework",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "rustls-pki-types"
|
|
1692
|
+
version = "1.10.1"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "rustls-webpki"
|
|
1698
|
+
version = "0.102.8"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"aws-lc-rs",
|
|
1703
|
+
"ring",
|
|
1704
|
+
"rustls-pki-types",
|
|
1705
|
+
"untrusted",
|
|
1706
|
+
]
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "ryu"
|
|
1710
|
+
version = "1.0.18"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "schannel"
|
|
1716
|
+
version = "0.1.27"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
1719
|
+
dependencies = [
|
|
1720
|
+
"windows-sys 0.59.0",
|
|
1721
|
+
]
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "scopeguard"
|
|
1725
|
+
version = "1.2.0"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1728
|
+
|
|
1729
|
+
[[package]]
|
|
1730
|
+
name = "scroll"
|
|
1731
|
+
version = "0.12.0"
|
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
+
checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
|
|
1734
|
+
dependencies = [
|
|
1735
|
+
"scroll_derive",
|
|
1736
|
+
]
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "scroll_derive"
|
|
1740
|
+
version = "0.12.0"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"proc-macro2",
|
|
1745
|
+
"quote",
|
|
1746
|
+
"syn",
|
|
1747
|
+
]
|
|
1748
|
+
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "security-framework"
|
|
1751
|
+
version = "3.2.0"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
|
1754
|
+
dependencies = [
|
|
1755
|
+
"bitflags",
|
|
1756
|
+
"core-foundation",
|
|
1757
|
+
"core-foundation-sys",
|
|
1758
|
+
"libc",
|
|
1759
|
+
"security-framework-sys",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "security-framework-sys"
|
|
1764
|
+
version = "2.14.0"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"core-foundation-sys",
|
|
1769
|
+
"libc",
|
|
1770
|
+
]
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "semver"
|
|
1774
|
+
version = "1.0.25"
|
|
1775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
+
checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
|
|
1777
|
+
dependencies = [
|
|
1778
|
+
"serde",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "serde"
|
|
1783
|
+
version = "1.0.217"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"serde_derive",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "serde_bytes"
|
|
1792
|
+
version = "0.11.15"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"serde",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "serde_derive"
|
|
1801
|
+
version = "1.0.217"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"proc-macro2",
|
|
1806
|
+
"quote",
|
|
1807
|
+
"syn",
|
|
1808
|
+
]
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "serde_json"
|
|
1812
|
+
version = "1.0.137"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
|
|
1815
|
+
dependencies = [
|
|
1816
|
+
"itoa",
|
|
1817
|
+
"memchr",
|
|
1818
|
+
"ryu",
|
|
1819
|
+
"serde",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "sha2"
|
|
1824
|
+
version = "0.10.8"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"cfg-if",
|
|
1829
|
+
"cpufeatures",
|
|
1830
|
+
"digest",
|
|
1831
|
+
]
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "sha3"
|
|
1835
|
+
version = "0.10.8"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
|
|
1838
|
+
dependencies = [
|
|
1839
|
+
"digest",
|
|
1840
|
+
"keccak",
|
|
1841
|
+
]
|
|
1842
|
+
|
|
1843
|
+
[[package]]
|
|
1844
|
+
name = "shlex"
|
|
1845
|
+
version = "1.3.0"
|
|
1846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1848
|
+
|
|
1849
|
+
[[package]]
|
|
1850
|
+
name = "signal-hook-registry"
|
|
1851
|
+
version = "1.4.2"
|
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
1854
|
+
dependencies = [
|
|
1855
|
+
"libc",
|
|
1856
|
+
]
|
|
1857
|
+
|
|
1858
|
+
[[package]]
|
|
1859
|
+
name = "signature"
|
|
1860
|
+
version = "2.2.0"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"digest",
|
|
1865
|
+
"rand_core",
|
|
1866
|
+
]
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "simple_logger"
|
|
1870
|
+
version = "5.0.0"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "e8c5dfa5e08767553704aa0ffd9d9794d527103c736aba9854773851fd7497eb"
|
|
1873
|
+
dependencies = [
|
|
1874
|
+
"colored",
|
|
1875
|
+
"log 0.4.25",
|
|
1876
|
+
"time",
|
|
1877
|
+
"windows-sys 0.48.0",
|
|
1878
|
+
]
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "siphasher"
|
|
1882
|
+
version = "0.3.11"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "slab"
|
|
1888
|
+
version = "0.4.9"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"autocfg",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "smallvec"
|
|
1897
|
+
version = "1.13.2"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "smawk"
|
|
1903
|
+
version = "0.3.2"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
1906
|
+
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "socket2"
|
|
1909
|
+
version = "0.5.8"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
|
1912
|
+
dependencies = [
|
|
1913
|
+
"libc",
|
|
1914
|
+
"windows-sys 0.52.0",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "spin"
|
|
1919
|
+
version = "0.9.8"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "spki"
|
|
1925
|
+
version = "0.7.3"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1928
|
+
dependencies = [
|
|
1929
|
+
"base64ct",
|
|
1930
|
+
"der",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "static_assertions"
|
|
1935
|
+
version = "1.1.0"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "subtle"
|
|
1941
|
+
version = "2.6.1"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "syn"
|
|
1947
|
+
version = "2.0.96"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"proc-macro2",
|
|
1952
|
+
"quote",
|
|
1953
|
+
"unicode-ident",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "textwrap"
|
|
1958
|
+
version = "0.16.1"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"smawk",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "thiserror"
|
|
1967
|
+
version = "1.0.69"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1970
|
+
dependencies = [
|
|
1971
|
+
"thiserror-impl 1.0.69",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "thiserror"
|
|
1976
|
+
version = "2.0.11"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
|
1979
|
+
dependencies = [
|
|
1980
|
+
"thiserror-impl 2.0.11",
|
|
1981
|
+
]
|
|
1982
|
+
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "thiserror-impl"
|
|
1985
|
+
version = "1.0.69"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1988
|
+
dependencies = [
|
|
1989
|
+
"proc-macro2",
|
|
1990
|
+
"quote",
|
|
1991
|
+
"syn",
|
|
1992
|
+
]
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "thiserror-impl"
|
|
1996
|
+
version = "2.0.11"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
|
1999
|
+
dependencies = [
|
|
2000
|
+
"proc-macro2",
|
|
2001
|
+
"quote",
|
|
2002
|
+
"syn",
|
|
2003
|
+
]
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "time"
|
|
2007
|
+
version = "0.3.37"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"deranged",
|
|
2012
|
+
"itoa",
|
|
2013
|
+
"libc",
|
|
2014
|
+
"num-conv",
|
|
2015
|
+
"num_threads",
|
|
2016
|
+
"powerfmt",
|
|
2017
|
+
"serde",
|
|
2018
|
+
"time-core",
|
|
2019
|
+
"time-macros",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "time-core"
|
|
2024
|
+
version = "0.1.2"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "time-macros"
|
|
2030
|
+
version = "0.2.19"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
|
2033
|
+
dependencies = [
|
|
2034
|
+
"num-conv",
|
|
2035
|
+
"time-core",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "tokio"
|
|
2040
|
+
version = "1.43.0"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"backtrace",
|
|
2045
|
+
"bytes",
|
|
2046
|
+
"libc",
|
|
2047
|
+
"mio",
|
|
2048
|
+
"parking_lot",
|
|
2049
|
+
"pin-project-lite",
|
|
2050
|
+
"signal-hook-registry",
|
|
2051
|
+
"socket2",
|
|
2052
|
+
"tokio-macros",
|
|
2053
|
+
"windows-sys 0.52.0",
|
|
2054
|
+
]
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "tokio-macros"
|
|
2058
|
+
version = "2.5.0"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
2061
|
+
dependencies = [
|
|
2062
|
+
"proc-macro2",
|
|
2063
|
+
"quote",
|
|
2064
|
+
"syn",
|
|
2065
|
+
]
|
|
2066
|
+
|
|
2067
|
+
[[package]]
|
|
2068
|
+
name = "tokio-rustls"
|
|
2069
|
+
version = "0.26.1"
|
|
2070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
+
checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
|
|
2072
|
+
dependencies = [
|
|
2073
|
+
"rustls",
|
|
2074
|
+
"tokio",
|
|
2075
|
+
]
|
|
2076
|
+
|
|
2077
|
+
[[package]]
|
|
2078
|
+
name = "tokio-util"
|
|
2079
|
+
version = "0.7.13"
|
|
2080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
+
checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
|
|
2082
|
+
dependencies = [
|
|
2083
|
+
"bytes",
|
|
2084
|
+
"futures-core",
|
|
2085
|
+
"futures-sink",
|
|
2086
|
+
"pin-project-lite",
|
|
2087
|
+
"tokio",
|
|
2088
|
+
]
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "toml"
|
|
2092
|
+
version = "0.5.11"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"serde",
|
|
2097
|
+
]
|
|
2098
|
+
|
|
2099
|
+
[[package]]
|
|
2100
|
+
name = "toml_datetime"
|
|
2101
|
+
version = "0.6.8"
|
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
|
2104
|
+
|
|
2105
|
+
[[package]]
|
|
2106
|
+
name = "toml_edit"
|
|
2107
|
+
version = "0.22.22"
|
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
+
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"indexmap",
|
|
2112
|
+
"toml_datetime",
|
|
2113
|
+
"winnow",
|
|
2114
|
+
]
|
|
2115
|
+
|
|
2116
|
+
[[package]]
|
|
2117
|
+
name = "tower-service"
|
|
2118
|
+
version = "0.3.3"
|
|
2119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "tracing"
|
|
2124
|
+
version = "0.1.41"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"pin-project-lite",
|
|
2129
|
+
"tracing-core",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "tracing-core"
|
|
2134
|
+
version = "0.1.33"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"once_cell",
|
|
2139
|
+
]
|
|
2140
|
+
|
|
2141
|
+
[[package]]
|
|
2142
|
+
name = "try-lock"
|
|
2143
|
+
version = "0.2.5"
|
|
2144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "tuta-sdk"
|
|
2149
|
+
version = "267.250206.0"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"aes",
|
|
2152
|
+
"android_log",
|
|
2153
|
+
"argon2",
|
|
2154
|
+
"async-trait",
|
|
2155
|
+
"base64",
|
|
2156
|
+
"cbc",
|
|
2157
|
+
"const-hex",
|
|
2158
|
+
"curve25519-dalek",
|
|
2159
|
+
"form_urlencoded",
|
|
2160
|
+
"futures",
|
|
2161
|
+
"hkdf",
|
|
2162
|
+
"hmac",
|
|
2163
|
+
"http-body-util",
|
|
2164
|
+
"hyper",
|
|
2165
|
+
"hyper-rustls",
|
|
2166
|
+
"hyper-util",
|
|
2167
|
+
"log 0.4.25",
|
|
2168
|
+
"lz4_flex",
|
|
2169
|
+
"minicbor",
|
|
2170
|
+
"num_enum",
|
|
2171
|
+
"oslog",
|
|
2172
|
+
"pqcrypto-mlkem",
|
|
2173
|
+
"pqcrypto-traits",
|
|
2174
|
+
"rand_core",
|
|
2175
|
+
"rsa",
|
|
2176
|
+
"rustls",
|
|
2177
|
+
"serde",
|
|
2178
|
+
"serde_bytes",
|
|
2179
|
+
"serde_json",
|
|
2180
|
+
"sha2",
|
|
2181
|
+
"sha3",
|
|
2182
|
+
"simple_logger",
|
|
2183
|
+
"thiserror 2.0.11",
|
|
2184
|
+
"tokio",
|
|
2185
|
+
"uniffi",
|
|
2186
|
+
"zeroize",
|
|
2187
|
+
]
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "tutao_node-mimimi"
|
|
2191
|
+
version = "267.250206.0"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"async-trait",
|
|
2194
|
+
"base64",
|
|
2195
|
+
"log 0.4.25",
|
|
2196
|
+
"mail-builder",
|
|
2197
|
+
"mail-parser",
|
|
2198
|
+
"napi",
|
|
2199
|
+
"napi-build",
|
|
2200
|
+
"napi-derive",
|
|
2201
|
+
"rand",
|
|
2202
|
+
"regex",
|
|
2203
|
+
"serde",
|
|
2204
|
+
"serde_json",
|
|
2205
|
+
"thiserror 2.0.11",
|
|
2206
|
+
"tokio",
|
|
2207
|
+
"tuta-sdk",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "typenum"
|
|
2212
|
+
version = "1.17.0"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
2215
|
+
|
|
2216
|
+
[[package]]
|
|
2217
|
+
name = "unarray"
|
|
2218
|
+
version = "0.1.4"
|
|
2219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "unicase"
|
|
2224
|
+
version = "2.8.1"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "unicode-ident"
|
|
2230
|
+
version = "1.0.15"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "unicode-segmentation"
|
|
2236
|
+
version = "1.12.0"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
2239
|
+
|
|
2240
|
+
[[package]]
|
|
2241
|
+
name = "uniffi"
|
|
2242
|
+
version = "0.27.1"
|
|
2243
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2244
|
+
dependencies = [
|
|
2245
|
+
"anyhow",
|
|
2246
|
+
"uniffi_build",
|
|
2247
|
+
"uniffi_core",
|
|
2248
|
+
"uniffi_macros",
|
|
2249
|
+
]
|
|
2250
|
+
|
|
2251
|
+
[[package]]
|
|
2252
|
+
name = "uniffi_bindgen"
|
|
2253
|
+
version = "0.27.1"
|
|
2254
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"anyhow",
|
|
2257
|
+
"askama",
|
|
2258
|
+
"camino",
|
|
2259
|
+
"cargo_metadata",
|
|
2260
|
+
"fs-err",
|
|
2261
|
+
"glob",
|
|
2262
|
+
"goblin",
|
|
2263
|
+
"heck",
|
|
2264
|
+
"once_cell",
|
|
2265
|
+
"paste",
|
|
2266
|
+
"serde",
|
|
2267
|
+
"textwrap",
|
|
2268
|
+
"toml",
|
|
2269
|
+
"uniffi_meta",
|
|
2270
|
+
"uniffi_testing",
|
|
2271
|
+
"uniffi_udl",
|
|
2272
|
+
]
|
|
2273
|
+
|
|
2274
|
+
[[package]]
|
|
2275
|
+
name = "uniffi_build"
|
|
2276
|
+
version = "0.27.1"
|
|
2277
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2278
|
+
dependencies = [
|
|
2279
|
+
"anyhow",
|
|
2280
|
+
"camino",
|
|
2281
|
+
"uniffi_bindgen",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "uniffi_checksum_derive"
|
|
2286
|
+
version = "0.27.1"
|
|
2287
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"quote",
|
|
2290
|
+
"syn",
|
|
2291
|
+
]
|
|
2292
|
+
|
|
2293
|
+
[[package]]
|
|
2294
|
+
name = "uniffi_core"
|
|
2295
|
+
version = "0.27.1"
|
|
2296
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2297
|
+
dependencies = [
|
|
2298
|
+
"anyhow",
|
|
2299
|
+
"bytes",
|
|
2300
|
+
"camino",
|
|
2301
|
+
"log 0.4.25",
|
|
2302
|
+
"once_cell",
|
|
2303
|
+
"paste",
|
|
2304
|
+
"static_assertions",
|
|
2305
|
+
]
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "uniffi_macros"
|
|
2309
|
+
version = "0.27.1"
|
|
2310
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2311
|
+
dependencies = [
|
|
2312
|
+
"bincode",
|
|
2313
|
+
"camino",
|
|
2314
|
+
"fs-err",
|
|
2315
|
+
"once_cell",
|
|
2316
|
+
"proc-macro2",
|
|
2317
|
+
"quote",
|
|
2318
|
+
"serde",
|
|
2319
|
+
"syn",
|
|
2320
|
+
"toml",
|
|
2321
|
+
"uniffi_meta",
|
|
2322
|
+
]
|
|
2323
|
+
|
|
2324
|
+
[[package]]
|
|
2325
|
+
name = "uniffi_meta"
|
|
2326
|
+
version = "0.27.1"
|
|
2327
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2328
|
+
dependencies = [
|
|
2329
|
+
"anyhow",
|
|
2330
|
+
"bytes",
|
|
2331
|
+
"siphasher",
|
|
2332
|
+
"uniffi_checksum_derive",
|
|
2333
|
+
]
|
|
2334
|
+
|
|
2335
|
+
[[package]]
|
|
2336
|
+
name = "uniffi_testing"
|
|
2337
|
+
version = "0.27.1"
|
|
2338
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2339
|
+
dependencies = [
|
|
2340
|
+
"anyhow",
|
|
2341
|
+
"camino",
|
|
2342
|
+
"cargo_metadata",
|
|
2343
|
+
"fs-err",
|
|
2344
|
+
"once_cell",
|
|
2345
|
+
]
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "uniffi_udl"
|
|
2349
|
+
version = "0.27.1"
|
|
2350
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"anyhow",
|
|
2353
|
+
"textwrap",
|
|
2354
|
+
"uniffi_meta",
|
|
2355
|
+
"uniffi_testing",
|
|
2356
|
+
"weedle2",
|
|
2357
|
+
]
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "untrusted"
|
|
2361
|
+
version = "0.9.0"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "version_check"
|
|
2367
|
+
version = "0.9.5"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "want"
|
|
2373
|
+
version = "0.3.1"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2376
|
+
dependencies = [
|
|
2377
|
+
"try-lock",
|
|
2378
|
+
]
|
|
2379
|
+
|
|
2380
|
+
[[package]]
|
|
2381
|
+
name = "wasi"
|
|
2382
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2385
|
+
|
|
2386
|
+
[[package]]
|
|
2387
|
+
name = "weedle2"
|
|
2388
|
+
version = "5.0.0"
|
|
2389
|
+
source = "git+https://github.com/mozilla/uniffi-rs.git?rev=13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c#13a1c559cb3708eeca40dcf95dc8b3ccccf3b88c"
|
|
2390
|
+
dependencies = [
|
|
2391
|
+
"nom",
|
|
2392
|
+
]
|
|
2393
|
+
|
|
2394
|
+
[[package]]
|
|
2395
|
+
name = "which"
|
|
2396
|
+
version = "4.4.2"
|
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
2399
|
+
dependencies = [
|
|
2400
|
+
"either",
|
|
2401
|
+
"home",
|
|
2402
|
+
"once_cell",
|
|
2403
|
+
"rustix",
|
|
2404
|
+
]
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "windows-sys"
|
|
2408
|
+
version = "0.48.0"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2411
|
+
dependencies = [
|
|
2412
|
+
"windows-targets 0.48.5",
|
|
2413
|
+
]
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "windows-sys"
|
|
2417
|
+
version = "0.52.0"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"windows-targets 0.52.6",
|
|
2422
|
+
]
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "windows-sys"
|
|
2426
|
+
version = "0.59.0"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2429
|
+
dependencies = [
|
|
2430
|
+
"windows-targets 0.52.6",
|
|
2431
|
+
]
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "windows-targets"
|
|
2435
|
+
version = "0.48.5"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2440
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2441
|
+
"windows_i686_gnu 0.48.5",
|
|
2442
|
+
"windows_i686_msvc 0.48.5",
|
|
2443
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2444
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2445
|
+
"windows_x86_64_msvc 0.48.5",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "windows-targets"
|
|
2450
|
+
version = "0.52.6"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2455
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2456
|
+
"windows_i686_gnu 0.52.6",
|
|
2457
|
+
"windows_i686_gnullvm",
|
|
2458
|
+
"windows_i686_msvc 0.52.6",
|
|
2459
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2460
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2461
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "windows_aarch64_gnullvm"
|
|
2466
|
+
version = "0.48.5"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2469
|
+
|
|
2470
|
+
[[package]]
|
|
2471
|
+
name = "windows_aarch64_gnullvm"
|
|
2472
|
+
version = "0.52.6"
|
|
2473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2475
|
+
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "windows_aarch64_msvc"
|
|
2478
|
+
version = "0.48.5"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "windows_aarch64_msvc"
|
|
2484
|
+
version = "0.52.6"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "windows_i686_gnu"
|
|
2490
|
+
version = "0.48.5"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "windows_i686_gnu"
|
|
2496
|
+
version = "0.52.6"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "windows_i686_gnullvm"
|
|
2502
|
+
version = "0.52.6"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2505
|
+
|
|
2506
|
+
[[package]]
|
|
2507
|
+
name = "windows_i686_msvc"
|
|
2508
|
+
version = "0.48.5"
|
|
2509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "windows_i686_msvc"
|
|
2514
|
+
version = "0.52.6"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2517
|
+
|
|
2518
|
+
[[package]]
|
|
2519
|
+
name = "windows_x86_64_gnu"
|
|
2520
|
+
version = "0.48.5"
|
|
2521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "windows_x86_64_gnu"
|
|
2526
|
+
version = "0.52.6"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2529
|
+
|
|
2530
|
+
[[package]]
|
|
2531
|
+
name = "windows_x86_64_gnullvm"
|
|
2532
|
+
version = "0.48.5"
|
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "windows_x86_64_gnullvm"
|
|
2538
|
+
version = "0.52.6"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "windows_x86_64_msvc"
|
|
2544
|
+
version = "0.48.5"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "windows_x86_64_msvc"
|
|
2550
|
+
version = "0.52.6"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "winnow"
|
|
2556
|
+
version = "0.6.24"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"memchr",
|
|
2561
|
+
]
|
|
2562
|
+
|
|
2563
|
+
[[package]]
|
|
2564
|
+
name = "zerocopy"
|
|
2565
|
+
version = "0.7.35"
|
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
2568
|
+
dependencies = [
|
|
2569
|
+
"byteorder",
|
|
2570
|
+
"zerocopy-derive",
|
|
2571
|
+
]
|
|
2572
|
+
|
|
2573
|
+
[[package]]
|
|
2574
|
+
name = "zerocopy-derive"
|
|
2575
|
+
version = "0.7.35"
|
|
2576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2578
|
+
dependencies = [
|
|
2579
|
+
"proc-macro2",
|
|
2580
|
+
"quote",
|
|
2581
|
+
"syn",
|
|
2582
|
+
]
|
|
2583
|
+
|
|
2584
|
+
[[package]]
|
|
2585
|
+
name = "zeroize"
|
|
2586
|
+
version = "1.8.1"
|
|
2587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
2589
|
+
dependencies = [
|
|
2590
|
+
"zeroize_derive",
|
|
2591
|
+
]
|
|
2592
|
+
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "zeroize_derive"
|
|
2595
|
+
version = "1.4.2"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
2598
|
+
dependencies = [
|
|
2599
|
+
"proc-macro2",
|
|
2600
|
+
"quote",
|
|
2601
|
+
"syn",
|
|
2602
|
+
]
|