davey 0.1.0rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- davey-0.1.0rc1/Cargo.lock +2216 -0
- davey-0.1.0rc1/Cargo.toml +10 -0
- davey-0.1.0rc1/PKG-INFO +22 -0
- davey-0.1.0rc1/davey/Cargo.toml +44 -0
- davey-0.1.0rc1/davey/README.md +7 -0
- davey-0.1.0rc1/davey/src/aes_gcm.rs +257 -0
- davey-0.1.0rc1/davey/src/cryptor/aead_cipher.rs +43 -0
- davey-0.1.0rc1/davey/src/cryptor/codec_utils.rs +49 -0
- davey-0.1.0rc1/davey/src/cryptor/cryptor_manager.rs +248 -0
- davey-0.1.0rc1/davey/src/cryptor/decryptor.rs +256 -0
- davey-0.1.0rc1/davey/src/cryptor/encryptor.rs +301 -0
- davey-0.1.0rc1/davey/src/cryptor/frame_processors.rs +409 -0
- davey-0.1.0rc1/davey/src/cryptor/hash_ratchet.rs +105 -0
- davey-0.1.0rc1/davey/src/cryptor/leb128.rs +40 -0
- davey-0.1.0rc1/davey/src/cryptor/mlspp_crypto.rs +93 -0
- davey-0.1.0rc1/davey/src/cryptor/mod.rs +67 -0
- davey-0.1.0rc1/davey/src/displayable_code.rs +56 -0
- davey-0.1.0rc1/davey/src/errors.rs +265 -0
- davey-0.1.0rc1/davey/src/fingerprint.rs +73 -0
- davey-0.1.0rc1/davey/src/lib.rs +19 -0
- davey-0.1.0rc1/davey/src/session.rs +919 -0
- davey-0.1.0rc1/davey/src/signing_key_pair.rs +25 -0
- davey-0.1.0rc1/davey-python/.gitignore +72 -0
- davey-0.1.0rc1/davey-python/CHANGELOG.md +6 -0
- davey-0.1.0rc1/davey-python/Cargo.toml +13 -0
- davey-0.1.0rc1/davey-python/davey.pyi +170 -0
- davey-0.1.0rc1/davey-python/src/displayable_code.rs +13 -0
- davey-0.1.0rc1/davey-python/src/fingerprint.rs +25 -0
- davey-0.1.0rc1/davey-python/src/lib.rs +46 -0
- davey-0.1.0rc1/davey-python/src/session.rs +302 -0
- davey-0.1.0rc1/davey-python/src/signing_key_pair.rs +52 -0
- davey-0.1.0rc1/davey-python/test/test_displayable_code.py +31 -0
- davey-0.1.0rc1/davey-python/test/test_fingerprint.py +190 -0
- davey-0.1.0rc1/davey-python/test/test_session.py +284 -0
- davey-0.1.0rc1/davey-python/test/test_signing_key_pair.py +8 -0
- davey-0.1.0rc1/davey-python/test/test_version.py +10 -0
- davey-0.1.0rc1/pyproject.toml +45 -0
|
@@ -0,0 +1,2216 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aead"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"crypto-common",
|
|
12
|
+
"generic-array",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "aes"
|
|
17
|
+
version = "0.8.4"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"cfg-if",
|
|
22
|
+
"cipher",
|
|
23
|
+
"cpufeatures",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "aes-gcm"
|
|
28
|
+
version = "0.10.3"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"aead",
|
|
33
|
+
"aes",
|
|
34
|
+
"cipher",
|
|
35
|
+
"ctr",
|
|
36
|
+
"ghash",
|
|
37
|
+
"subtle",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "autocfg"
|
|
42
|
+
version = "1.5.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "base16ct"
|
|
48
|
+
version = "0.2.0"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "base64ct"
|
|
54
|
+
version = "1.8.0"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "bitflags"
|
|
60
|
+
version = "1.3.2"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "bitflags"
|
|
66
|
+
version = "2.9.4"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "block-buffer"
|
|
72
|
+
version = "0.10.4"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"generic-array",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "bumpalo"
|
|
81
|
+
version = "3.19.0"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "cfg-if"
|
|
87
|
+
version = "1.0.3"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "chacha20"
|
|
93
|
+
version = "0.9.1"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"cfg-if",
|
|
98
|
+
"cipher",
|
|
99
|
+
"cpufeatures",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "chacha20poly1305"
|
|
104
|
+
version = "0.10.1"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"aead",
|
|
109
|
+
"chacha20",
|
|
110
|
+
"cipher",
|
|
111
|
+
"poly1305",
|
|
112
|
+
"zeroize",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "cipher"
|
|
117
|
+
version = "0.4.4"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"crypto-common",
|
|
122
|
+
"inout",
|
|
123
|
+
"zeroize",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "const-oid"
|
|
128
|
+
version = "0.9.6"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "convert_case"
|
|
134
|
+
version = "0.8.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"unicode-segmentation",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "core-models"
|
|
143
|
+
version = "0.0.3"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "94950e87ea550d6d68f1993f3e7bebc8cb7235157bff84337d46195c3aa0b3f0"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"hax-lib",
|
|
148
|
+
"pastey",
|
|
149
|
+
"rand 0.9.2",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "cpufeatures"
|
|
154
|
+
version = "0.2.17"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"libc",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "crossbeam-deque"
|
|
163
|
+
version = "0.8.6"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"crossbeam-epoch",
|
|
168
|
+
"crossbeam-utils",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "crossbeam-epoch"
|
|
173
|
+
version = "0.9.18"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"crossbeam-utils",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "crossbeam-utils"
|
|
182
|
+
version = "0.8.21"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "crypto-bigint"
|
|
188
|
+
version = "0.5.5"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"generic-array",
|
|
193
|
+
"rand_core 0.6.4",
|
|
194
|
+
"subtle",
|
|
195
|
+
"zeroize",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "crypto-common"
|
|
200
|
+
version = "0.1.6"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"generic-array",
|
|
205
|
+
"rand_core 0.6.4",
|
|
206
|
+
"typenum",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "ctor"
|
|
211
|
+
version = "0.5.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"ctor-proc-macro",
|
|
216
|
+
"dtor",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "ctor-proc-macro"
|
|
221
|
+
version = "0.0.6"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "ctr"
|
|
227
|
+
version = "0.9.2"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"cipher",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "curve25519-dalek"
|
|
236
|
+
version = "4.1.3"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"cfg-if",
|
|
241
|
+
"cpufeatures",
|
|
242
|
+
"curve25519-dalek-derive",
|
|
243
|
+
"digest",
|
|
244
|
+
"fiat-crypto",
|
|
245
|
+
"rustc_version",
|
|
246
|
+
"subtle",
|
|
247
|
+
"zeroize",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "curve25519-dalek-derive"
|
|
252
|
+
version = "0.1.1"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"proc-macro2",
|
|
257
|
+
"quote",
|
|
258
|
+
"syn",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "davey"
|
|
263
|
+
version = "0.0.1-pre.3"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"aead",
|
|
266
|
+
"aes",
|
|
267
|
+
"cipher",
|
|
268
|
+
"ctr",
|
|
269
|
+
"ghash",
|
|
270
|
+
"hex-literal",
|
|
271
|
+
"hmac",
|
|
272
|
+
"napi",
|
|
273
|
+
"napi-derive",
|
|
274
|
+
"num-derive",
|
|
275
|
+
"num-traits",
|
|
276
|
+
"openmls",
|
|
277
|
+
"openmls_basic_credential",
|
|
278
|
+
"openmls_rust_crypto",
|
|
279
|
+
"p256",
|
|
280
|
+
"pyo3",
|
|
281
|
+
"rand 0.8.5",
|
|
282
|
+
"scrypt",
|
|
283
|
+
"sha2",
|
|
284
|
+
"subtle",
|
|
285
|
+
"thiserror",
|
|
286
|
+
"tracing",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "davey-python"
|
|
291
|
+
version = "0.1.0-pre.1"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"davey",
|
|
294
|
+
"pyo3",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "der"
|
|
299
|
+
version = "0.7.10"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"const-oid",
|
|
304
|
+
"pem-rfc7468",
|
|
305
|
+
"zeroize",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "digest"
|
|
310
|
+
version = "0.10.7"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"block-buffer",
|
|
315
|
+
"const-oid",
|
|
316
|
+
"crypto-common",
|
|
317
|
+
"subtle",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "dtor"
|
|
322
|
+
version = "0.1.0"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"dtor-proc-macro",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "dtor-proc-macro"
|
|
331
|
+
version = "0.0.6"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "ecdsa"
|
|
337
|
+
version = "0.16.9"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"der",
|
|
342
|
+
"digest",
|
|
343
|
+
"elliptic-curve",
|
|
344
|
+
"rfc6979",
|
|
345
|
+
"signature",
|
|
346
|
+
"spki",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "ed25519"
|
|
351
|
+
version = "2.2.3"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"pkcs8",
|
|
356
|
+
"signature",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "ed25519-dalek"
|
|
361
|
+
version = "2.2.0"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"curve25519-dalek",
|
|
366
|
+
"ed25519",
|
|
367
|
+
"rand_core 0.6.4",
|
|
368
|
+
"serde",
|
|
369
|
+
"sha2",
|
|
370
|
+
"subtle",
|
|
371
|
+
"zeroize",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "either"
|
|
376
|
+
version = "1.15.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "elliptic-curve"
|
|
382
|
+
version = "0.13.8"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"base16ct",
|
|
387
|
+
"crypto-bigint",
|
|
388
|
+
"digest",
|
|
389
|
+
"ff",
|
|
390
|
+
"generic-array",
|
|
391
|
+
"group",
|
|
392
|
+
"hkdf",
|
|
393
|
+
"pem-rfc7468",
|
|
394
|
+
"pkcs8",
|
|
395
|
+
"rand_core 0.6.4",
|
|
396
|
+
"sec1",
|
|
397
|
+
"subtle",
|
|
398
|
+
"zeroize",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "ff"
|
|
403
|
+
version = "0.13.1"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"rand_core 0.6.4",
|
|
408
|
+
"subtle",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "fiat-crypto"
|
|
413
|
+
version = "0.2.9"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "fluvio-wasm-timer"
|
|
419
|
+
version = "0.2.5"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "b768c170dc045fa587a8f948c91f9bcfb87f774930477c6215addf54317f137f"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"futures",
|
|
424
|
+
"js-sys",
|
|
425
|
+
"parking_lot",
|
|
426
|
+
"pin-utils",
|
|
427
|
+
"wasm-bindgen",
|
|
428
|
+
"wasm-bindgen-futures",
|
|
429
|
+
"web-sys",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "futures"
|
|
434
|
+
version = "0.3.31"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"futures-channel",
|
|
439
|
+
"futures-core",
|
|
440
|
+
"futures-executor",
|
|
441
|
+
"futures-io",
|
|
442
|
+
"futures-sink",
|
|
443
|
+
"futures-task",
|
|
444
|
+
"futures-util",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "futures-channel"
|
|
449
|
+
version = "0.3.31"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"futures-core",
|
|
454
|
+
"futures-sink",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "futures-core"
|
|
459
|
+
version = "0.3.31"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "futures-executor"
|
|
465
|
+
version = "0.3.31"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"futures-core",
|
|
470
|
+
"futures-task",
|
|
471
|
+
"futures-util",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "futures-io"
|
|
476
|
+
version = "0.3.31"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "futures-macro"
|
|
482
|
+
version = "0.3.31"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"proc-macro2",
|
|
487
|
+
"quote",
|
|
488
|
+
"syn",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "futures-sink"
|
|
493
|
+
version = "0.3.31"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "futures-task"
|
|
499
|
+
version = "0.3.31"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "futures-util"
|
|
505
|
+
version = "0.3.31"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"futures-channel",
|
|
510
|
+
"futures-core",
|
|
511
|
+
"futures-io",
|
|
512
|
+
"futures-macro",
|
|
513
|
+
"futures-sink",
|
|
514
|
+
"futures-task",
|
|
515
|
+
"memchr",
|
|
516
|
+
"pin-project-lite",
|
|
517
|
+
"pin-utils",
|
|
518
|
+
"slab",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "generic-array"
|
|
523
|
+
version = "0.14.7"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"typenum",
|
|
528
|
+
"version_check",
|
|
529
|
+
"zeroize",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "getrandom"
|
|
534
|
+
version = "0.2.16"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"cfg-if",
|
|
539
|
+
"js-sys",
|
|
540
|
+
"libc",
|
|
541
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
542
|
+
"wasm-bindgen",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "getrandom"
|
|
547
|
+
version = "0.3.3"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"cfg-if",
|
|
552
|
+
"libc",
|
|
553
|
+
"r-efi",
|
|
554
|
+
"wasi 0.14.3+wasi-0.2.4",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "ghash"
|
|
559
|
+
version = "0.5.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"opaque-debug",
|
|
564
|
+
"polyval",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "group"
|
|
569
|
+
version = "0.13.0"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"ff",
|
|
574
|
+
"rand_core 0.6.4",
|
|
575
|
+
"subtle",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "hax-lib"
|
|
580
|
+
version = "0.3.4"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "7bf40682e31dc3961209a4657f6fe7c412879b59f212bac3d14bd7ece5af76a3"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"hax-lib-macros",
|
|
585
|
+
"num-bigint",
|
|
586
|
+
"num-traits",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "hax-lib-macros"
|
|
591
|
+
version = "0.3.4"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "e33a5a4ff169bcc4e9189f4bace3ed22d03fcd8e52eee90a00b7b1e2621cb490"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"hax-lib-macros-types",
|
|
596
|
+
"proc-macro-error2",
|
|
597
|
+
"proc-macro2",
|
|
598
|
+
"quote",
|
|
599
|
+
"syn",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "hax-lib-macros-types"
|
|
604
|
+
version = "0.3.4"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "a39dc59c01c2eec9bce75698c4f9ca01d11759ace2a28e1691b66fb0008c6a21"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"proc-macro2",
|
|
609
|
+
"quote",
|
|
610
|
+
"serde",
|
|
611
|
+
"serde_json",
|
|
612
|
+
"uuid",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "heck"
|
|
617
|
+
version = "0.5.0"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "hex-literal"
|
|
623
|
+
version = "0.3.4"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "hkdf"
|
|
629
|
+
version = "0.12.4"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"hmac",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "hmac"
|
|
638
|
+
version = "0.12.1"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"digest",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "hpke-rs"
|
|
647
|
+
version = "0.3.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "36874953dfe0223fd877a77b0eefcd84f8da36161b446c6fcb47b8311fa0251a"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"hpke-rs-crypto",
|
|
652
|
+
"hpke-rs-libcrux",
|
|
653
|
+
"hpke-rs-rust-crypto",
|
|
654
|
+
"libcrux-sha3",
|
|
655
|
+
"log",
|
|
656
|
+
"rand_core 0.9.3",
|
|
657
|
+
"serde",
|
|
658
|
+
"tls_codec",
|
|
659
|
+
"zeroize",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "hpke-rs-crypto"
|
|
664
|
+
version = "0.3.0"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "d51ffd304e06803f90f2e56a24a6910f19b8516f842d7b72a436c51026279876"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"rand_core 0.9.3",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "hpke-rs-libcrux"
|
|
673
|
+
version = "0.3.0"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "bb9f3bdfd7bc6a45f985b47cce25c5409312af06c2dec07a2af2cca5c89579ae"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"hpke-rs-crypto",
|
|
678
|
+
"libcrux-chacha20poly1305",
|
|
679
|
+
"libcrux-ecdh",
|
|
680
|
+
"libcrux-hkdf",
|
|
681
|
+
"libcrux-kem",
|
|
682
|
+
"rand 0.9.2",
|
|
683
|
+
"rand_chacha 0.9.0",
|
|
684
|
+
"rand_core 0.9.3",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "hpke-rs-rust-crypto"
|
|
689
|
+
version = "0.3.0"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "ff7dc0df494528a0b90005bb511c117453c6a89cd8819f6cf311d0f4446dcf45"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"aes-gcm",
|
|
694
|
+
"chacha20poly1305",
|
|
695
|
+
"hkdf",
|
|
696
|
+
"hpke-rs-crypto",
|
|
697
|
+
"k256",
|
|
698
|
+
"p256",
|
|
699
|
+
"p384",
|
|
700
|
+
"rand 0.8.5",
|
|
701
|
+
"rand_chacha 0.3.1",
|
|
702
|
+
"rand_core 0.6.4",
|
|
703
|
+
"sha2",
|
|
704
|
+
"x25519-dalek",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "indoc"
|
|
709
|
+
version = "2.0.6"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "inout"
|
|
715
|
+
version = "0.1.4"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"generic-array",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "instant"
|
|
724
|
+
version = "0.1.13"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"cfg-if",
|
|
729
|
+
"js-sys",
|
|
730
|
+
"wasm-bindgen",
|
|
731
|
+
"web-sys",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "itoa"
|
|
736
|
+
version = "1.0.15"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "js-sys"
|
|
742
|
+
version = "0.3.77"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"once_cell",
|
|
747
|
+
"wasm-bindgen",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "k256"
|
|
752
|
+
version = "0.13.4"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"cfg-if",
|
|
757
|
+
"elliptic-curve",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "lazy_static"
|
|
762
|
+
version = "1.5.0"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "libc"
|
|
768
|
+
version = "0.2.175"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "libcrux-chacha20poly1305"
|
|
774
|
+
version = "0.0.3"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "43b318f5f2b32dfbfd27d1c5a3201d27b2ac7a4b4a4bf15ea754a385e6c294c5"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"libcrux-hacl-rs",
|
|
779
|
+
"libcrux-macros",
|
|
780
|
+
"libcrux-poly1305",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "libcrux-curve25519"
|
|
785
|
+
version = "0.0.3"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "5514645ba1ee6c55dd71d62a50cc37ad8aab3f956826001aa8dad17482655c46"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"libcrux-hacl-rs",
|
|
790
|
+
"libcrux-macros",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "libcrux-ecdh"
|
|
795
|
+
version = "0.0.3"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "6c4fa67cad871d7be9175141b23a174b77536b039945c91b6a5a6d697acd6371"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"libcrux-curve25519",
|
|
800
|
+
"libcrux-p256",
|
|
801
|
+
"rand 0.9.2",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "libcrux-hacl-rs"
|
|
806
|
+
version = "0.0.3"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "1134af11da3f24ae8d1a7e2b60ee871c9e3ffd3d8857deaeebab8088b005addd"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"libcrux-macros",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "libcrux-hkdf"
|
|
815
|
+
version = "0.0.3"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "ed7a54a1b453200e8a18205ffbecbb0fee0cce9ec8d0bd635898b7eb2879ac06"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"libcrux-hacl-rs",
|
|
820
|
+
"libcrux-hmac",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "libcrux-hmac"
|
|
825
|
+
version = "0.0.3"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "743cdf6149a46b2cd5f62bea237a7c57011e85055486fc031513e1261cc6692e"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"libcrux-hacl-rs",
|
|
830
|
+
"libcrux-macros",
|
|
831
|
+
"libcrux-sha2",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "libcrux-intrinsics"
|
|
836
|
+
version = "0.0.3"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "5d3b41dcbc21a5fb7efbbb5af7405b2e79c4bfe443924e90b13afc0080318d31"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"core-models",
|
|
841
|
+
"hax-lib",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "libcrux-kem"
|
|
846
|
+
version = "0.0.3"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "eefe0e9579f058b99995cbaf918de3cbab90c4d2dde544fe75247fb027ff5af9"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"libcrux-ecdh",
|
|
851
|
+
"libcrux-ml-kem",
|
|
852
|
+
"libcrux-sha3",
|
|
853
|
+
"libcrux-traits",
|
|
854
|
+
"rand 0.9.2",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "libcrux-macros"
|
|
859
|
+
version = "0.0.3"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "ffd6aa2dcd5be681662001b81d493f1569c6d49a32361f470b0c955465cd0338"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"quote",
|
|
864
|
+
"syn",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "libcrux-ml-kem"
|
|
869
|
+
version = "0.0.3"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "5d368d3e8d6a74e277178d54921eca112a1e6b7837d7d8bc555091acb5d817f5"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"hax-lib",
|
|
874
|
+
"libcrux-intrinsics",
|
|
875
|
+
"libcrux-platform",
|
|
876
|
+
"libcrux-secrets",
|
|
877
|
+
"libcrux-sha3",
|
|
878
|
+
"rand 0.9.2",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "libcrux-p256"
|
|
883
|
+
version = "0.0.3"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "b00d21690ebcc7ce1f242e6c4bdadfd8529f9cf2d7b961c0344c9bcb2c82f78f"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"libcrux-hacl-rs",
|
|
888
|
+
"libcrux-macros",
|
|
889
|
+
"libcrux-sha2",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "libcrux-platform"
|
|
894
|
+
version = "0.0.2"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "db82d058aa76ea315a3b2092f69dfbd67ddb0e462038a206e1dcd73f058c0778"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"libc",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "libcrux-poly1305"
|
|
903
|
+
version = "0.0.3"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "c1a2901c5a92bb236cacd3d16bd6654b7f3471eb417bedab85f6225060cd4a03"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"libcrux-hacl-rs",
|
|
908
|
+
"libcrux-macros",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "libcrux-secrets"
|
|
913
|
+
version = "0.0.3"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "332737e629fe6ba7547f5c0f90559eac865d5dbecf98138ffae8f16ab8cbe33f"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"hax-lib",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "libcrux-sha2"
|
|
922
|
+
version = "0.0.3"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "91eed3bb0ae073f46ae03c83318013fba6e3302bf3292639417b68e908fec4bf"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"libcrux-hacl-rs",
|
|
927
|
+
"libcrux-macros",
|
|
928
|
+
"libcrux-traits",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "libcrux-sha3"
|
|
933
|
+
version = "0.0.3"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "29d95de4257eafdfaf3bffecadb615219b0ca920c553722b3646d32dde76c797"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"hax-lib",
|
|
938
|
+
"libcrux-intrinsics",
|
|
939
|
+
"libcrux-platform",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "libcrux-traits"
|
|
944
|
+
version = "0.0.3"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "0cdbf9591a39f04d6da6b9bad51ac58378604a80708c2173dadf92029891b9e2"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"rand 0.9.2",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "libloading"
|
|
953
|
+
version = "0.8.8"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"cfg-if",
|
|
958
|
+
"windows-targets 0.53.3",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "lock_api"
|
|
963
|
+
version = "0.4.13"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"autocfg",
|
|
968
|
+
"scopeguard",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "log"
|
|
973
|
+
version = "0.4.27"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "memchr"
|
|
979
|
+
version = "2.7.5"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "memoffset"
|
|
985
|
+
version = "0.9.1"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"autocfg",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "napi"
|
|
994
|
+
version = "3.2.4"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "fc1d56eed08a179e1c5bedb1613c58e882087cec97fcaa7788cc42366335a41d"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"bitflags 2.9.4",
|
|
999
|
+
"ctor",
|
|
1000
|
+
"napi-build",
|
|
1001
|
+
"napi-sys",
|
|
1002
|
+
"nohash-hasher",
|
|
1003
|
+
"rustc-hash",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "napi-build"
|
|
1008
|
+
version = "2.2.3"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14"
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "napi-derive"
|
|
1014
|
+
version = "3.2.4"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "3a9ad4169931359f24cc9ad3fae4ab272f0390c59f7a764f7719b1b8a3dde1af"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"convert_case",
|
|
1019
|
+
"ctor",
|
|
1020
|
+
"napi-derive-backend",
|
|
1021
|
+
"proc-macro2",
|
|
1022
|
+
"quote",
|
|
1023
|
+
"syn",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "napi-derive-backend"
|
|
1028
|
+
version = "2.1.4"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "55a014314cb458d5832b4fc7d0041764ac136396447303d95e3fa0a5ea7cf5d3"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"convert_case",
|
|
1033
|
+
"proc-macro2",
|
|
1034
|
+
"quote",
|
|
1035
|
+
"semver",
|
|
1036
|
+
"syn",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "napi-sys"
|
|
1041
|
+
version = "3.0.0"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "3e4e7135a8f97aa0f1509cce21a8a1f9dcec1b50d8dee006b48a5adb69a9d64d"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"libloading",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "nohash-hasher"
|
|
1050
|
+
version = "0.2.0"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "nu-ansi-term"
|
|
1056
|
+
version = "0.50.1"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"windows-sys",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "num-bigint"
|
|
1065
|
+
version = "0.4.6"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1068
|
+
dependencies = [
|
|
1069
|
+
"num-integer",
|
|
1070
|
+
"num-traits",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "num-derive"
|
|
1075
|
+
version = "0.4.2"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"proc-macro2",
|
|
1080
|
+
"quote",
|
|
1081
|
+
"syn",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "num-integer"
|
|
1086
|
+
version = "0.1.46"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"num-traits",
|
|
1091
|
+
]
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "num-traits"
|
|
1095
|
+
version = "0.2.19"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"autocfg",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "once_cell"
|
|
1104
|
+
version = "1.21.3"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "opaque-debug"
|
|
1110
|
+
version = "0.3.1"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "openmls"
|
|
1116
|
+
version = "0.7.0"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "4d63c0968d4ec14a79259ad7287b03da934ffecd7cddacf9054224cafe8a9aa7"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"fluvio-wasm-timer",
|
|
1121
|
+
"getrandom 0.2.16",
|
|
1122
|
+
"log",
|
|
1123
|
+
"openmls_traits",
|
|
1124
|
+
"rayon",
|
|
1125
|
+
"serde",
|
|
1126
|
+
"thiserror",
|
|
1127
|
+
"tls_codec",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "openmls_basic_credential"
|
|
1132
|
+
version = "0.4.0"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "ef01a72cab1d27a047d47ef3f084f049c2b25a081cd996d3a8904ed16fd523f8"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"ed25519-dalek",
|
|
1137
|
+
"openmls_traits",
|
|
1138
|
+
"p256",
|
|
1139
|
+
"rand 0.8.5",
|
|
1140
|
+
"serde",
|
|
1141
|
+
"tls_codec",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "openmls_memory_storage"
|
|
1146
|
+
version = "0.4.0"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "29ef51988f762610917d071606ec641c6e8007262589634f7b8e77b35ded7423"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"log",
|
|
1151
|
+
"openmls_traits",
|
|
1152
|
+
"serde",
|
|
1153
|
+
"serde_json",
|
|
1154
|
+
"thiserror",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "openmls_rust_crypto"
|
|
1159
|
+
version = "0.4.0"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "a08aebf5bf9ed2ab567b253e6d1b93a5c11e0ce456fe2f8761d80b88a0a90ae0"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"aes-gcm",
|
|
1164
|
+
"chacha20poly1305",
|
|
1165
|
+
"ed25519-dalek",
|
|
1166
|
+
"hkdf",
|
|
1167
|
+
"hmac",
|
|
1168
|
+
"hpke-rs",
|
|
1169
|
+
"hpke-rs-crypto",
|
|
1170
|
+
"hpke-rs-rust-crypto",
|
|
1171
|
+
"openmls_memory_storage",
|
|
1172
|
+
"openmls_traits",
|
|
1173
|
+
"p256",
|
|
1174
|
+
"rand 0.8.5",
|
|
1175
|
+
"rand_chacha 0.3.1",
|
|
1176
|
+
"serde",
|
|
1177
|
+
"sha2",
|
|
1178
|
+
"thiserror",
|
|
1179
|
+
"tls_codec",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "openmls_traits"
|
|
1184
|
+
version = "0.4.0"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "c0b50a33e77f6bb34610f7b10548518abe22858c194d3c994670931510530a74"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"serde",
|
|
1189
|
+
"tls_codec",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "p256"
|
|
1194
|
+
version = "0.13.2"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"ecdsa",
|
|
1199
|
+
"elliptic-curve",
|
|
1200
|
+
"primeorder",
|
|
1201
|
+
"sha2",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "p384"
|
|
1206
|
+
version = "0.13.1"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"elliptic-curve",
|
|
1211
|
+
"primeorder",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "parking_lot"
|
|
1216
|
+
version = "0.11.2"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"instant",
|
|
1221
|
+
"lock_api",
|
|
1222
|
+
"parking_lot_core",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "parking_lot_core"
|
|
1227
|
+
version = "0.8.6"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"cfg-if",
|
|
1232
|
+
"instant",
|
|
1233
|
+
"libc",
|
|
1234
|
+
"redox_syscall",
|
|
1235
|
+
"smallvec",
|
|
1236
|
+
"winapi",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "pastey"
|
|
1241
|
+
version = "0.1.1"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "pbkdf2"
|
|
1247
|
+
version = "0.12.2"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"digest",
|
|
1252
|
+
"hmac",
|
|
1253
|
+
]
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "pem-rfc7468"
|
|
1257
|
+
version = "0.7.0"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
1260
|
+
dependencies = [
|
|
1261
|
+
"base64ct",
|
|
1262
|
+
]
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "pin-project-lite"
|
|
1266
|
+
version = "0.2.16"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "pin-utils"
|
|
1272
|
+
version = "0.1.0"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "pkcs8"
|
|
1278
|
+
version = "0.10.2"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"der",
|
|
1283
|
+
"spki",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "poly1305"
|
|
1288
|
+
version = "0.8.0"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"cpufeatures",
|
|
1293
|
+
"opaque-debug",
|
|
1294
|
+
"universal-hash",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "polyval"
|
|
1299
|
+
version = "0.6.2"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"cfg-if",
|
|
1304
|
+
"cpufeatures",
|
|
1305
|
+
"opaque-debug",
|
|
1306
|
+
"universal-hash",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "portable-atomic"
|
|
1311
|
+
version = "1.11.1"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "ppv-lite86"
|
|
1317
|
+
version = "0.2.21"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"zerocopy",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "primeorder"
|
|
1326
|
+
version = "0.13.6"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"elliptic-curve",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "proc-macro-error-attr2"
|
|
1335
|
+
version = "2.0.0"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"proc-macro2",
|
|
1340
|
+
"quote",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "proc-macro-error2"
|
|
1345
|
+
version = "2.0.1"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"proc-macro-error-attr2",
|
|
1350
|
+
"proc-macro2",
|
|
1351
|
+
"quote",
|
|
1352
|
+
"syn",
|
|
1353
|
+
]
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "proc-macro2"
|
|
1357
|
+
version = "1.0.101"
|
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
1360
|
+
dependencies = [
|
|
1361
|
+
"unicode-ident",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "pyo3"
|
|
1366
|
+
version = "0.25.1"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"indoc",
|
|
1371
|
+
"libc",
|
|
1372
|
+
"memoffset",
|
|
1373
|
+
"once_cell",
|
|
1374
|
+
"portable-atomic",
|
|
1375
|
+
"pyo3-build-config",
|
|
1376
|
+
"pyo3-ffi",
|
|
1377
|
+
"pyo3-macros",
|
|
1378
|
+
"unindent",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "pyo3-build-config"
|
|
1383
|
+
version = "0.25.1"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"once_cell",
|
|
1388
|
+
"target-lexicon",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "pyo3-ffi"
|
|
1393
|
+
version = "0.25.1"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
1396
|
+
dependencies = [
|
|
1397
|
+
"libc",
|
|
1398
|
+
"pyo3-build-config",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "pyo3-macros"
|
|
1403
|
+
version = "0.25.1"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"proc-macro2",
|
|
1408
|
+
"pyo3-macros-backend",
|
|
1409
|
+
"quote",
|
|
1410
|
+
"syn",
|
|
1411
|
+
]
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "pyo3-macros-backend"
|
|
1415
|
+
version = "0.25.1"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"heck",
|
|
1420
|
+
"proc-macro2",
|
|
1421
|
+
"pyo3-build-config",
|
|
1422
|
+
"quote",
|
|
1423
|
+
"syn",
|
|
1424
|
+
]
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "quote"
|
|
1428
|
+
version = "1.0.40"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1431
|
+
dependencies = [
|
|
1432
|
+
"proc-macro2",
|
|
1433
|
+
]
|
|
1434
|
+
|
|
1435
|
+
[[package]]
|
|
1436
|
+
name = "r-efi"
|
|
1437
|
+
version = "5.3.0"
|
|
1438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "rand"
|
|
1443
|
+
version = "0.8.5"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"libc",
|
|
1448
|
+
"rand_chacha 0.3.1",
|
|
1449
|
+
"rand_core 0.6.4",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "rand"
|
|
1454
|
+
version = "0.9.2"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"rand_chacha 0.9.0",
|
|
1459
|
+
"rand_core 0.9.3",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "rand_chacha"
|
|
1464
|
+
version = "0.3.1"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"ppv-lite86",
|
|
1469
|
+
"rand_core 0.6.4",
|
|
1470
|
+
]
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "rand_chacha"
|
|
1474
|
+
version = "0.9.0"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1477
|
+
dependencies = [
|
|
1478
|
+
"ppv-lite86",
|
|
1479
|
+
"rand_core 0.9.3",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "rand_core"
|
|
1484
|
+
version = "0.6.4"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"getrandom 0.2.16",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "rand_core"
|
|
1493
|
+
version = "0.9.3"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"getrandom 0.3.3",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "rayon"
|
|
1502
|
+
version = "1.11.0"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"either",
|
|
1507
|
+
"rayon-core",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "rayon-core"
|
|
1512
|
+
version = "1.13.0"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1515
|
+
dependencies = [
|
|
1516
|
+
"crossbeam-deque",
|
|
1517
|
+
"crossbeam-utils",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "redox_syscall"
|
|
1522
|
+
version = "0.2.16"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"bitflags 1.3.2",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "rfc6979"
|
|
1531
|
+
version = "0.4.0"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"hmac",
|
|
1536
|
+
"subtle",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "rustc-hash"
|
|
1541
|
+
version = "2.1.1"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "rustc_version"
|
|
1547
|
+
version = "0.4.1"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"semver",
|
|
1552
|
+
]
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "rustversion"
|
|
1556
|
+
version = "1.0.22"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "ryu"
|
|
1562
|
+
version = "1.0.20"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "salsa20"
|
|
1568
|
+
version = "0.10.2"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"cipher",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "scopeguard"
|
|
1577
|
+
version = "1.2.0"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "scrypt"
|
|
1583
|
+
version = "0.11.0"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
|
|
1586
|
+
dependencies = [
|
|
1587
|
+
"pbkdf2",
|
|
1588
|
+
"salsa20",
|
|
1589
|
+
"sha2",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "sec1"
|
|
1594
|
+
version = "0.7.3"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"base16ct",
|
|
1599
|
+
"der",
|
|
1600
|
+
"generic-array",
|
|
1601
|
+
"pkcs8",
|
|
1602
|
+
"subtle",
|
|
1603
|
+
"zeroize",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "semver"
|
|
1608
|
+
version = "1.0.26"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "serde"
|
|
1614
|
+
version = "1.0.219"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"serde_derive",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "serde_derive"
|
|
1623
|
+
version = "1.0.219"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"proc-macro2",
|
|
1628
|
+
"quote",
|
|
1629
|
+
"syn",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "serde_json"
|
|
1634
|
+
version = "1.0.143"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
1637
|
+
dependencies = [
|
|
1638
|
+
"itoa",
|
|
1639
|
+
"memchr",
|
|
1640
|
+
"ryu",
|
|
1641
|
+
"serde",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "sha2"
|
|
1646
|
+
version = "0.10.9"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"cfg-if",
|
|
1651
|
+
"cpufeatures",
|
|
1652
|
+
"digest",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "sharded-slab"
|
|
1657
|
+
version = "0.1.7"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"lazy_static",
|
|
1662
|
+
]
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "signature"
|
|
1666
|
+
version = "2.2.0"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"digest",
|
|
1671
|
+
"rand_core 0.6.4",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "slab"
|
|
1676
|
+
version = "0.4.11"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "smallvec"
|
|
1682
|
+
version = "1.15.1"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "snazzah_davey"
|
|
1688
|
+
version = "0.0.0"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"davey",
|
|
1691
|
+
"log",
|
|
1692
|
+
"napi",
|
|
1693
|
+
"napi-build",
|
|
1694
|
+
"napi-derive",
|
|
1695
|
+
"tracing",
|
|
1696
|
+
"tracing-log",
|
|
1697
|
+
"tracing-subscriber",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "spki"
|
|
1702
|
+
version = "0.7.3"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"base64ct",
|
|
1707
|
+
"der",
|
|
1708
|
+
]
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "subtle"
|
|
1712
|
+
version = "2.6.1"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "syn"
|
|
1718
|
+
version = "2.0.106"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
1721
|
+
dependencies = [
|
|
1722
|
+
"proc-macro2",
|
|
1723
|
+
"quote",
|
|
1724
|
+
"unicode-ident",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "target-lexicon"
|
|
1729
|
+
version = "0.13.2"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "thiserror"
|
|
1735
|
+
version = "2.0.16"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"thiserror-impl",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "thiserror-impl"
|
|
1744
|
+
version = "2.0.16"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"proc-macro2",
|
|
1749
|
+
"quote",
|
|
1750
|
+
"syn",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "thread_local"
|
|
1755
|
+
version = "1.1.9"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"cfg-if",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "tls_codec"
|
|
1764
|
+
version = "0.4.2"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"serde",
|
|
1769
|
+
"tls_codec_derive",
|
|
1770
|
+
"zeroize",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "tls_codec_derive"
|
|
1775
|
+
version = "0.4.2"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
|
|
1778
|
+
dependencies = [
|
|
1779
|
+
"proc-macro2",
|
|
1780
|
+
"quote",
|
|
1781
|
+
"syn",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "tracing"
|
|
1786
|
+
version = "0.1.41"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"pin-project-lite",
|
|
1791
|
+
"tracing-attributes",
|
|
1792
|
+
"tracing-core",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "tracing-attributes"
|
|
1797
|
+
version = "0.1.30"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"proc-macro2",
|
|
1802
|
+
"quote",
|
|
1803
|
+
"syn",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "tracing-core"
|
|
1808
|
+
version = "0.1.34"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"once_cell",
|
|
1813
|
+
"valuable",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "tracing-log"
|
|
1818
|
+
version = "0.2.0"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"log",
|
|
1823
|
+
"once_cell",
|
|
1824
|
+
"tracing-core",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "tracing-subscriber"
|
|
1829
|
+
version = "0.3.20"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"nu-ansi-term",
|
|
1834
|
+
"sharded-slab",
|
|
1835
|
+
"smallvec",
|
|
1836
|
+
"thread_local",
|
|
1837
|
+
"tracing-core",
|
|
1838
|
+
"tracing-log",
|
|
1839
|
+
]
|
|
1840
|
+
|
|
1841
|
+
[[package]]
|
|
1842
|
+
name = "typenum"
|
|
1843
|
+
version = "1.18.0"
|
|
1844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1845
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "unicode-ident"
|
|
1849
|
+
version = "1.0.18"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1852
|
+
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "unicode-segmentation"
|
|
1855
|
+
version = "1.12.0"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "unindent"
|
|
1861
|
+
version = "0.2.4"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "universal-hash"
|
|
1867
|
+
version = "0.5.1"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"crypto-common",
|
|
1872
|
+
"subtle",
|
|
1873
|
+
]
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "uuid"
|
|
1877
|
+
version = "1.18.1"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"getrandom 0.3.3",
|
|
1882
|
+
"js-sys",
|
|
1883
|
+
"wasm-bindgen",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "valuable"
|
|
1888
|
+
version = "0.1.1"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "version_check"
|
|
1894
|
+
version = "0.9.5"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "wasi"
|
|
1900
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "wasi"
|
|
1906
|
+
version = "0.14.3+wasi-0.2.4"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"wit-bindgen",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "wasm-bindgen"
|
|
1915
|
+
version = "0.2.100"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1918
|
+
dependencies = [
|
|
1919
|
+
"cfg-if",
|
|
1920
|
+
"once_cell",
|
|
1921
|
+
"rustversion",
|
|
1922
|
+
"wasm-bindgen-macro",
|
|
1923
|
+
]
|
|
1924
|
+
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "wasm-bindgen-backend"
|
|
1927
|
+
version = "0.2.100"
|
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1930
|
+
dependencies = [
|
|
1931
|
+
"bumpalo",
|
|
1932
|
+
"log",
|
|
1933
|
+
"proc-macro2",
|
|
1934
|
+
"quote",
|
|
1935
|
+
"syn",
|
|
1936
|
+
"wasm-bindgen-shared",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "wasm-bindgen-futures"
|
|
1941
|
+
version = "0.4.50"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"cfg-if",
|
|
1946
|
+
"js-sys",
|
|
1947
|
+
"once_cell",
|
|
1948
|
+
"wasm-bindgen",
|
|
1949
|
+
"web-sys",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "wasm-bindgen-macro"
|
|
1954
|
+
version = "0.2.100"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"quote",
|
|
1959
|
+
"wasm-bindgen-macro-support",
|
|
1960
|
+
]
|
|
1961
|
+
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "wasm-bindgen-macro-support"
|
|
1964
|
+
version = "0.2.100"
|
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1967
|
+
dependencies = [
|
|
1968
|
+
"proc-macro2",
|
|
1969
|
+
"quote",
|
|
1970
|
+
"syn",
|
|
1971
|
+
"wasm-bindgen-backend",
|
|
1972
|
+
"wasm-bindgen-shared",
|
|
1973
|
+
]
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "wasm-bindgen-shared"
|
|
1977
|
+
version = "0.2.100"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
1980
|
+
dependencies = [
|
|
1981
|
+
"unicode-ident",
|
|
1982
|
+
]
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "web-sys"
|
|
1986
|
+
version = "0.3.77"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
1989
|
+
dependencies = [
|
|
1990
|
+
"js-sys",
|
|
1991
|
+
"wasm-bindgen",
|
|
1992
|
+
]
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "winapi"
|
|
1996
|
+
version = "0.3.9"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1999
|
+
dependencies = [
|
|
2000
|
+
"winapi-i686-pc-windows-gnu",
|
|
2001
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2006
|
+
version = "0.4.0"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2012
|
+
version = "0.4.0"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "windows-link"
|
|
2018
|
+
version = "0.1.3"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "windows-sys"
|
|
2024
|
+
version = "0.52.0"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"windows-targets 0.52.6",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "windows-targets"
|
|
2033
|
+
version = "0.52.6"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2038
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2039
|
+
"windows_i686_gnu 0.52.6",
|
|
2040
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2041
|
+
"windows_i686_msvc 0.52.6",
|
|
2042
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2043
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2044
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2045
|
+
]
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "windows-targets"
|
|
2049
|
+
version = "0.53.3"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"windows-link",
|
|
2054
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
2055
|
+
"windows_aarch64_msvc 0.53.0",
|
|
2056
|
+
"windows_i686_gnu 0.53.0",
|
|
2057
|
+
"windows_i686_gnullvm 0.53.0",
|
|
2058
|
+
"windows_i686_msvc 0.53.0",
|
|
2059
|
+
"windows_x86_64_gnu 0.53.0",
|
|
2060
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
2061
|
+
"windows_x86_64_msvc 0.53.0",
|
|
2062
|
+
]
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "windows_aarch64_gnullvm"
|
|
2066
|
+
version = "0.52.6"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2069
|
+
|
|
2070
|
+
[[package]]
|
|
2071
|
+
name = "windows_aarch64_gnullvm"
|
|
2072
|
+
version = "0.53.0"
|
|
2073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "windows_aarch64_msvc"
|
|
2078
|
+
version = "0.52.6"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "windows_aarch64_msvc"
|
|
2084
|
+
version = "0.53.0"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
2087
|
+
|
|
2088
|
+
[[package]]
|
|
2089
|
+
name = "windows_i686_gnu"
|
|
2090
|
+
version = "0.52.6"
|
|
2091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2092
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2093
|
+
|
|
2094
|
+
[[package]]
|
|
2095
|
+
name = "windows_i686_gnu"
|
|
2096
|
+
version = "0.53.0"
|
|
2097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "windows_i686_gnullvm"
|
|
2102
|
+
version = "0.52.6"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "windows_i686_gnullvm"
|
|
2108
|
+
version = "0.53.0"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
2111
|
+
|
|
2112
|
+
[[package]]
|
|
2113
|
+
name = "windows_i686_msvc"
|
|
2114
|
+
version = "0.52.6"
|
|
2115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2117
|
+
|
|
2118
|
+
[[package]]
|
|
2119
|
+
name = "windows_i686_msvc"
|
|
2120
|
+
version = "0.53.0"
|
|
2121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
2123
|
+
|
|
2124
|
+
[[package]]
|
|
2125
|
+
name = "windows_x86_64_gnu"
|
|
2126
|
+
version = "0.52.6"
|
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2129
|
+
|
|
2130
|
+
[[package]]
|
|
2131
|
+
name = "windows_x86_64_gnu"
|
|
2132
|
+
version = "0.53.0"
|
|
2133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "windows_x86_64_gnullvm"
|
|
2138
|
+
version = "0.52.6"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "windows_x86_64_gnullvm"
|
|
2144
|
+
version = "0.53.0"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
2147
|
+
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "windows_x86_64_msvc"
|
|
2150
|
+
version = "0.52.6"
|
|
2151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "windows_x86_64_msvc"
|
|
2156
|
+
version = "0.53.0"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "wit-bindgen"
|
|
2162
|
+
version = "0.45.0"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
|
|
2165
|
+
|
|
2166
|
+
[[package]]
|
|
2167
|
+
name = "x25519-dalek"
|
|
2168
|
+
version = "2.0.1"
|
|
2169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
+
checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
|
|
2171
|
+
dependencies = [
|
|
2172
|
+
"curve25519-dalek",
|
|
2173
|
+
"rand_core 0.6.4",
|
|
2174
|
+
"serde",
|
|
2175
|
+
"zeroize",
|
|
2176
|
+
]
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "zerocopy"
|
|
2180
|
+
version = "0.8.26"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
|
2183
|
+
dependencies = [
|
|
2184
|
+
"zerocopy-derive",
|
|
2185
|
+
]
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "zerocopy-derive"
|
|
2189
|
+
version = "0.8.26"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"proc-macro2",
|
|
2194
|
+
"quote",
|
|
2195
|
+
"syn",
|
|
2196
|
+
]
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "zeroize"
|
|
2200
|
+
version = "1.8.1"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
2203
|
+
dependencies = [
|
|
2204
|
+
"zeroize_derive",
|
|
2205
|
+
]
|
|
2206
|
+
|
|
2207
|
+
[[package]]
|
|
2208
|
+
name = "zeroize_derive"
|
|
2209
|
+
version = "1.4.2"
|
|
2210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
+
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
2212
|
+
dependencies = [
|
|
2213
|
+
"proc-macro2",
|
|
2214
|
+
"quote",
|
|
2215
|
+
"syn",
|
|
2216
|
+
]
|