obcrypt-cli 0.1.0__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.
- obcrypt_cli-0.1.0/Cargo.lock +1428 -0
- obcrypt_cli-0.1.0/Cargo.toml +41 -0
- obcrypt_cli-0.1.0/LICENSE +21 -0
- obcrypt_cli-0.1.0/PKG-INFO +91 -0
- obcrypt_cli-0.1.0/README.md +66 -0
- obcrypt_cli-0.1.0/obcrypt-cli/CHANGELOG.md +54 -0
- obcrypt_cli-0.1.0/obcrypt-cli/Cargo.toml +45 -0
- obcrypt_cli-0.1.0/obcrypt-cli/LICENSE +21 -0
- obcrypt_cli-0.1.0/obcrypt-cli/README.md +201 -0
- obcrypt_cli-0.1.0/obcrypt-cli/src/completions.rs +11 -0
- obcrypt_cli-0.1.0/obcrypt-cli/src/config.rs +70 -0
- obcrypt_cli-0.1.0/obcrypt-cli/src/main.rs +472 -0
- obcrypt_cli-0.1.0/pyproject.toml +37 -0
|
@@ -0,0 +1,1428 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
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 0.14.7",
|
|
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-siv"
|
|
28
|
+
version = "0.11.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"aead",
|
|
33
|
+
"aes",
|
|
34
|
+
"cipher",
|
|
35
|
+
"ctr",
|
|
36
|
+
"polyval",
|
|
37
|
+
"subtle",
|
|
38
|
+
"zeroize",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "aes-siv"
|
|
43
|
+
version = "0.7.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "7e08d0cdb774acd1e4dac11478b1a0c0d203134b2aab0ba25eb430de9b18f8b9"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"aead",
|
|
48
|
+
"aes",
|
|
49
|
+
"cipher",
|
|
50
|
+
"cmac",
|
|
51
|
+
"ctr",
|
|
52
|
+
"dbl",
|
|
53
|
+
"digest",
|
|
54
|
+
"zeroize",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "aho-corasick"
|
|
59
|
+
version = "1.1.4"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
62
|
+
dependencies = [
|
|
63
|
+
"memchr",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "anstream"
|
|
68
|
+
version = "1.0.0"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"anstyle",
|
|
73
|
+
"anstyle-parse",
|
|
74
|
+
"anstyle-query",
|
|
75
|
+
"anstyle-wincon",
|
|
76
|
+
"colorchoice",
|
|
77
|
+
"is_terminal_polyfill",
|
|
78
|
+
"utf8parse",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "anstyle"
|
|
83
|
+
version = "1.0.14"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "anstyle-parse"
|
|
89
|
+
version = "1.0.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"utf8parse",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "anstyle-query"
|
|
98
|
+
version = "1.1.5"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"windows-sys 0.61.2",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "anstyle-wincon"
|
|
107
|
+
version = "3.0.11"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"anstyle",
|
|
112
|
+
"once_cell_polyfill",
|
|
113
|
+
"windows-sys 0.61.2",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "anyhow"
|
|
118
|
+
version = "1.0.102"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "assert_cmd"
|
|
124
|
+
version = "2.2.2"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
|
|
127
|
+
dependencies = [
|
|
128
|
+
"anstyle",
|
|
129
|
+
"bstr",
|
|
130
|
+
"libc",
|
|
131
|
+
"predicates",
|
|
132
|
+
"predicates-core",
|
|
133
|
+
"predicates-tree",
|
|
134
|
+
"wait-timeout",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "autocfg"
|
|
139
|
+
version = "1.5.1"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bitflags"
|
|
145
|
+
version = "2.11.1"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "block-buffer"
|
|
151
|
+
version = "0.10.4"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"generic-array 0.14.7",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "block-padding"
|
|
160
|
+
version = "0.3.3"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"generic-array 0.14.7",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "bstr"
|
|
169
|
+
version = "1.12.1"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"memchr",
|
|
174
|
+
"regex-automata",
|
|
175
|
+
"serde",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "bumpalo"
|
|
180
|
+
version = "3.20.3"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "cbc"
|
|
186
|
+
version = "0.1.2"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"cipher",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "cfg-if"
|
|
195
|
+
version = "1.0.4"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "cipher"
|
|
201
|
+
version = "0.4.4"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"crypto-common",
|
|
206
|
+
"inout",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "clap"
|
|
211
|
+
version = "4.6.1"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"clap_builder",
|
|
216
|
+
"clap_derive",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "clap-markdown"
|
|
221
|
+
version = "0.1.5"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "d2a2617956a06d4885b490697b5307ebb09fec10b088afc18c81762d848c2339"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"clap",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "clap_builder"
|
|
230
|
+
version = "4.6.0"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"anstream",
|
|
235
|
+
"anstyle",
|
|
236
|
+
"clap_lex",
|
|
237
|
+
"strsim",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "clap_complete"
|
|
242
|
+
version = "4.6.5"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"clap",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "clap_derive"
|
|
251
|
+
version = "4.6.1"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"heck",
|
|
256
|
+
"proc-macro2",
|
|
257
|
+
"quote",
|
|
258
|
+
"syn",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "clap_lex"
|
|
263
|
+
version = "1.1.0"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "cmac"
|
|
269
|
+
version = "0.7.2"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "8543454e3c3f5126effff9cd44d562af4e31fb8ce1cc0d3dcd8f084515dbc1aa"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"cipher",
|
|
274
|
+
"dbl",
|
|
275
|
+
"digest",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "colorchoice"
|
|
280
|
+
version = "1.0.5"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "cpufeatures"
|
|
286
|
+
version = "0.2.17"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"libc",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "crypto-common"
|
|
295
|
+
version = "0.1.7"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"generic-array 0.14.7",
|
|
300
|
+
"rand_core",
|
|
301
|
+
"typenum",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "ctr"
|
|
306
|
+
version = "0.9.2"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"cipher",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "data-encoding"
|
|
315
|
+
version = "2.11.0"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "dbl"
|
|
321
|
+
version = "0.3.2"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"generic-array 0.14.7",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "difflib"
|
|
330
|
+
version = "0.4.0"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "digest"
|
|
336
|
+
version = "0.10.7"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"block-buffer",
|
|
341
|
+
"crypto-common",
|
|
342
|
+
"subtle",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "dirs"
|
|
347
|
+
version = "5.0.1"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"dirs-sys",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "dirs-sys"
|
|
356
|
+
version = "0.4.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"libc",
|
|
361
|
+
"option-ext",
|
|
362
|
+
"redox_users",
|
|
363
|
+
"windows-sys 0.48.0",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "equivalent"
|
|
368
|
+
version = "1.0.2"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "errno"
|
|
374
|
+
version = "0.3.14"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"libc",
|
|
379
|
+
"windows-sys 0.61.2",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "fastrand"
|
|
384
|
+
version = "2.4.1"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "float-cmp"
|
|
390
|
+
version = "0.10.0"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"num-traits",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "foldhash"
|
|
399
|
+
version = "0.1.5"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "futures-core"
|
|
405
|
+
version = "0.3.32"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "futures-task"
|
|
411
|
+
version = "0.3.32"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "futures-util"
|
|
417
|
+
version = "0.3.32"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"futures-core",
|
|
422
|
+
"futures-task",
|
|
423
|
+
"pin-project-lite",
|
|
424
|
+
"slab",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "generic-array"
|
|
429
|
+
version = "0.14.7"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"typenum",
|
|
434
|
+
"version_check",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "generic-array"
|
|
439
|
+
version = "1.4.1"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"rustversion",
|
|
444
|
+
"typenum",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "getrandom"
|
|
449
|
+
version = "0.2.17"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"cfg-if",
|
|
454
|
+
"js-sys",
|
|
455
|
+
"libc",
|
|
456
|
+
"wasi",
|
|
457
|
+
"wasm-bindgen",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "getrandom"
|
|
462
|
+
version = "0.4.2"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"cfg-if",
|
|
467
|
+
"libc",
|
|
468
|
+
"r-efi",
|
|
469
|
+
"wasip2",
|
|
470
|
+
"wasip3",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "hashbrown"
|
|
475
|
+
version = "0.15.5"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"foldhash",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "hashbrown"
|
|
484
|
+
version = "0.17.1"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "heck"
|
|
490
|
+
version = "0.5.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "hex"
|
|
496
|
+
version = "0.4.3"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "id-arena"
|
|
502
|
+
version = "2.3.0"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "indexmap"
|
|
508
|
+
version = "2.14.0"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"equivalent",
|
|
513
|
+
"hashbrown 0.17.1",
|
|
514
|
+
"serde",
|
|
515
|
+
"serde_core",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "inout"
|
|
520
|
+
version = "0.1.4"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"block-padding",
|
|
525
|
+
"generic-array 0.14.7",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "is_terminal_polyfill"
|
|
530
|
+
version = "1.70.2"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "itoa"
|
|
536
|
+
version = "1.0.18"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "js-sys"
|
|
542
|
+
version = "0.3.99"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"cfg-if",
|
|
547
|
+
"futures-util",
|
|
548
|
+
"once_cell",
|
|
549
|
+
"wasm-bindgen",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "leb128fmt"
|
|
554
|
+
version = "0.1.0"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "libc"
|
|
560
|
+
version = "0.2.186"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "libredox"
|
|
566
|
+
version = "0.1.16"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"libc",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "linux-raw-sys"
|
|
575
|
+
version = "0.12.1"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "log"
|
|
581
|
+
version = "0.4.29"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "memchr"
|
|
587
|
+
version = "2.8.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "normalize-line-endings"
|
|
593
|
+
version = "0.3.0"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "num-bigint"
|
|
599
|
+
version = "0.4.6"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"num-integer",
|
|
604
|
+
"num-traits",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "num-integer"
|
|
609
|
+
version = "0.1.46"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"num-traits",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "num-traits"
|
|
618
|
+
version = "0.2.19"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"autocfg",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "obcrypt"
|
|
627
|
+
version = "0.2.0"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "2eaead5c348b452836bb4870d78cbe4a86002adcfe598cdc339a96705c2007f4"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"aead",
|
|
632
|
+
"aes",
|
|
633
|
+
"aes-gcm-siv",
|
|
634
|
+
"aes-siv",
|
|
635
|
+
"cbc",
|
|
636
|
+
"cipher",
|
|
637
|
+
"getrandom 0.2.17",
|
|
638
|
+
"hex",
|
|
639
|
+
"rand",
|
|
640
|
+
"thiserror",
|
|
641
|
+
"zeroize",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "obcrypt-cli"
|
|
646
|
+
version = "0.1.0"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"anyhow",
|
|
649
|
+
"clap",
|
|
650
|
+
"clap_complete",
|
|
651
|
+
"dirs",
|
|
652
|
+
"hex",
|
|
653
|
+
"obcrypt",
|
|
654
|
+
"oboron-cli-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
655
|
+
"serde",
|
|
656
|
+
"serde_json",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "oboron"
|
|
661
|
+
version = "0.9.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "6d8d2181793138fb19422d9494629e09a24b551b35d3e07c51a98a3631d31ff6"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"aes",
|
|
666
|
+
"cbc",
|
|
667
|
+
"cipher",
|
|
668
|
+
"data-encoding",
|
|
669
|
+
"generic-array 1.4.1",
|
|
670
|
+
"getrandom 0.2.17",
|
|
671
|
+
"hex",
|
|
672
|
+
"num-bigint",
|
|
673
|
+
"obcrypt",
|
|
674
|
+
"once_cell",
|
|
675
|
+
"rand",
|
|
676
|
+
"thiserror",
|
|
677
|
+
"zeroize",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "oboron-cli"
|
|
682
|
+
version = "0.4.0"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"anyhow",
|
|
685
|
+
"assert_cmd",
|
|
686
|
+
"clap",
|
|
687
|
+
"clap-markdown",
|
|
688
|
+
"clap_complete",
|
|
689
|
+
"data-encoding",
|
|
690
|
+
"dirs",
|
|
691
|
+
"hex",
|
|
692
|
+
"oboron",
|
|
693
|
+
"oboron-cli-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
694
|
+
"predicates",
|
|
695
|
+
"rand",
|
|
696
|
+
"serde",
|
|
697
|
+
"serde_json",
|
|
698
|
+
"tempfile",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "oboron-cli-conformance"
|
|
703
|
+
version = "0.2.0"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"clap",
|
|
706
|
+
"serde",
|
|
707
|
+
"serde_json",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "oboron-cli-core"
|
|
712
|
+
version = "0.1.0"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"anyhow",
|
|
715
|
+
"data-encoding",
|
|
716
|
+
"dirs",
|
|
717
|
+
"hex",
|
|
718
|
+
"serde",
|
|
719
|
+
"serde_json",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "oboron-cli-core"
|
|
724
|
+
version = "0.1.0"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "5c19868842bfe6221e0a6638c9b35bad746efa67929cf620e57cfc3ea088e82a"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"anyhow",
|
|
729
|
+
"data-encoding",
|
|
730
|
+
"dirs",
|
|
731
|
+
"hex",
|
|
732
|
+
"serde",
|
|
733
|
+
"serde_json",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "once_cell"
|
|
738
|
+
version = "1.21.4"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "once_cell_polyfill"
|
|
744
|
+
version = "1.70.2"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "opaque-debug"
|
|
750
|
+
version = "0.3.1"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "option-ext"
|
|
756
|
+
version = "0.2.0"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "pin-project-lite"
|
|
762
|
+
version = "0.2.17"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "polyval"
|
|
768
|
+
version = "0.6.2"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"cfg-if",
|
|
773
|
+
"cpufeatures",
|
|
774
|
+
"opaque-debug",
|
|
775
|
+
"universal-hash",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "ppv-lite86"
|
|
780
|
+
version = "0.2.21"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"zerocopy",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "predicates"
|
|
789
|
+
version = "3.1.4"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"anstyle",
|
|
794
|
+
"difflib",
|
|
795
|
+
"float-cmp",
|
|
796
|
+
"normalize-line-endings",
|
|
797
|
+
"predicates-core",
|
|
798
|
+
"regex",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "predicates-core"
|
|
803
|
+
version = "1.0.10"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "predicates-tree"
|
|
809
|
+
version = "1.0.13"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
812
|
+
dependencies = [
|
|
813
|
+
"predicates-core",
|
|
814
|
+
"termtree",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "prettyplease"
|
|
819
|
+
version = "0.2.37"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"proc-macro2",
|
|
824
|
+
"syn",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "proc-macro2"
|
|
829
|
+
version = "1.0.106"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"unicode-ident",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "quote"
|
|
838
|
+
version = "1.0.45"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"proc-macro2",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "r-efi"
|
|
847
|
+
version = "6.0.0"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "rand"
|
|
853
|
+
version = "0.8.6"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"libc",
|
|
858
|
+
"rand_chacha",
|
|
859
|
+
"rand_core",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "rand_chacha"
|
|
864
|
+
version = "0.3.1"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"ppv-lite86",
|
|
869
|
+
"rand_core",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "rand_core"
|
|
874
|
+
version = "0.6.4"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"getrandom 0.2.17",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "redox_users"
|
|
883
|
+
version = "0.4.6"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"getrandom 0.2.17",
|
|
888
|
+
"libredox",
|
|
889
|
+
"thiserror",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "regex"
|
|
894
|
+
version = "1.12.3"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"aho-corasick",
|
|
899
|
+
"memchr",
|
|
900
|
+
"regex-automata",
|
|
901
|
+
"regex-syntax",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "regex-automata"
|
|
906
|
+
version = "0.4.14"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"aho-corasick",
|
|
911
|
+
"memchr",
|
|
912
|
+
"regex-syntax",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "regex-syntax"
|
|
917
|
+
version = "0.8.10"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "rustix"
|
|
923
|
+
version = "1.1.4"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"bitflags",
|
|
928
|
+
"errno",
|
|
929
|
+
"libc",
|
|
930
|
+
"linux-raw-sys",
|
|
931
|
+
"windows-sys 0.61.2",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "rustversion"
|
|
936
|
+
version = "1.0.22"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "semver"
|
|
942
|
+
version = "1.0.28"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "serde"
|
|
948
|
+
version = "1.0.228"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"serde_core",
|
|
953
|
+
"serde_derive",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "serde_core"
|
|
958
|
+
version = "1.0.228"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"serde_derive",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "serde_derive"
|
|
967
|
+
version = "1.0.228"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"proc-macro2",
|
|
972
|
+
"quote",
|
|
973
|
+
"syn",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "serde_json"
|
|
978
|
+
version = "1.0.150"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"itoa",
|
|
983
|
+
"memchr",
|
|
984
|
+
"serde",
|
|
985
|
+
"serde_core",
|
|
986
|
+
"zmij",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "slab"
|
|
991
|
+
version = "0.4.12"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "strsim"
|
|
997
|
+
version = "0.11.1"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "subtle"
|
|
1003
|
+
version = "2.6.1"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "syn"
|
|
1009
|
+
version = "2.0.117"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"proc-macro2",
|
|
1014
|
+
"quote",
|
|
1015
|
+
"unicode-ident",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "tempfile"
|
|
1020
|
+
version = "3.27.0"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"fastrand",
|
|
1025
|
+
"getrandom 0.4.2",
|
|
1026
|
+
"once_cell",
|
|
1027
|
+
"rustix",
|
|
1028
|
+
"windows-sys 0.61.2",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "termtree"
|
|
1033
|
+
version = "0.5.1"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "thiserror"
|
|
1039
|
+
version = "1.0.69"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"thiserror-impl",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "thiserror-impl"
|
|
1048
|
+
version = "1.0.69"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"proc-macro2",
|
|
1053
|
+
"quote",
|
|
1054
|
+
"syn",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "typenum"
|
|
1059
|
+
version = "1.20.0"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "unicode-ident"
|
|
1065
|
+
version = "1.0.24"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "unicode-xid"
|
|
1071
|
+
version = "0.2.6"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "universal-hash"
|
|
1077
|
+
version = "0.5.1"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"crypto-common",
|
|
1082
|
+
"subtle",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "utf8parse"
|
|
1087
|
+
version = "0.2.2"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "version_check"
|
|
1093
|
+
version = "0.9.5"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "wait-timeout"
|
|
1099
|
+
version = "0.2.1"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"libc",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "wasi"
|
|
1108
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "wasip2"
|
|
1114
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"wit-bindgen 0.57.1",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "wasip3"
|
|
1123
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"wit-bindgen 0.51.0",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "wasm-bindgen"
|
|
1132
|
+
version = "0.2.122"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"cfg-if",
|
|
1137
|
+
"once_cell",
|
|
1138
|
+
"rustversion",
|
|
1139
|
+
"wasm-bindgen-macro",
|
|
1140
|
+
"wasm-bindgen-shared",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "wasm-bindgen-macro"
|
|
1145
|
+
version = "0.2.122"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"quote",
|
|
1150
|
+
"wasm-bindgen-macro-support",
|
|
1151
|
+
]
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "wasm-bindgen-macro-support"
|
|
1155
|
+
version = "0.2.122"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"bumpalo",
|
|
1160
|
+
"proc-macro2",
|
|
1161
|
+
"quote",
|
|
1162
|
+
"syn",
|
|
1163
|
+
"wasm-bindgen-shared",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "wasm-bindgen-shared"
|
|
1168
|
+
version = "0.2.122"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"unicode-ident",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "wasm-encoder"
|
|
1177
|
+
version = "0.244.0"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"leb128fmt",
|
|
1182
|
+
"wasmparser",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "wasm-metadata"
|
|
1187
|
+
version = "0.244.0"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"anyhow",
|
|
1192
|
+
"indexmap",
|
|
1193
|
+
"wasm-encoder",
|
|
1194
|
+
"wasmparser",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "wasmparser"
|
|
1199
|
+
version = "0.244.0"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"bitflags",
|
|
1204
|
+
"hashbrown 0.15.5",
|
|
1205
|
+
"indexmap",
|
|
1206
|
+
"semver",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "windows-link"
|
|
1211
|
+
version = "0.2.1"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "windows-sys"
|
|
1217
|
+
version = "0.48.0"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"windows-targets",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "windows-sys"
|
|
1226
|
+
version = "0.61.2"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"windows-link",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "windows-targets"
|
|
1235
|
+
version = "0.48.5"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"windows_aarch64_gnullvm",
|
|
1240
|
+
"windows_aarch64_msvc",
|
|
1241
|
+
"windows_i686_gnu",
|
|
1242
|
+
"windows_i686_msvc",
|
|
1243
|
+
"windows_x86_64_gnu",
|
|
1244
|
+
"windows_x86_64_gnullvm",
|
|
1245
|
+
"windows_x86_64_msvc",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "windows_aarch64_gnullvm"
|
|
1250
|
+
version = "0.48.5"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "windows_aarch64_msvc"
|
|
1256
|
+
version = "0.48.5"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "windows_i686_gnu"
|
|
1262
|
+
version = "0.48.5"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "windows_i686_msvc"
|
|
1268
|
+
version = "0.48.5"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "windows_x86_64_gnu"
|
|
1274
|
+
version = "0.48.5"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "windows_x86_64_gnullvm"
|
|
1280
|
+
version = "0.48.5"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "windows_x86_64_msvc"
|
|
1286
|
+
version = "0.48.5"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "wit-bindgen"
|
|
1292
|
+
version = "0.51.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"wit-bindgen-rust-macro",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "wit-bindgen"
|
|
1301
|
+
version = "0.57.1"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "wit-bindgen-core"
|
|
1307
|
+
version = "0.51.0"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"anyhow",
|
|
1312
|
+
"heck",
|
|
1313
|
+
"wit-parser",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "wit-bindgen-rust"
|
|
1318
|
+
version = "0.51.0"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"anyhow",
|
|
1323
|
+
"heck",
|
|
1324
|
+
"indexmap",
|
|
1325
|
+
"prettyplease",
|
|
1326
|
+
"syn",
|
|
1327
|
+
"wasm-metadata",
|
|
1328
|
+
"wit-bindgen-core",
|
|
1329
|
+
"wit-component",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "wit-bindgen-rust-macro"
|
|
1334
|
+
version = "0.51.0"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"anyhow",
|
|
1339
|
+
"prettyplease",
|
|
1340
|
+
"proc-macro2",
|
|
1341
|
+
"quote",
|
|
1342
|
+
"syn",
|
|
1343
|
+
"wit-bindgen-core",
|
|
1344
|
+
"wit-bindgen-rust",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "wit-component"
|
|
1349
|
+
version = "0.244.0"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"anyhow",
|
|
1354
|
+
"bitflags",
|
|
1355
|
+
"indexmap",
|
|
1356
|
+
"log",
|
|
1357
|
+
"serde",
|
|
1358
|
+
"serde_derive",
|
|
1359
|
+
"serde_json",
|
|
1360
|
+
"wasm-encoder",
|
|
1361
|
+
"wasm-metadata",
|
|
1362
|
+
"wasmparser",
|
|
1363
|
+
"wit-parser",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "wit-parser"
|
|
1368
|
+
version = "0.244.0"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"anyhow",
|
|
1373
|
+
"id-arena",
|
|
1374
|
+
"indexmap",
|
|
1375
|
+
"log",
|
|
1376
|
+
"semver",
|
|
1377
|
+
"serde",
|
|
1378
|
+
"serde_derive",
|
|
1379
|
+
"serde_json",
|
|
1380
|
+
"unicode-xid",
|
|
1381
|
+
"wasmparser",
|
|
1382
|
+
]
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "zerocopy"
|
|
1386
|
+
version = "0.8.48"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"zerocopy-derive",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "zerocopy-derive"
|
|
1395
|
+
version = "0.8.48"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"proc-macro2",
|
|
1400
|
+
"quote",
|
|
1401
|
+
"syn",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "zeroize"
|
|
1406
|
+
version = "1.8.2"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"zeroize_derive",
|
|
1411
|
+
]
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "zeroize_derive"
|
|
1415
|
+
version = "1.4.3"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"proc-macro2",
|
|
1420
|
+
"quote",
|
|
1421
|
+
"syn",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "zmij"
|
|
1426
|
+
version = "1.0.21"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|