syftbox-crypto-python 0.1.0b1__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.
- syftbox_crypto_python-0.1.0b1/Cargo.lock +1607 -0
- syftbox_crypto_python-0.1.0b1/Cargo.toml +58 -0
- syftbox_crypto_python-0.1.0b1/PKG-INFO +53 -0
- syftbox_crypto_python-0.1.0b1/README.md +35 -0
- syftbox_crypto_python-0.1.0b1/bindings/python/.gitignore +8 -0
- syftbox_crypto_python-0.1.0b1/bindings/python/.gitkeep +0 -0
- syftbox_crypto_python-0.1.0b1/bindings/python/Cargo.toml +26 -0
- syftbox_crypto_python-0.1.0b1/bindings/python/README.md +35 -0
- syftbox_crypto_python-0.1.0b1/bindings/python/src/lib.rs +373 -0
- syftbox_crypto_python-0.1.0b1/protocol/.cargo/config.toml +3 -0
- syftbox_crypto_python-0.1.0b1/protocol/Cargo.toml +47 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/datasite/bytes.rs +165 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/datasite/context.rs +443 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/datasite/crypto.rs +190 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/datasite/mod.rs +19 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/did_utils.rs +10 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/encryption/constant_time.rs +32 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/encryption/file_cipher.rs +44 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/encryption/key_wrap.rs +115 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/encryption/mod.rs +196 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/encryption/tests.rs +198 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/encryption/x3dh.rs +184 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/envelope.rs +624 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/error.rs +182 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/identity.rs +74 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/keys.rs +433 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/lib.rs +19 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/serialization.rs +387 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/storage.rs +204 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/storage_unix.rs +93 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/storage_windows.rs +229 -0
- syftbox_crypto_python-0.1.0b1/protocol/src/tests/envelope_tests.rs +147 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/datasite_bytes_test.rs +293 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/did_test.rs +75 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/encryption_test.rs +125 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/envelope_signing_test.rs +944 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/error_test.rs +60 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/file_encryption_test.rs +1493 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/key_gen_test.rs +101 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/keys_fingerprint_test.rs +98 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/keys_serialization_test.rs +77 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/keys_storage_test.rs +135 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/private_keys_test.rs +65 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/recovery_key_mnemonic_test.rs +286 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/storage_permissions_test.rs +263 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/syft_private_public_keys_test.rs +63 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/syft_recovery_key_test.rs +327 -0
- syftbox_crypto_python-0.1.0b1/protocol/tests/x3dh_test.rs +115 -0
- syftbox_crypto_python-0.1.0b1/pyproject.toml +32 -0
- syftbox_crypto_python-0.1.0b1/python/syftbox_crypto_python/__init__.py +3 -0
|
@@ -0,0 +1,1607 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aead"
|
|
13
|
+
version = "0.5.2"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"crypto-common",
|
|
18
|
+
"generic-array",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "anstream"
|
|
23
|
+
version = "0.6.21"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"anstyle",
|
|
28
|
+
"anstyle-parse",
|
|
29
|
+
"anstyle-query",
|
|
30
|
+
"anstyle-wincon",
|
|
31
|
+
"colorchoice",
|
|
32
|
+
"is_terminal_polyfill",
|
|
33
|
+
"utf8parse",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "anstyle"
|
|
38
|
+
version = "1.0.13"
|
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
40
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "anstyle-parse"
|
|
44
|
+
version = "0.2.7"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"utf8parse",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "anstyle-query"
|
|
53
|
+
version = "1.1.5"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
56
|
+
dependencies = [
|
|
57
|
+
"windows-sys 0.61.2",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "anstyle-wincon"
|
|
62
|
+
version = "3.0.11"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"anstyle",
|
|
67
|
+
"once_cell_polyfill",
|
|
68
|
+
"windows-sys 0.61.2",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anyhow"
|
|
73
|
+
version = "1.0.101"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "arrayvec"
|
|
79
|
+
version = "0.7.6"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "autocfg"
|
|
85
|
+
version = "1.5.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "base64"
|
|
91
|
+
version = "0.22.1"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "base64ct"
|
|
97
|
+
version = "1.8.3"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "bip39"
|
|
103
|
+
version = "2.2.2"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"bitcoin_hashes",
|
|
108
|
+
"serde",
|
|
109
|
+
"unicode-normalization",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "bitcoin_hashes"
|
|
114
|
+
version = "0.14.1"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"hex-conservative",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "bitflags"
|
|
123
|
+
version = "2.11.0"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "block-buffer"
|
|
129
|
+
version = "0.10.4"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"generic-array",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bytes"
|
|
138
|
+
version = "1.11.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "cfg-if"
|
|
144
|
+
version = "1.0.4"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "chacha20"
|
|
150
|
+
version = "0.9.1"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"cfg-if",
|
|
155
|
+
"cipher",
|
|
156
|
+
"cpufeatures",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "chacha20poly1305"
|
|
161
|
+
version = "0.10.1"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"aead",
|
|
166
|
+
"chacha20",
|
|
167
|
+
"cipher",
|
|
168
|
+
"poly1305",
|
|
169
|
+
"zeroize",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "cipher"
|
|
174
|
+
version = "0.4.4"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"crypto-common",
|
|
179
|
+
"inout",
|
|
180
|
+
"zeroize",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "clap"
|
|
185
|
+
version = "4.5.59"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"clap_builder",
|
|
190
|
+
"clap_derive",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "clap_builder"
|
|
195
|
+
version = "4.5.59"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"anstream",
|
|
200
|
+
"anstyle",
|
|
201
|
+
"clap_lex",
|
|
202
|
+
"strsim",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "clap_derive"
|
|
207
|
+
version = "4.5.55"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"heck",
|
|
212
|
+
"proc-macro2",
|
|
213
|
+
"quote",
|
|
214
|
+
"syn",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "clap_lex"
|
|
219
|
+
version = "1.0.0"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "colorchoice"
|
|
225
|
+
version = "1.0.4"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "const-oid"
|
|
231
|
+
version = "0.9.6"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "cpufeatures"
|
|
237
|
+
version = "0.2.17"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"libc",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "crc32fast"
|
|
246
|
+
version = "1.5.0"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"cfg-if",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "crypto-common"
|
|
255
|
+
version = "0.1.7"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"generic-array",
|
|
260
|
+
"rand_core 0.6.4",
|
|
261
|
+
"typenum",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "curve25519-dalek"
|
|
266
|
+
version = "4.1.3"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"cfg-if",
|
|
271
|
+
"cpufeatures",
|
|
272
|
+
"curve25519-dalek-derive",
|
|
273
|
+
"digest",
|
|
274
|
+
"fiat-crypto",
|
|
275
|
+
"rustc_version",
|
|
276
|
+
"subtle",
|
|
277
|
+
"zeroize",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "curve25519-dalek-derive"
|
|
282
|
+
version = "0.1.1"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"proc-macro2",
|
|
287
|
+
"quote",
|
|
288
|
+
"syn",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "der"
|
|
293
|
+
version = "0.7.10"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"const-oid",
|
|
298
|
+
"zeroize",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "digest"
|
|
303
|
+
version = "0.10.7"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"block-buffer",
|
|
308
|
+
"crypto-common",
|
|
309
|
+
"subtle",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "ed25519"
|
|
314
|
+
version = "2.2.3"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"pkcs8",
|
|
319
|
+
"signature",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "ed25519-dalek"
|
|
324
|
+
version = "2.2.0"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"curve25519-dalek",
|
|
329
|
+
"ed25519",
|
|
330
|
+
"serde",
|
|
331
|
+
"sha2",
|
|
332
|
+
"subtle",
|
|
333
|
+
"zeroize",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "equivalent"
|
|
338
|
+
version = "1.0.2"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "errno"
|
|
344
|
+
version = "0.3.14"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"libc",
|
|
349
|
+
"windows-sys 0.61.2",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "fastrand"
|
|
354
|
+
version = "2.3.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "fiat-crypto"
|
|
360
|
+
version = "0.2.9"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "field-offset"
|
|
366
|
+
version = "0.3.6"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"memoffset",
|
|
371
|
+
"rustc_version",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "filetime"
|
|
376
|
+
version = "0.2.27"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"cfg-if",
|
|
381
|
+
"libc",
|
|
382
|
+
"libredox",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "flate2"
|
|
387
|
+
version = "1.1.9"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"crc32fast",
|
|
392
|
+
"miniz_oxide",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "foldhash"
|
|
397
|
+
version = "0.1.5"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "generic-array"
|
|
403
|
+
version = "0.14.7"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"typenum",
|
|
408
|
+
"version_check",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "getrandom"
|
|
413
|
+
version = "0.2.17"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"cfg-if",
|
|
418
|
+
"libc",
|
|
419
|
+
"wasi",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "getrandom"
|
|
424
|
+
version = "0.3.4"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"cfg-if",
|
|
429
|
+
"libc",
|
|
430
|
+
"r-efi",
|
|
431
|
+
"wasip2",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "getrandom"
|
|
436
|
+
version = "0.4.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"cfg-if",
|
|
441
|
+
"libc",
|
|
442
|
+
"r-efi",
|
|
443
|
+
"wasip2",
|
|
444
|
+
"wasip3",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "hashbrown"
|
|
449
|
+
version = "0.15.5"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"foldhash",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "hashbrown"
|
|
458
|
+
version = "0.16.1"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "heck"
|
|
464
|
+
version = "0.5.0"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "hex"
|
|
470
|
+
version = "0.4.3"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "hex-conservative"
|
|
476
|
+
version = "0.2.2"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"arrayvec",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "hkdf"
|
|
485
|
+
version = "0.12.4"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"hmac",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "hmac"
|
|
494
|
+
version = "0.12.1"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"digest",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "id-arena"
|
|
503
|
+
version = "2.3.0"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "indexmap"
|
|
509
|
+
version = "2.13.0"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"equivalent",
|
|
514
|
+
"hashbrown 0.16.1",
|
|
515
|
+
"serde",
|
|
516
|
+
"serde_core",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "indoc"
|
|
521
|
+
version = "2.0.7"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"rustversion",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "inout"
|
|
530
|
+
version = "0.1.4"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"generic-array",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "is_terminal_polyfill"
|
|
539
|
+
version = "1.70.2"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "itoa"
|
|
545
|
+
version = "1.0.17"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "leb128fmt"
|
|
551
|
+
version = "0.1.0"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "libc"
|
|
557
|
+
version = "0.2.182"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "libredox"
|
|
563
|
+
version = "0.1.12"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"bitflags",
|
|
568
|
+
"libc",
|
|
569
|
+
"redox_syscall 0.7.1",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "linux-raw-sys"
|
|
574
|
+
version = "0.11.0"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "lock_api"
|
|
580
|
+
version = "0.4.14"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"scopeguard",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "log"
|
|
589
|
+
version = "0.4.29"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "memchr"
|
|
595
|
+
version = "2.8.0"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "memoffset"
|
|
601
|
+
version = "0.9.1"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"autocfg",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "miniz_oxide"
|
|
610
|
+
version = "0.8.9"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"adler2",
|
|
615
|
+
"simd-adler32",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "mio"
|
|
620
|
+
version = "1.1.1"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"libc",
|
|
625
|
+
"wasi",
|
|
626
|
+
"windows-sys 0.61.2",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "once_cell"
|
|
631
|
+
version = "1.21.3"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "once_cell_polyfill"
|
|
637
|
+
version = "1.70.2"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "opaque-debug"
|
|
643
|
+
version = "0.3.1"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "parking_lot"
|
|
649
|
+
version = "0.12.5"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"lock_api",
|
|
654
|
+
"parking_lot_core",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "parking_lot_core"
|
|
659
|
+
version = "0.9.12"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"cfg-if",
|
|
664
|
+
"libc",
|
|
665
|
+
"redox_syscall 0.5.18",
|
|
666
|
+
"smallvec",
|
|
667
|
+
"windows-link",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "pin-project-lite"
|
|
672
|
+
version = "0.2.16"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "pkcs8"
|
|
678
|
+
version = "0.10.2"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"der",
|
|
683
|
+
"spki",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "poly1305"
|
|
688
|
+
version = "0.8.0"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"cpufeatures",
|
|
693
|
+
"opaque-debug",
|
|
694
|
+
"universal-hash",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "portable-atomic"
|
|
699
|
+
version = "1.13.1"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "ppv-lite86"
|
|
705
|
+
version = "0.2.21"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"zerocopy",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "prettyplease"
|
|
714
|
+
version = "0.2.37"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"proc-macro2",
|
|
719
|
+
"syn",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "proc-macro2"
|
|
724
|
+
version = "1.0.106"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"unicode-ident",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "pyo3"
|
|
733
|
+
version = "0.24.2"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"cfg-if",
|
|
738
|
+
"indoc",
|
|
739
|
+
"libc",
|
|
740
|
+
"memoffset",
|
|
741
|
+
"once_cell",
|
|
742
|
+
"portable-atomic",
|
|
743
|
+
"pyo3-build-config",
|
|
744
|
+
"pyo3-ffi",
|
|
745
|
+
"pyo3-macros",
|
|
746
|
+
"serde",
|
|
747
|
+
"unindent",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "pyo3-build-config"
|
|
752
|
+
version = "0.24.2"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"once_cell",
|
|
757
|
+
"target-lexicon",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "pyo3-ffi"
|
|
762
|
+
version = "0.24.2"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"libc",
|
|
767
|
+
"pyo3-build-config",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "pyo3-macros"
|
|
772
|
+
version = "0.24.2"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"proc-macro2",
|
|
777
|
+
"pyo3-macros-backend",
|
|
778
|
+
"quote",
|
|
779
|
+
"syn",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "pyo3-macros-backend"
|
|
784
|
+
version = "0.24.2"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"heck",
|
|
789
|
+
"proc-macro2",
|
|
790
|
+
"pyo3-build-config",
|
|
791
|
+
"quote",
|
|
792
|
+
"syn",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "quote"
|
|
797
|
+
version = "1.0.44"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"proc-macro2",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "r-efi"
|
|
806
|
+
version = "5.3.0"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "rand"
|
|
812
|
+
version = "0.9.2"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"rand_chacha",
|
|
817
|
+
"rand_core 0.9.5",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "rand_chacha"
|
|
822
|
+
version = "0.9.0"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"ppv-lite86",
|
|
827
|
+
"rand_core 0.9.5",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "rand_core"
|
|
832
|
+
version = "0.6.4"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"getrandom 0.2.17",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "rand_core"
|
|
841
|
+
version = "0.9.5"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"getrandom 0.3.4",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "redox_syscall"
|
|
850
|
+
version = "0.5.18"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"bitflags",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "redox_syscall"
|
|
859
|
+
version = "0.7.1"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"bitflags",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "rustc_version"
|
|
868
|
+
version = "0.4.1"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"semver",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "rustix"
|
|
877
|
+
version = "1.1.3"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"bitflags",
|
|
882
|
+
"errno",
|
|
883
|
+
"libc",
|
|
884
|
+
"linux-raw-sys",
|
|
885
|
+
"windows-sys 0.61.2",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "rustversion"
|
|
890
|
+
version = "1.0.22"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "ryu-js"
|
|
896
|
+
version = "0.2.2"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "6518fc26bced4d53678a22d6e423e9d8716377def84545fe328236e3af070e7f"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "scopeguard"
|
|
902
|
+
version = "1.2.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "semver"
|
|
908
|
+
version = "1.0.27"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "serde"
|
|
914
|
+
version = "1.0.228"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"serde_core",
|
|
919
|
+
"serde_derive",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "serde_core"
|
|
924
|
+
version = "1.0.228"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"serde_derive",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "serde_derive"
|
|
933
|
+
version = "1.0.228"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"proc-macro2",
|
|
938
|
+
"quote",
|
|
939
|
+
"syn",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "serde_jcs"
|
|
944
|
+
version = "0.1.0"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "cacecf649bc1a7c5f0e299cc813977c6a78116abda2b93b1ee01735b71ead9a8"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"ryu-js",
|
|
949
|
+
"serde",
|
|
950
|
+
"serde_json",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "serde_json"
|
|
955
|
+
version = "1.0.149"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"itoa",
|
|
960
|
+
"memchr",
|
|
961
|
+
"serde",
|
|
962
|
+
"serde_core",
|
|
963
|
+
"zmij",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "sha2"
|
|
968
|
+
version = "0.10.9"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"cfg-if",
|
|
973
|
+
"cpufeatures",
|
|
974
|
+
"digest",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "signal-hook-registry"
|
|
979
|
+
version = "1.4.8"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"errno",
|
|
984
|
+
"libc",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "signature"
|
|
989
|
+
version = "2.2.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"rand_core 0.6.4",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "simd-adler32"
|
|
998
|
+
version = "0.3.8"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "smallvec"
|
|
1004
|
+
version = "1.15.1"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "socket2"
|
|
1010
|
+
version = "0.6.2"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"libc",
|
|
1015
|
+
"windows-sys 0.60.2",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "spki"
|
|
1020
|
+
version = "0.7.3"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"base64ct",
|
|
1025
|
+
"der",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "strsim"
|
|
1030
|
+
version = "0.11.1"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "subtle"
|
|
1036
|
+
version = "2.6.1"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "syftbox-crypto-cli"
|
|
1042
|
+
version = "0.1.0-beta.1"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"clap",
|
|
1045
|
+
"flate2",
|
|
1046
|
+
"hex",
|
|
1047
|
+
"rand",
|
|
1048
|
+
"rand_chacha",
|
|
1049
|
+
"serde",
|
|
1050
|
+
"serde_json",
|
|
1051
|
+
"syftbox-crypto-protocol",
|
|
1052
|
+
"tar",
|
|
1053
|
+
"tempfile",
|
|
1054
|
+
"urlencoding",
|
|
1055
|
+
"zeroize",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "syftbox-crypto-protocol"
|
|
1060
|
+
version = "0.1.0-beta.1"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"anyhow",
|
|
1063
|
+
"base64",
|
|
1064
|
+
"bip39",
|
|
1065
|
+
"chacha20poly1305",
|
|
1066
|
+
"ed25519-dalek",
|
|
1067
|
+
"flate2",
|
|
1068
|
+
"hex",
|
|
1069
|
+
"hkdf",
|
|
1070
|
+
"rand",
|
|
1071
|
+
"rand_chacha",
|
|
1072
|
+
"rand_core 0.6.4",
|
|
1073
|
+
"serde",
|
|
1074
|
+
"serde_jcs",
|
|
1075
|
+
"serde_json",
|
|
1076
|
+
"sha2",
|
|
1077
|
+
"subtle",
|
|
1078
|
+
"tar",
|
|
1079
|
+
"tempfile",
|
|
1080
|
+
"thiserror",
|
|
1081
|
+
"tokio",
|
|
1082
|
+
"urlencoding",
|
|
1083
|
+
"winapi",
|
|
1084
|
+
"windows-acl",
|
|
1085
|
+
"x25519-dalek",
|
|
1086
|
+
"zeroize",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "syftbox-crypto-python"
|
|
1091
|
+
version = "0.1.0-beta.1"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"ed25519-dalek",
|
|
1094
|
+
"pyo3",
|
|
1095
|
+
"rand",
|
|
1096
|
+
"serde",
|
|
1097
|
+
"serde_json",
|
|
1098
|
+
"syftbox-crypto-protocol",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "syn"
|
|
1103
|
+
version = "2.0.116"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"proc-macro2",
|
|
1108
|
+
"quote",
|
|
1109
|
+
"unicode-ident",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "tar"
|
|
1114
|
+
version = "0.4.44"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"filetime",
|
|
1119
|
+
"libc",
|
|
1120
|
+
"xattr",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "target-lexicon"
|
|
1125
|
+
version = "0.13.5"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "tempfile"
|
|
1131
|
+
version = "3.25.0"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"fastrand",
|
|
1136
|
+
"getrandom 0.4.1",
|
|
1137
|
+
"once_cell",
|
|
1138
|
+
"rustix",
|
|
1139
|
+
"windows-sys 0.61.2",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "thiserror"
|
|
1144
|
+
version = "2.0.18"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"thiserror-impl",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "thiserror-impl"
|
|
1153
|
+
version = "2.0.18"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"proc-macro2",
|
|
1158
|
+
"quote",
|
|
1159
|
+
"syn",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "tinyvec"
|
|
1164
|
+
version = "1.10.0"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"tinyvec_macros",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "tinyvec_macros"
|
|
1173
|
+
version = "0.1.1"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "tokio"
|
|
1179
|
+
version = "1.49.0"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"bytes",
|
|
1184
|
+
"libc",
|
|
1185
|
+
"mio",
|
|
1186
|
+
"parking_lot",
|
|
1187
|
+
"pin-project-lite",
|
|
1188
|
+
"signal-hook-registry",
|
|
1189
|
+
"socket2",
|
|
1190
|
+
"tokio-macros",
|
|
1191
|
+
"windows-sys 0.61.2",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "tokio-macros"
|
|
1196
|
+
version = "2.6.0"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"proc-macro2",
|
|
1201
|
+
"quote",
|
|
1202
|
+
"syn",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "typenum"
|
|
1207
|
+
version = "1.19.0"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "unicode-ident"
|
|
1213
|
+
version = "1.0.24"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "unicode-normalization"
|
|
1219
|
+
version = "0.1.25"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"tinyvec",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "unicode-xid"
|
|
1228
|
+
version = "0.2.6"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "unindent"
|
|
1234
|
+
version = "0.2.4"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "universal-hash"
|
|
1240
|
+
version = "0.5.1"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"crypto-common",
|
|
1245
|
+
"subtle",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "urlencoding"
|
|
1250
|
+
version = "2.1.3"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "utf8parse"
|
|
1256
|
+
version = "0.2.2"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "version_check"
|
|
1262
|
+
version = "0.9.5"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "wasi"
|
|
1268
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "wasip2"
|
|
1274
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"wit-bindgen",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "wasip3"
|
|
1283
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"wit-bindgen",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "wasm-encoder"
|
|
1292
|
+
version = "0.244.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"leb128fmt",
|
|
1297
|
+
"wasmparser",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "wasm-metadata"
|
|
1302
|
+
version = "0.244.0"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"anyhow",
|
|
1307
|
+
"indexmap",
|
|
1308
|
+
"wasm-encoder",
|
|
1309
|
+
"wasmparser",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "wasmparser"
|
|
1314
|
+
version = "0.244.0"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"bitflags",
|
|
1319
|
+
"hashbrown 0.15.5",
|
|
1320
|
+
"indexmap",
|
|
1321
|
+
"semver",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "widestring"
|
|
1326
|
+
version = "0.4.3"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "winapi"
|
|
1332
|
+
version = "0.3.9"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"winapi-i686-pc-windows-gnu",
|
|
1337
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1342
|
+
version = "0.4.0"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1348
|
+
version = "0.4.0"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "windows-acl"
|
|
1354
|
+
version = "0.3.0"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "177b1723986bcb4c606058e77f6e8614b51c7f9ad2face6f6fd63dd5c8b3cec3"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"field-offset",
|
|
1359
|
+
"libc",
|
|
1360
|
+
"widestring",
|
|
1361
|
+
"winapi",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "windows-link"
|
|
1366
|
+
version = "0.2.1"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "windows-sys"
|
|
1372
|
+
version = "0.60.2"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"windows-targets",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "windows-sys"
|
|
1381
|
+
version = "0.61.2"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"windows-link",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "windows-targets"
|
|
1390
|
+
version = "0.53.5"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"windows-link",
|
|
1395
|
+
"windows_aarch64_gnullvm",
|
|
1396
|
+
"windows_aarch64_msvc",
|
|
1397
|
+
"windows_i686_gnu",
|
|
1398
|
+
"windows_i686_gnullvm",
|
|
1399
|
+
"windows_i686_msvc",
|
|
1400
|
+
"windows_x86_64_gnu",
|
|
1401
|
+
"windows_x86_64_gnullvm",
|
|
1402
|
+
"windows_x86_64_msvc",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "windows_aarch64_gnullvm"
|
|
1407
|
+
version = "0.53.1"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "windows_aarch64_msvc"
|
|
1413
|
+
version = "0.53.1"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "windows_i686_gnu"
|
|
1419
|
+
version = "0.53.1"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "windows_i686_gnullvm"
|
|
1425
|
+
version = "0.53.1"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "windows_i686_msvc"
|
|
1431
|
+
version = "0.53.1"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1434
|
+
|
|
1435
|
+
[[package]]
|
|
1436
|
+
name = "windows_x86_64_gnu"
|
|
1437
|
+
version = "0.53.1"
|
|
1438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "windows_x86_64_gnullvm"
|
|
1443
|
+
version = "0.53.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "windows_x86_64_msvc"
|
|
1449
|
+
version = "0.53.1"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "wit-bindgen"
|
|
1455
|
+
version = "0.51.0"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"wit-bindgen-rust-macro",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "wit-bindgen-core"
|
|
1464
|
+
version = "0.51.0"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"anyhow",
|
|
1469
|
+
"heck",
|
|
1470
|
+
"wit-parser",
|
|
1471
|
+
]
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "wit-bindgen-rust"
|
|
1475
|
+
version = "0.51.0"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"anyhow",
|
|
1480
|
+
"heck",
|
|
1481
|
+
"indexmap",
|
|
1482
|
+
"prettyplease",
|
|
1483
|
+
"syn",
|
|
1484
|
+
"wasm-metadata",
|
|
1485
|
+
"wit-bindgen-core",
|
|
1486
|
+
"wit-component",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "wit-bindgen-rust-macro"
|
|
1491
|
+
version = "0.51.0"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"anyhow",
|
|
1496
|
+
"prettyplease",
|
|
1497
|
+
"proc-macro2",
|
|
1498
|
+
"quote",
|
|
1499
|
+
"syn",
|
|
1500
|
+
"wit-bindgen-core",
|
|
1501
|
+
"wit-bindgen-rust",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "wit-component"
|
|
1506
|
+
version = "0.244.0"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"anyhow",
|
|
1511
|
+
"bitflags",
|
|
1512
|
+
"indexmap",
|
|
1513
|
+
"log",
|
|
1514
|
+
"serde",
|
|
1515
|
+
"serde_derive",
|
|
1516
|
+
"serde_json",
|
|
1517
|
+
"wasm-encoder",
|
|
1518
|
+
"wasm-metadata",
|
|
1519
|
+
"wasmparser",
|
|
1520
|
+
"wit-parser",
|
|
1521
|
+
]
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "wit-parser"
|
|
1525
|
+
version = "0.244.0"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1528
|
+
dependencies = [
|
|
1529
|
+
"anyhow",
|
|
1530
|
+
"id-arena",
|
|
1531
|
+
"indexmap",
|
|
1532
|
+
"log",
|
|
1533
|
+
"semver",
|
|
1534
|
+
"serde",
|
|
1535
|
+
"serde_derive",
|
|
1536
|
+
"serde_json",
|
|
1537
|
+
"unicode-xid",
|
|
1538
|
+
"wasmparser",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "x25519-dalek"
|
|
1543
|
+
version = "2.0.1"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
|
|
1546
|
+
dependencies = [
|
|
1547
|
+
"curve25519-dalek",
|
|
1548
|
+
"rand_core 0.6.4",
|
|
1549
|
+
"serde",
|
|
1550
|
+
"zeroize",
|
|
1551
|
+
]
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "xattr"
|
|
1555
|
+
version = "1.6.1"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"libc",
|
|
1560
|
+
"rustix",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "zerocopy"
|
|
1565
|
+
version = "0.8.39"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"zerocopy-derive",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "zerocopy-derive"
|
|
1574
|
+
version = "0.8.39"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"proc-macro2",
|
|
1579
|
+
"quote",
|
|
1580
|
+
"syn",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "zeroize"
|
|
1585
|
+
version = "1.8.2"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"zeroize_derive",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "zeroize_derive"
|
|
1594
|
+
version = "1.4.3"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"proc-macro2",
|
|
1599
|
+
"quote",
|
|
1600
|
+
"syn",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "zmij"
|
|
1605
|
+
version = "1.0.21"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|