@caatinga/core 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{browser-Cq4ZofIq.d.cts → artifact.schema-BH5K-IiZ.d.cts} +2 -1
- package/dist/{browser-Cq4ZofIq.d.ts → artifact.schema-BH5K-IiZ.d.ts} +2 -1
- package/dist/browser.cjs +20 -0
- package/dist/browser.d.cts +5 -1
- package/dist/browser.d.ts +5 -1
- package/dist/browser.js +19 -0
- package/dist/index.cjs +440 -29
- package/dist/index.d.cts +52 -12
- package/dist/index.d.ts +52 -12
- package/dist/index.js +430 -29
- package/package.json +2 -1
- package/scaffolds/soroban-contract-stub/Cargo.toml +24 -0
- package/scaffolds/soroban-contract-stub/src/lib.rs +42 -0
- package/scaffolds/zk-circuit-stub/input.json +3 -0
- package/scaffolds/zk-circuit-stub/main.circom +9 -0
- package/scaffolds/zk-verifier/Cargo.lock +1880 -0
- package/scaffolds/zk-verifier/Cargo.toml +27 -0
- package/scaffolds/zk-verifier/src/lib.rs +64 -0
- package/scaffolds/zk-verifier/src/test.rs +100 -0
|
@@ -0,0 +1,1880 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "android_system_properties"
|
|
19
|
+
version = "0.1.5"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"libc",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "arbitrary"
|
|
28
|
+
version = "1.3.2"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"derive_arbitrary",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "ark-bls12-381"
|
|
37
|
+
version = "0.4.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"ark-ec",
|
|
42
|
+
"ark-ff",
|
|
43
|
+
"ark-serialize",
|
|
44
|
+
"ark-std",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "ark-bn254"
|
|
49
|
+
version = "0.4.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "a22f4561524cd949590d78d7d4c5df8f592430d221f7f3c9497bbafd8972120f"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"ark-ec",
|
|
54
|
+
"ark-ff",
|
|
55
|
+
"ark-std",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "ark-ec"
|
|
60
|
+
version = "0.4.2"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"ark-ff",
|
|
65
|
+
"ark-poly",
|
|
66
|
+
"ark-serialize",
|
|
67
|
+
"ark-std",
|
|
68
|
+
"derivative",
|
|
69
|
+
"hashbrown 0.13.2",
|
|
70
|
+
"itertools",
|
|
71
|
+
"num-traits",
|
|
72
|
+
"zeroize",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "ark-ff"
|
|
77
|
+
version = "0.4.2"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"ark-ff-asm",
|
|
82
|
+
"ark-ff-macros",
|
|
83
|
+
"ark-serialize",
|
|
84
|
+
"ark-std",
|
|
85
|
+
"derivative",
|
|
86
|
+
"digest",
|
|
87
|
+
"itertools",
|
|
88
|
+
"num-bigint",
|
|
89
|
+
"num-traits",
|
|
90
|
+
"paste",
|
|
91
|
+
"rustc_version",
|
|
92
|
+
"zeroize",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "ark-ff-asm"
|
|
97
|
+
version = "0.4.2"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"quote",
|
|
102
|
+
"syn 1.0.109",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "ark-ff-macros"
|
|
107
|
+
version = "0.4.2"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"num-bigint",
|
|
112
|
+
"num-traits",
|
|
113
|
+
"proc-macro2",
|
|
114
|
+
"quote",
|
|
115
|
+
"syn 1.0.109",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "ark-poly"
|
|
120
|
+
version = "0.4.2"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"ark-ff",
|
|
125
|
+
"ark-serialize",
|
|
126
|
+
"ark-std",
|
|
127
|
+
"derivative",
|
|
128
|
+
"hashbrown 0.13.2",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "ark-serialize"
|
|
133
|
+
version = "0.4.2"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"ark-serialize-derive",
|
|
138
|
+
"ark-std",
|
|
139
|
+
"digest",
|
|
140
|
+
"num-bigint",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "ark-serialize-derive"
|
|
145
|
+
version = "0.4.2"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"proc-macro2",
|
|
150
|
+
"quote",
|
|
151
|
+
"syn 1.0.109",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "ark-std"
|
|
156
|
+
version = "0.4.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"num-traits",
|
|
161
|
+
"rand",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "autocfg"
|
|
166
|
+
version = "1.5.1"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "base16ct"
|
|
172
|
+
version = "0.2.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "base64"
|
|
178
|
+
version = "0.22.1"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "base64ct"
|
|
184
|
+
version = "1.8.3"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "block-buffer"
|
|
190
|
+
version = "0.10.4"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"generic-array",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "bs58"
|
|
199
|
+
version = "0.5.1"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"tinyvec",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "bumpalo"
|
|
208
|
+
version = "3.20.3"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "byteorder"
|
|
214
|
+
version = "1.5.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "bytes-lit"
|
|
220
|
+
version = "0.0.5"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "0adabf37211a5276e46335feabcbb1530c95eb3fdf85f324c7db942770aa025d"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"num-bigint",
|
|
225
|
+
"proc-macro2",
|
|
226
|
+
"quote",
|
|
227
|
+
"syn 2.0.117",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "cc"
|
|
232
|
+
version = "1.2.64"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"find-msvc-tools",
|
|
237
|
+
"shlex",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "cfg-if"
|
|
242
|
+
version = "1.0.4"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "cfg_eval"
|
|
248
|
+
version = "0.1.2"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "45565fc9416b9896014f5732ac776f810ee53a66730c17e4020c3ec064a8f88f"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"proc-macro2",
|
|
253
|
+
"quote",
|
|
254
|
+
"syn 2.0.117",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "chrono"
|
|
259
|
+
version = "0.4.45"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"iana-time-zone",
|
|
264
|
+
"num-traits",
|
|
265
|
+
"serde",
|
|
266
|
+
"windows-link",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "const-oid"
|
|
271
|
+
version = "0.9.6"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "core-foundation-sys"
|
|
277
|
+
version = "0.8.7"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "cpufeatures"
|
|
283
|
+
version = "0.2.17"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"libc",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "crate-git-revision"
|
|
292
|
+
version = "0.0.6"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "c521bf1f43d31ed2f73441775ed31935d77901cb3451e44b38a1c1612fcbaf98"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"serde",
|
|
297
|
+
"serde_derive",
|
|
298
|
+
"serde_json",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "crypto-bigint"
|
|
303
|
+
version = "0.5.5"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"generic-array",
|
|
308
|
+
"rand_core",
|
|
309
|
+
"subtle",
|
|
310
|
+
"zeroize",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "crypto-common"
|
|
315
|
+
version = "0.1.6"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"generic-array",
|
|
320
|
+
"typenum",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "ctor"
|
|
325
|
+
version = "0.5.0"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"ctor-proc-macro",
|
|
330
|
+
"dtor",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "ctor-proc-macro"
|
|
335
|
+
version = "0.0.6"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "curve25519-dalek"
|
|
341
|
+
version = "4.1.3"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"cfg-if",
|
|
346
|
+
"cpufeatures",
|
|
347
|
+
"curve25519-dalek-derive",
|
|
348
|
+
"digest",
|
|
349
|
+
"fiat-crypto",
|
|
350
|
+
"rustc_version",
|
|
351
|
+
"subtle",
|
|
352
|
+
"zeroize",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "curve25519-dalek-derive"
|
|
357
|
+
version = "0.1.1"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"proc-macro2",
|
|
362
|
+
"quote",
|
|
363
|
+
"syn 2.0.117",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "darling"
|
|
368
|
+
version = "0.20.11"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"darling_core 0.20.11",
|
|
373
|
+
"darling_macro 0.20.11",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "darling"
|
|
378
|
+
version = "0.23.0"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"darling_core 0.23.0",
|
|
383
|
+
"darling_macro 0.23.0",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "darling_core"
|
|
388
|
+
version = "0.20.11"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"fnv",
|
|
393
|
+
"ident_case",
|
|
394
|
+
"proc-macro2",
|
|
395
|
+
"quote",
|
|
396
|
+
"strsim",
|
|
397
|
+
"syn 2.0.117",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "darling_core"
|
|
402
|
+
version = "0.23.0"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"ident_case",
|
|
407
|
+
"proc-macro2",
|
|
408
|
+
"quote",
|
|
409
|
+
"strsim",
|
|
410
|
+
"syn 2.0.117",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "darling_macro"
|
|
415
|
+
version = "0.20.11"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"darling_core 0.20.11",
|
|
420
|
+
"quote",
|
|
421
|
+
"syn 2.0.117",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "darling_macro"
|
|
426
|
+
version = "0.23.0"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"darling_core 0.23.0",
|
|
431
|
+
"quote",
|
|
432
|
+
"syn 2.0.117",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "data-encoding"
|
|
437
|
+
version = "2.11.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "der"
|
|
443
|
+
version = "0.7.10"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"const-oid",
|
|
448
|
+
"zeroize",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "deranged"
|
|
453
|
+
version = "0.5.8"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"serde_core",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "derivative"
|
|
462
|
+
version = "2.2.0"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"proc-macro2",
|
|
467
|
+
"quote",
|
|
468
|
+
"syn 1.0.109",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "derive_arbitrary"
|
|
473
|
+
version = "1.3.2"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"proc-macro2",
|
|
478
|
+
"quote",
|
|
479
|
+
"syn 2.0.117",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "digest"
|
|
484
|
+
version = "0.10.7"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"block-buffer",
|
|
489
|
+
"const-oid",
|
|
490
|
+
"crypto-common",
|
|
491
|
+
"subtle",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "downcast-rs"
|
|
496
|
+
version = "1.2.1"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "dtor"
|
|
502
|
+
version = "0.1.1"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"dtor-proc-macro",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "dtor-proc-macro"
|
|
511
|
+
version = "0.0.6"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "dyn-clone"
|
|
517
|
+
version = "1.0.20"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "ecdsa"
|
|
523
|
+
version = "0.16.9"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"der",
|
|
528
|
+
"digest",
|
|
529
|
+
"elliptic-curve",
|
|
530
|
+
"rfc6979",
|
|
531
|
+
"signature",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "ed25519"
|
|
536
|
+
version = "2.2.3"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"pkcs8",
|
|
541
|
+
"signature",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "ed25519-dalek"
|
|
546
|
+
version = "2.2.0"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"curve25519-dalek",
|
|
551
|
+
"ed25519",
|
|
552
|
+
"rand_core",
|
|
553
|
+
"serde",
|
|
554
|
+
"sha2",
|
|
555
|
+
"subtle",
|
|
556
|
+
"zeroize",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "either"
|
|
561
|
+
version = "1.16.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "elliptic-curve"
|
|
567
|
+
version = "0.13.8"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"base16ct",
|
|
572
|
+
"crypto-bigint",
|
|
573
|
+
"digest",
|
|
574
|
+
"ff",
|
|
575
|
+
"generic-array",
|
|
576
|
+
"group",
|
|
577
|
+
"rand_core",
|
|
578
|
+
"sec1",
|
|
579
|
+
"subtle",
|
|
580
|
+
"zeroize",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "equivalent"
|
|
585
|
+
version = "1.0.2"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "escape-bytes"
|
|
591
|
+
version = "0.1.1"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "2bfcf67fea2815c2fc3b90873fae90957be12ff417335dfadc7f52927feb03b2"
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "ethnum"
|
|
597
|
+
version = "1.5.3"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "ff"
|
|
603
|
+
version = "0.13.1"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"rand_core",
|
|
608
|
+
"subtle",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "fiat-crypto"
|
|
613
|
+
version = "0.2.9"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "find-msvc-tools"
|
|
619
|
+
version = "0.1.9"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "fnv"
|
|
625
|
+
version = "1.0.7"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "futures-core"
|
|
631
|
+
version = "0.3.32"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "futures-task"
|
|
637
|
+
version = "0.3.32"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "futures-util"
|
|
643
|
+
version = "0.3.32"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"futures-core",
|
|
648
|
+
"futures-task",
|
|
649
|
+
"pin-project-lite",
|
|
650
|
+
"slab",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "generic-array"
|
|
655
|
+
version = "0.14.9"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"typenum",
|
|
660
|
+
"version_check",
|
|
661
|
+
"zeroize",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "getrandom"
|
|
666
|
+
version = "0.2.17"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"cfg-if",
|
|
671
|
+
"js-sys",
|
|
672
|
+
"libc",
|
|
673
|
+
"wasi",
|
|
674
|
+
"wasm-bindgen",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "group"
|
|
679
|
+
version = "0.13.0"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"ff",
|
|
684
|
+
"rand_core",
|
|
685
|
+
"subtle",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "hash32"
|
|
690
|
+
version = "0.3.1"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"byteorder",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "hashbrown"
|
|
699
|
+
version = "0.12.3"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "hashbrown"
|
|
705
|
+
version = "0.13.2"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"ahash",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "hashbrown"
|
|
714
|
+
version = "0.17.1"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "heapless"
|
|
720
|
+
version = "0.8.0"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"hash32",
|
|
725
|
+
"stable_deref_trait",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "heck"
|
|
730
|
+
version = "0.5.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "hex"
|
|
736
|
+
version = "0.4.3"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"serde",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "hex-literal"
|
|
745
|
+
version = "0.4.1"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "hmac"
|
|
751
|
+
version = "0.12.1"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"digest",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "iana-time-zone"
|
|
760
|
+
version = "0.1.65"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"android_system_properties",
|
|
765
|
+
"core-foundation-sys",
|
|
766
|
+
"iana-time-zone-haiku",
|
|
767
|
+
"js-sys",
|
|
768
|
+
"log",
|
|
769
|
+
"wasm-bindgen",
|
|
770
|
+
"windows-core",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "iana-time-zone-haiku"
|
|
775
|
+
version = "0.1.2"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"cc",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "ident_case"
|
|
784
|
+
version = "1.0.1"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "indexmap"
|
|
790
|
+
version = "1.9.3"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"autocfg",
|
|
795
|
+
"hashbrown 0.12.3",
|
|
796
|
+
"serde",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "indexmap"
|
|
801
|
+
version = "2.14.0"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"equivalent",
|
|
806
|
+
"hashbrown 0.17.1",
|
|
807
|
+
"serde",
|
|
808
|
+
"serde_core",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "indexmap-nostd"
|
|
813
|
+
version = "0.4.0"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590"
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "itertools"
|
|
819
|
+
version = "0.10.5"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"either",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "itoa"
|
|
828
|
+
version = "1.0.18"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "js-sys"
|
|
834
|
+
version = "0.3.102"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"cfg-if",
|
|
839
|
+
"futures-util",
|
|
840
|
+
"wasm-bindgen",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "k256"
|
|
845
|
+
version = "0.13.4"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"cfg-if",
|
|
850
|
+
"ecdsa",
|
|
851
|
+
"elliptic-curve",
|
|
852
|
+
"sha2",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "keccak"
|
|
857
|
+
version = "0.1.6"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"cpufeatures",
|
|
862
|
+
]
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "libc"
|
|
866
|
+
version = "0.2.186"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "libm"
|
|
872
|
+
version = "0.2.16"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "log"
|
|
878
|
+
version = "0.4.32"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "macro-string"
|
|
884
|
+
version = "0.1.4"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"proc-macro2",
|
|
889
|
+
"quote",
|
|
890
|
+
"syn 2.0.117",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "memchr"
|
|
895
|
+
version = "2.8.2"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "num-bigint"
|
|
901
|
+
version = "0.4.6"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"num-integer",
|
|
906
|
+
"num-traits",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "num-conv"
|
|
911
|
+
version = "0.2.2"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "num-derive"
|
|
917
|
+
version = "0.4.2"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"proc-macro2",
|
|
922
|
+
"quote",
|
|
923
|
+
"syn 2.0.117",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "num-integer"
|
|
928
|
+
version = "0.1.46"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"num-traits",
|
|
933
|
+
]
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "num-traits"
|
|
937
|
+
version = "0.2.19"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"autocfg",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "once_cell"
|
|
946
|
+
version = "1.21.4"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "p256"
|
|
952
|
+
version = "0.13.2"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"ecdsa",
|
|
957
|
+
"elliptic-curve",
|
|
958
|
+
"primeorder",
|
|
959
|
+
"sha2",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "paste"
|
|
964
|
+
version = "1.0.15"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "pin-project-lite"
|
|
970
|
+
version = "0.2.17"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "pkcs8"
|
|
976
|
+
version = "0.10.2"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"der",
|
|
981
|
+
"spki",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "powerfmt"
|
|
986
|
+
version = "0.2.0"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "ppv-lite86"
|
|
992
|
+
version = "0.2.21"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"zerocopy",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "prettyplease"
|
|
1001
|
+
version = "0.2.37"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"proc-macro2",
|
|
1006
|
+
"syn 2.0.117",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "primeorder"
|
|
1011
|
+
version = "0.13.6"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"elliptic-curve",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "proc-macro2"
|
|
1020
|
+
version = "1.0.106"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"unicode-ident",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "quote"
|
|
1029
|
+
version = "1.0.45"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"proc-macro2",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "rand"
|
|
1038
|
+
version = "0.8.6"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"libc",
|
|
1043
|
+
"rand_chacha",
|
|
1044
|
+
"rand_core",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "rand_chacha"
|
|
1049
|
+
version = "0.3.1"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"ppv-lite86",
|
|
1054
|
+
"rand_core",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "rand_core"
|
|
1059
|
+
version = "0.6.4"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"getrandom",
|
|
1064
|
+
]
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "ref-cast"
|
|
1068
|
+
version = "1.0.25"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"ref-cast-impl",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "ref-cast-impl"
|
|
1077
|
+
version = "1.0.25"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"proc-macro2",
|
|
1082
|
+
"quote",
|
|
1083
|
+
"syn 2.0.117",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "rfc6979"
|
|
1088
|
+
version = "0.4.0"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"hmac",
|
|
1093
|
+
"subtle",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "rustc_version"
|
|
1098
|
+
version = "0.4.1"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"semver",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "rustversion"
|
|
1107
|
+
version = "1.0.22"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "schemars"
|
|
1113
|
+
version = "0.8.22"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
|
|
1116
|
+
dependencies = [
|
|
1117
|
+
"dyn-clone",
|
|
1118
|
+
"serde",
|
|
1119
|
+
"serde_json",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "schemars"
|
|
1124
|
+
version = "0.9.0"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"dyn-clone",
|
|
1129
|
+
"ref-cast",
|
|
1130
|
+
"serde",
|
|
1131
|
+
"serde_json",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "schemars"
|
|
1136
|
+
version = "1.2.1"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"dyn-clone",
|
|
1141
|
+
"ref-cast",
|
|
1142
|
+
"serde",
|
|
1143
|
+
"serde_json",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "sec1"
|
|
1148
|
+
version = "0.7.3"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"base16ct",
|
|
1153
|
+
"der",
|
|
1154
|
+
"generic-array",
|
|
1155
|
+
"subtle",
|
|
1156
|
+
"zeroize",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "semver"
|
|
1161
|
+
version = "1.0.28"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "serde"
|
|
1167
|
+
version = "1.0.228"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"serde_core",
|
|
1172
|
+
"serde_derive",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "serde_core"
|
|
1177
|
+
version = "1.0.228"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"serde_derive",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "serde_derive"
|
|
1186
|
+
version = "1.0.228"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"proc-macro2",
|
|
1191
|
+
"quote",
|
|
1192
|
+
"syn 2.0.117",
|
|
1193
|
+
]
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "serde_json"
|
|
1197
|
+
version = "1.0.150"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"itoa",
|
|
1202
|
+
"memchr",
|
|
1203
|
+
"serde",
|
|
1204
|
+
"serde_core",
|
|
1205
|
+
"zmij",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "serde_with"
|
|
1210
|
+
version = "3.21.0"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"base64",
|
|
1215
|
+
"bs58",
|
|
1216
|
+
"chrono",
|
|
1217
|
+
"hex",
|
|
1218
|
+
"indexmap 1.9.3",
|
|
1219
|
+
"indexmap 2.14.0",
|
|
1220
|
+
"schemars 0.8.22",
|
|
1221
|
+
"schemars 0.9.0",
|
|
1222
|
+
"schemars 1.2.1",
|
|
1223
|
+
"serde_core",
|
|
1224
|
+
"serde_json",
|
|
1225
|
+
"serde_with_macros",
|
|
1226
|
+
"time",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "serde_with_macros"
|
|
1231
|
+
version = "3.21.0"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"darling 0.23.0",
|
|
1236
|
+
"proc-macro2",
|
|
1237
|
+
"quote",
|
|
1238
|
+
"syn 2.0.117",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "sha2"
|
|
1243
|
+
version = "0.10.9"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"cfg-if",
|
|
1248
|
+
"cpufeatures",
|
|
1249
|
+
"digest",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "sha3"
|
|
1254
|
+
version = "0.10.9"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"digest",
|
|
1259
|
+
"keccak",
|
|
1260
|
+
]
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "shlex"
|
|
1264
|
+
version = "2.0.1"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "signature"
|
|
1270
|
+
version = "2.2.0"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"digest",
|
|
1275
|
+
"rand_core",
|
|
1276
|
+
]
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "slab"
|
|
1280
|
+
version = "0.4.12"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "smallvec"
|
|
1286
|
+
version = "1.15.2"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "soroban-builtin-sdk-macros"
|
|
1292
|
+
version = "25.0.1"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "7192e3a5551a7aeee90d2110b11b615798e81951fd8c8293c87ea7f88b0168f5"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"itertools",
|
|
1297
|
+
"proc-macro2",
|
|
1298
|
+
"quote",
|
|
1299
|
+
"syn 2.0.117",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "soroban-env-common"
|
|
1304
|
+
version = "25.0.1"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "bfc49a80a68fc1005847308e63b9fce39874de731940b1807b721d472de3ff01"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"arbitrary",
|
|
1309
|
+
"crate-git-revision",
|
|
1310
|
+
"ethnum",
|
|
1311
|
+
"num-derive",
|
|
1312
|
+
"num-traits",
|
|
1313
|
+
"serde",
|
|
1314
|
+
"soroban-env-macros",
|
|
1315
|
+
"soroban-wasmi",
|
|
1316
|
+
"static_assertions",
|
|
1317
|
+
"stellar-xdr",
|
|
1318
|
+
"wasmparser",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "soroban-env-guest"
|
|
1323
|
+
version = "25.0.1"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "ea2334ba1cfe0a170ab744d96db0b4ca86934de9ff68187ceebc09dc342def55"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"soroban-env-common",
|
|
1328
|
+
"static_assertions",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "soroban-env-host"
|
|
1333
|
+
version = "25.0.1"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "43af5d53c57bc2f546e122adc0b1cca6f93942c718977379aa19ddd04f06fcec"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"ark-bls12-381",
|
|
1338
|
+
"ark-bn254",
|
|
1339
|
+
"ark-ec",
|
|
1340
|
+
"ark-ff",
|
|
1341
|
+
"ark-serialize",
|
|
1342
|
+
"curve25519-dalek",
|
|
1343
|
+
"ecdsa",
|
|
1344
|
+
"ed25519-dalek",
|
|
1345
|
+
"elliptic-curve",
|
|
1346
|
+
"generic-array",
|
|
1347
|
+
"getrandom",
|
|
1348
|
+
"hex-literal",
|
|
1349
|
+
"hmac",
|
|
1350
|
+
"k256",
|
|
1351
|
+
"num-derive",
|
|
1352
|
+
"num-integer",
|
|
1353
|
+
"num-traits",
|
|
1354
|
+
"p256",
|
|
1355
|
+
"rand",
|
|
1356
|
+
"rand_chacha",
|
|
1357
|
+
"sec1",
|
|
1358
|
+
"sha2",
|
|
1359
|
+
"sha3",
|
|
1360
|
+
"soroban-builtin-sdk-macros",
|
|
1361
|
+
"soroban-env-common",
|
|
1362
|
+
"soroban-wasmi",
|
|
1363
|
+
"static_assertions",
|
|
1364
|
+
"stellar-strkey 0.0.13",
|
|
1365
|
+
"wasmparser",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "soroban-env-macros"
|
|
1370
|
+
version = "25.0.1"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "a989167512e3592d455b1e204d703cfe578a36672a77ed2f9e6f7e1bbfd9cc5c"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"itertools",
|
|
1375
|
+
"proc-macro2",
|
|
1376
|
+
"quote",
|
|
1377
|
+
"serde",
|
|
1378
|
+
"serde_json",
|
|
1379
|
+
"stellar-xdr",
|
|
1380
|
+
"syn 2.0.117",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "soroban-ledger-snapshot"
|
|
1385
|
+
version = "25.3.1"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "2ca06e6c5029d1285e66219cb387a234224e26969ce8ad2bc2d5017e9395d63b"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"serde",
|
|
1390
|
+
"serde_json",
|
|
1391
|
+
"serde_with",
|
|
1392
|
+
"soroban-env-common",
|
|
1393
|
+
"soroban-env-host",
|
|
1394
|
+
"thiserror",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "soroban-sdk"
|
|
1399
|
+
version = "25.3.1"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "4502f2e018f238a4c5d3212d7d20ea6abcdc6e58babd63b642b693739db30fd1"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"arbitrary",
|
|
1404
|
+
"bytes-lit",
|
|
1405
|
+
"crate-git-revision",
|
|
1406
|
+
"ctor",
|
|
1407
|
+
"derive_arbitrary",
|
|
1408
|
+
"ed25519-dalek",
|
|
1409
|
+
"rand",
|
|
1410
|
+
"rustc_version",
|
|
1411
|
+
"serde",
|
|
1412
|
+
"serde_json",
|
|
1413
|
+
"soroban-env-guest",
|
|
1414
|
+
"soroban-env-host",
|
|
1415
|
+
"soroban-ledger-snapshot",
|
|
1416
|
+
"soroban-sdk-macros",
|
|
1417
|
+
"stellar-strkey 0.0.16",
|
|
1418
|
+
"visibility",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "soroban-sdk-macros"
|
|
1423
|
+
version = "25.3.1"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "ca03e9cf61d241cb9afdd6ddf41f6c25698b3f566a875e7009ea799b89e2bf0a"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"darling 0.20.11",
|
|
1428
|
+
"heck",
|
|
1429
|
+
"itertools",
|
|
1430
|
+
"macro-string",
|
|
1431
|
+
"proc-macro2",
|
|
1432
|
+
"quote",
|
|
1433
|
+
"sha2",
|
|
1434
|
+
"soroban-env-common",
|
|
1435
|
+
"soroban-spec",
|
|
1436
|
+
"soroban-spec-rust",
|
|
1437
|
+
"stellar-xdr",
|
|
1438
|
+
"syn 2.0.117",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "soroban-spec"
|
|
1443
|
+
version = "25.3.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "aa02e07f507cc27406ae0834db4dcf309b78c4cc8776eb3b2d662d66e8859d25"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"base64",
|
|
1448
|
+
"sha2",
|
|
1449
|
+
"stellar-xdr",
|
|
1450
|
+
"thiserror",
|
|
1451
|
+
"wasmparser",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "soroban-spec-rust"
|
|
1456
|
+
version = "25.3.1"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "6835bb510763ef3fa5405e89036e3c8ea6ef5abe55fc52cfe9ac0e38be9d531c"
|
|
1459
|
+
dependencies = [
|
|
1460
|
+
"prettyplease",
|
|
1461
|
+
"proc-macro2",
|
|
1462
|
+
"quote",
|
|
1463
|
+
"sha2",
|
|
1464
|
+
"soroban-spec",
|
|
1465
|
+
"stellar-xdr",
|
|
1466
|
+
"syn 2.0.117",
|
|
1467
|
+
"thiserror",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "soroban-wasmi"
|
|
1472
|
+
version = "0.31.1-soroban.20.0.1"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "710403de32d0e0c35375518cb995d4fc056d0d48966f2e56ea471b8cb8fc9719"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"smallvec",
|
|
1477
|
+
"spin",
|
|
1478
|
+
"wasmi_arena",
|
|
1479
|
+
"wasmi_core",
|
|
1480
|
+
"wasmparser-nostd",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "spin"
|
|
1485
|
+
version = "0.9.8"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "spki"
|
|
1491
|
+
version = "0.7.3"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"base64ct",
|
|
1496
|
+
"der",
|
|
1497
|
+
]
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "stable_deref_trait"
|
|
1501
|
+
version = "1.2.1"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "static_assertions"
|
|
1507
|
+
version = "1.1.0"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "stellar-strkey"
|
|
1513
|
+
version = "0.0.13"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "ee1832fb50c651ad10f734aaf5d31ca5acdfb197a6ecda64d93fcdb8885af913"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"crate-git-revision",
|
|
1518
|
+
"data-encoding",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "stellar-strkey"
|
|
1523
|
+
version = "0.0.16"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "084afcb0d458c3d5d5baa2d294b18f881e62cc258ef539d8fdf68be7dbe45520"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"crate-git-revision",
|
|
1528
|
+
"data-encoding",
|
|
1529
|
+
"heapless",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "stellar-xdr"
|
|
1534
|
+
version = "25.0.0"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "10d20dafed80076b227d4b17c0c508a4bbc4d5e4c3d4c1de7cd42242df4b1eaf"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"arbitrary",
|
|
1539
|
+
"base64",
|
|
1540
|
+
"cfg_eval",
|
|
1541
|
+
"crate-git-revision",
|
|
1542
|
+
"escape-bytes",
|
|
1543
|
+
"ethnum",
|
|
1544
|
+
"hex",
|
|
1545
|
+
"serde",
|
|
1546
|
+
"serde_with",
|
|
1547
|
+
"sha2",
|
|
1548
|
+
"stellar-strkey 0.0.13",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "strsim"
|
|
1553
|
+
version = "0.11.1"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "subtle"
|
|
1559
|
+
version = "2.6.1"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "syn"
|
|
1565
|
+
version = "1.0.109"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"proc-macro2",
|
|
1570
|
+
"quote",
|
|
1571
|
+
"unicode-ident",
|
|
1572
|
+
]
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "syn"
|
|
1576
|
+
version = "2.0.117"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"proc-macro2",
|
|
1581
|
+
"quote",
|
|
1582
|
+
"unicode-ident",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "thiserror"
|
|
1587
|
+
version = "1.0.69"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"thiserror-impl",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "thiserror-impl"
|
|
1596
|
+
version = "1.0.69"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"proc-macro2",
|
|
1601
|
+
"quote",
|
|
1602
|
+
"syn 2.0.117",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "time"
|
|
1607
|
+
version = "0.3.49"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"deranged",
|
|
1612
|
+
"num-conv",
|
|
1613
|
+
"powerfmt",
|
|
1614
|
+
"serde_core",
|
|
1615
|
+
"time-core",
|
|
1616
|
+
"time-macros",
|
|
1617
|
+
]
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "time-core"
|
|
1621
|
+
version = "0.1.9"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "time-macros"
|
|
1627
|
+
version = "0.2.29"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d"
|
|
1630
|
+
dependencies = [
|
|
1631
|
+
"num-conv",
|
|
1632
|
+
"time-core",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "tinyvec"
|
|
1637
|
+
version = "1.11.0"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1640
|
+
dependencies = [
|
|
1641
|
+
"tinyvec_macros",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "tinyvec_macros"
|
|
1646
|
+
version = "0.1.1"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "typenum"
|
|
1652
|
+
version = "1.20.1"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "unicode-ident"
|
|
1658
|
+
version = "1.0.24"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "verifier"
|
|
1664
|
+
version = "0.1.0"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"ark-bls12-381",
|
|
1667
|
+
"ark-ff",
|
|
1668
|
+
"ark-serialize",
|
|
1669
|
+
"soroban-sdk",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "version_check"
|
|
1674
|
+
version = "0.9.5"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "visibility"
|
|
1680
|
+
version = "0.1.1"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"proc-macro2",
|
|
1685
|
+
"quote",
|
|
1686
|
+
"syn 2.0.117",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "wasi"
|
|
1691
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "wasm-bindgen"
|
|
1697
|
+
version = "0.2.125"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"cfg-if",
|
|
1702
|
+
"once_cell",
|
|
1703
|
+
"rustversion",
|
|
1704
|
+
"wasm-bindgen-macro",
|
|
1705
|
+
"wasm-bindgen-shared",
|
|
1706
|
+
]
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "wasm-bindgen-macro"
|
|
1710
|
+
version = "0.2.125"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
1713
|
+
dependencies = [
|
|
1714
|
+
"quote",
|
|
1715
|
+
"wasm-bindgen-macro-support",
|
|
1716
|
+
]
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "wasm-bindgen-macro-support"
|
|
1720
|
+
version = "0.2.125"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
1723
|
+
dependencies = [
|
|
1724
|
+
"bumpalo",
|
|
1725
|
+
"proc-macro2",
|
|
1726
|
+
"quote",
|
|
1727
|
+
"syn 2.0.117",
|
|
1728
|
+
"wasm-bindgen-shared",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "wasm-bindgen-shared"
|
|
1733
|
+
version = "0.2.125"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"unicode-ident",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "wasmi_arena"
|
|
1742
|
+
version = "0.4.1"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073"
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "wasmi_core"
|
|
1748
|
+
version = "0.13.0"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"downcast-rs",
|
|
1753
|
+
"libm",
|
|
1754
|
+
"num-traits",
|
|
1755
|
+
"paste",
|
|
1756
|
+
]
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "wasmparser"
|
|
1760
|
+
version = "0.116.1"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "a58e28b80dd8340cb07b8242ae654756161f6fc8d0038123d679b7b99964fa50"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"indexmap 2.14.0",
|
|
1765
|
+
"semver",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "wasmparser-nostd"
|
|
1770
|
+
version = "0.100.2"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"indexmap-nostd",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "windows-core"
|
|
1779
|
+
version = "0.62.2"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"windows-implement",
|
|
1784
|
+
"windows-interface",
|
|
1785
|
+
"windows-link",
|
|
1786
|
+
"windows-result",
|
|
1787
|
+
"windows-strings",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "windows-implement"
|
|
1792
|
+
version = "0.60.2"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"proc-macro2",
|
|
1797
|
+
"quote",
|
|
1798
|
+
"syn 2.0.117",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "windows-interface"
|
|
1803
|
+
version = "0.59.3"
|
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"proc-macro2",
|
|
1808
|
+
"quote",
|
|
1809
|
+
"syn 2.0.117",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "windows-link"
|
|
1814
|
+
version = "0.2.1"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1817
|
+
|
|
1818
|
+
[[package]]
|
|
1819
|
+
name = "windows-result"
|
|
1820
|
+
version = "0.4.1"
|
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1823
|
+
dependencies = [
|
|
1824
|
+
"windows-link",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "windows-strings"
|
|
1829
|
+
version = "0.5.1"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"windows-link",
|
|
1834
|
+
]
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "zerocopy"
|
|
1838
|
+
version = "0.8.52"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1841
|
+
dependencies = [
|
|
1842
|
+
"zerocopy-derive",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "zerocopy-derive"
|
|
1847
|
+
version = "0.8.52"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1850
|
+
dependencies = [
|
|
1851
|
+
"proc-macro2",
|
|
1852
|
+
"quote",
|
|
1853
|
+
"syn 2.0.117",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "zeroize"
|
|
1858
|
+
version = "1.9.0"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"zeroize_derive",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "zeroize_derive"
|
|
1867
|
+
version = "1.5.0"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"proc-macro2",
|
|
1872
|
+
"quote",
|
|
1873
|
+
"syn 2.0.117",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "zmij"
|
|
1878
|
+
version = "1.0.21"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|