@haneullabs/walrus-wasm 0.1.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/CHANGELOG.md +55 -0
- package/Cargo.lock +2010 -0
- package/Cargo.toml +39 -0
- package/README.md +1 -0
- package/index.js +7 -0
- package/index.mjs +5 -0
- package/nodejs/walrus_wasm.d.ts +48 -0
- package/nodejs/walrus_wasm.js +560 -0
- package/nodejs/walrus_wasm_bg.wasm +0 -0
- package/nodejs/walrus_wasm_bg.wasm.d.ts +23 -0
- package/package.json +38 -0
- package/rust-toolchain.toml +3 -0
- package/src/bls12381.rs +47 -0
- package/src/encoder.rs +178 -0
- package/src/lib.rs +9 -0
- package/test/encoder.test.ts +260 -0
- package/vitest.config.mts +17 -0
- package/web/walrus_wasm.d.ts +95 -0
- package/web/walrus_wasm.js +626 -0
- package/web/walrus_wasm_bg.js +590 -0
- package/web/walrus_wasm_bg.wasm +0 -0
- package/web/walrus_wasm_bg.wasm.d.ts +23 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,2010 @@
|
|
|
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 = "ark-ec"
|
|
28
|
+
version = "0.4.2"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"ark-ff",
|
|
33
|
+
"ark-poly",
|
|
34
|
+
"ark-serialize",
|
|
35
|
+
"ark-std",
|
|
36
|
+
"derivative",
|
|
37
|
+
"hashbrown 0.13.2",
|
|
38
|
+
"itertools",
|
|
39
|
+
"num-traits",
|
|
40
|
+
"zeroize",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "ark-ff"
|
|
45
|
+
version = "0.4.2"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"ark-ff-asm",
|
|
50
|
+
"ark-ff-macros",
|
|
51
|
+
"ark-serialize",
|
|
52
|
+
"ark-std",
|
|
53
|
+
"derivative",
|
|
54
|
+
"digest 0.10.7",
|
|
55
|
+
"itertools",
|
|
56
|
+
"num-bigint",
|
|
57
|
+
"num-traits",
|
|
58
|
+
"paste",
|
|
59
|
+
"rustc_version",
|
|
60
|
+
"zeroize",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "ark-ff-asm"
|
|
65
|
+
version = "0.4.2"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"quote",
|
|
70
|
+
"syn 1.0.109",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "ark-ff-macros"
|
|
75
|
+
version = "0.4.2"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"num-bigint",
|
|
80
|
+
"num-traits",
|
|
81
|
+
"proc-macro2",
|
|
82
|
+
"quote",
|
|
83
|
+
"syn 1.0.109",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "ark-poly"
|
|
88
|
+
version = "0.4.2"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"ark-ff",
|
|
93
|
+
"ark-serialize",
|
|
94
|
+
"ark-std",
|
|
95
|
+
"derivative",
|
|
96
|
+
"hashbrown 0.13.2",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "ark-secp256k1"
|
|
101
|
+
version = "0.4.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "4c02e954eaeb4ddb29613fee20840c2bbc85ca4396d53e33837e11905363c5f2"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"ark-ec",
|
|
106
|
+
"ark-ff",
|
|
107
|
+
"ark-std",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "ark-secp256r1"
|
|
112
|
+
version = "0.4.0"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "3975a01b0a6e3eae0f72ec7ca8598a6620fc72fa5981f6f5cca33b7cd788f633"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"ark-ec",
|
|
117
|
+
"ark-ff",
|
|
118
|
+
"ark-std",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "ark-serialize"
|
|
123
|
+
version = "0.4.2"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"ark-serialize-derive",
|
|
128
|
+
"ark-std",
|
|
129
|
+
"digest 0.10.7",
|
|
130
|
+
"num-bigint",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "ark-serialize-derive"
|
|
135
|
+
version = "0.4.2"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"proc-macro2",
|
|
140
|
+
"quote",
|
|
141
|
+
"syn 1.0.109",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "ark-std"
|
|
146
|
+
version = "0.4.0"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"num-traits",
|
|
151
|
+
"rand",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "auto_ops"
|
|
156
|
+
version = "0.3.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "7460f7dd8e100147b82a63afca1a20eb6c231ee36b90ba7272e14951cb58af59"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "autocfg"
|
|
162
|
+
version = "1.5.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "base16ct"
|
|
168
|
+
version = "0.2.0"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "base64"
|
|
174
|
+
version = "0.22.1"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "base64ct"
|
|
180
|
+
version = "1.8.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "bcs"
|
|
186
|
+
version = "0.1.6"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "85b6598a2f5d564fb7855dc6b06fd1c38cff5a72bd8b863a4d021938497b440a"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"serde",
|
|
191
|
+
"thiserror 1.0.69",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "bech32"
|
|
196
|
+
version = "0.9.1"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "bincode"
|
|
202
|
+
version = "1.3.3"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"serde",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "bitcoin-private"
|
|
211
|
+
version = "0.1.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "73290177011694f38ec25e165d0387ab7ea749a4b81cd4c80dae5988229f7a57"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "bitcoin_hashes"
|
|
217
|
+
version = "0.12.0"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "5d7066118b13d4b20b23645932dfb3a81ce7e29f95726c2036fa33cd7b092501"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"bitcoin-private",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "blake2"
|
|
226
|
+
version = "0.10.6"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"digest 0.10.7",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "block-buffer"
|
|
235
|
+
version = "0.9.0"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"generic-array",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "block-buffer"
|
|
244
|
+
version = "0.10.4"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"generic-array",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "blst"
|
|
253
|
+
version = "0.3.16"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "dcdb4c7013139a150f9fc55d123186dbfaba0d912817466282c73ac49e71fb45"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"cc",
|
|
258
|
+
"glob",
|
|
259
|
+
"threadpool",
|
|
260
|
+
"zeroize",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "bs58"
|
|
265
|
+
version = "0.4.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "bumpalo"
|
|
271
|
+
version = "3.19.0"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "byteorder"
|
|
277
|
+
version = "1.5.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "cc"
|
|
283
|
+
version = "1.2.45"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"find-msvc-tools",
|
|
288
|
+
"shlex",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "cfg-if"
|
|
293
|
+
version = "1.0.4"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "chrono"
|
|
299
|
+
version = "0.4.42"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"iana-time-zone",
|
|
304
|
+
"num-traits",
|
|
305
|
+
"serde",
|
|
306
|
+
"windows-link",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "console_error_panic_hook"
|
|
311
|
+
version = "0.1.7"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"cfg-if",
|
|
316
|
+
"wasm-bindgen",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "const-oid"
|
|
321
|
+
version = "0.9.6"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "convert_case"
|
|
327
|
+
version = "0.4.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "core-foundation-sys"
|
|
333
|
+
version = "0.8.7"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "cpufeatures"
|
|
339
|
+
version = "0.2.17"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"libc",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "crypto-bigint"
|
|
348
|
+
version = "0.5.5"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"generic-array",
|
|
353
|
+
"rand_core",
|
|
354
|
+
"subtle",
|
|
355
|
+
"zeroize",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "crypto-common"
|
|
360
|
+
version = "0.1.6"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"generic-array",
|
|
365
|
+
"typenum",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "curve25519-dalek-ng"
|
|
370
|
+
version = "4.1.1"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "1c359b7249347e46fb28804470d071c921156ad62b3eef5d34e2ba867533dec8"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"byteorder",
|
|
375
|
+
"digest 0.9.0",
|
|
376
|
+
"rand_core",
|
|
377
|
+
"subtle-ng",
|
|
378
|
+
"zeroize",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "darling"
|
|
383
|
+
version = "0.21.3"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"darling_core",
|
|
388
|
+
"darling_macro",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "darling_core"
|
|
393
|
+
version = "0.21.3"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"fnv",
|
|
398
|
+
"ident_case",
|
|
399
|
+
"proc-macro2",
|
|
400
|
+
"quote",
|
|
401
|
+
"strsim",
|
|
402
|
+
"syn 2.0.110",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "darling_macro"
|
|
407
|
+
version = "0.21.3"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"darling_core",
|
|
412
|
+
"quote",
|
|
413
|
+
"syn 2.0.110",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "der"
|
|
418
|
+
version = "0.6.1"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"const-oid",
|
|
423
|
+
"pem-rfc7468 0.6.0",
|
|
424
|
+
"zeroize",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "der"
|
|
429
|
+
version = "0.7.10"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"const-oid",
|
|
434
|
+
"pem-rfc7468 0.7.0",
|
|
435
|
+
"zeroize",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "deranged"
|
|
440
|
+
version = "0.5.5"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"powerfmt",
|
|
445
|
+
"serde_core",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "derivative"
|
|
450
|
+
version = "2.2.0"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"proc-macro2",
|
|
455
|
+
"quote",
|
|
456
|
+
"syn 1.0.109",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "derive_more"
|
|
461
|
+
version = "0.99.20"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"convert_case",
|
|
466
|
+
"proc-macro2",
|
|
467
|
+
"quote",
|
|
468
|
+
"rustc_version",
|
|
469
|
+
"syn 2.0.110",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "digest"
|
|
474
|
+
version = "0.9.0"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"generic-array",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "digest"
|
|
483
|
+
version = "0.10.7"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"block-buffer 0.10.4",
|
|
488
|
+
"const-oid",
|
|
489
|
+
"crypto-common",
|
|
490
|
+
"subtle",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "dyn-clone"
|
|
495
|
+
version = "1.0.20"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "ecdsa"
|
|
501
|
+
version = "0.16.9"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"der 0.7.10",
|
|
506
|
+
"digest 0.10.7",
|
|
507
|
+
"elliptic-curve",
|
|
508
|
+
"rfc6979",
|
|
509
|
+
"signature",
|
|
510
|
+
"spki 0.7.3",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "ed25519-consensus"
|
|
515
|
+
version = "2.1.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "3c8465edc8ee7436ffea81d21a019b16676ee3db267aa8d5a8d729581ecf998b"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"curve25519-dalek-ng",
|
|
520
|
+
"hex",
|
|
521
|
+
"rand_core",
|
|
522
|
+
"serde",
|
|
523
|
+
"sha2 0.9.9",
|
|
524
|
+
"thiserror 1.0.69",
|
|
525
|
+
"zeroize",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "either"
|
|
530
|
+
version = "1.15.0"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "elliptic-curve"
|
|
536
|
+
version = "0.13.8"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"base16ct",
|
|
541
|
+
"crypto-bigint",
|
|
542
|
+
"digest 0.10.7",
|
|
543
|
+
"ff",
|
|
544
|
+
"generic-array",
|
|
545
|
+
"group",
|
|
546
|
+
"pem-rfc7468 0.7.0",
|
|
547
|
+
"pkcs8 0.10.2",
|
|
548
|
+
"rand_core",
|
|
549
|
+
"sec1",
|
|
550
|
+
"subtle",
|
|
551
|
+
"zeroize",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "enum_dispatch"
|
|
556
|
+
version = "0.3.13"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"once_cell",
|
|
561
|
+
"proc-macro2",
|
|
562
|
+
"quote",
|
|
563
|
+
"syn 2.0.110",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "equivalent"
|
|
568
|
+
version = "1.0.2"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "fastcrypto"
|
|
574
|
+
version = "0.1.8"
|
|
575
|
+
source = "git+https://github.com/haneullabs/fastcrypto.git?rev=f519333aefa238384f813af74bbb58c68cc38ee7#f519333aefa238384f813af74bbb58c68cc38ee7"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"ark-ec",
|
|
578
|
+
"ark-ff",
|
|
579
|
+
"ark-secp256r1",
|
|
580
|
+
"ark-serialize",
|
|
581
|
+
"auto_ops",
|
|
582
|
+
"base64ct",
|
|
583
|
+
"bech32",
|
|
584
|
+
"bincode",
|
|
585
|
+
"blake2",
|
|
586
|
+
"blst",
|
|
587
|
+
"bs58",
|
|
588
|
+
"curve25519-dalek-ng",
|
|
589
|
+
"derive_more",
|
|
590
|
+
"digest 0.10.7",
|
|
591
|
+
"ecdsa",
|
|
592
|
+
"ed25519-consensus",
|
|
593
|
+
"elliptic-curve",
|
|
594
|
+
"fastcrypto-derive 0.1.3 (git+https://github.com/haneullabs/fastcrypto.git?rev=f519333aefa238384f813af74bbb58c68cc38ee7)",
|
|
595
|
+
"generic-array",
|
|
596
|
+
"getrandom",
|
|
597
|
+
"hex",
|
|
598
|
+
"hex-literal",
|
|
599
|
+
"hkdf",
|
|
600
|
+
"lazy_static",
|
|
601
|
+
"num-bigint",
|
|
602
|
+
"once_cell",
|
|
603
|
+
"p256",
|
|
604
|
+
"rand",
|
|
605
|
+
"readonly",
|
|
606
|
+
"rfc6979",
|
|
607
|
+
"rsa",
|
|
608
|
+
"schemars 0.8.22",
|
|
609
|
+
"secp256k1",
|
|
610
|
+
"serde",
|
|
611
|
+
"serde_json",
|
|
612
|
+
"serde_with",
|
|
613
|
+
"sha2 0.10.9",
|
|
614
|
+
"sha3",
|
|
615
|
+
"signature",
|
|
616
|
+
"static_assertions",
|
|
617
|
+
"thiserror 1.0.69",
|
|
618
|
+
"tokio",
|
|
619
|
+
"typenum",
|
|
620
|
+
"zeroize",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "fastcrypto"
|
|
625
|
+
version = "0.1.9"
|
|
626
|
+
source = "git+https://github.com/HaneulLabs/fastcrypto?rev=4db0e90c732bbf7420ca20de808b698883148d9c#4db0e90c732bbf7420ca20de808b698883148d9c"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"ark-ec",
|
|
629
|
+
"ark-ff",
|
|
630
|
+
"ark-secp256k1",
|
|
631
|
+
"ark-secp256r1",
|
|
632
|
+
"ark-serialize",
|
|
633
|
+
"auto_ops",
|
|
634
|
+
"base64ct",
|
|
635
|
+
"bcs",
|
|
636
|
+
"bech32",
|
|
637
|
+
"bincode",
|
|
638
|
+
"blake2",
|
|
639
|
+
"blst",
|
|
640
|
+
"bs58",
|
|
641
|
+
"curve25519-dalek-ng",
|
|
642
|
+
"derive_more",
|
|
643
|
+
"digest 0.10.7",
|
|
644
|
+
"ecdsa",
|
|
645
|
+
"ed25519-consensus",
|
|
646
|
+
"elliptic-curve",
|
|
647
|
+
"fastcrypto-derive 0.1.3 (git+https://github.com/HaneulLabs/fastcrypto?rev=4db0e90c732bbf7420ca20de808b698883148d9c)",
|
|
648
|
+
"generic-array",
|
|
649
|
+
"hex",
|
|
650
|
+
"hex-literal",
|
|
651
|
+
"hkdf",
|
|
652
|
+
"lazy_static",
|
|
653
|
+
"num-bigint",
|
|
654
|
+
"once_cell",
|
|
655
|
+
"p256",
|
|
656
|
+
"rand",
|
|
657
|
+
"readonly",
|
|
658
|
+
"rfc6979",
|
|
659
|
+
"rsa",
|
|
660
|
+
"schemars 0.8.22",
|
|
661
|
+
"secp256k1",
|
|
662
|
+
"serde",
|
|
663
|
+
"serde_json",
|
|
664
|
+
"serde_with",
|
|
665
|
+
"sha2 0.10.9",
|
|
666
|
+
"sha3",
|
|
667
|
+
"signature",
|
|
668
|
+
"static_assertions",
|
|
669
|
+
"thiserror 1.0.69",
|
|
670
|
+
"tokio",
|
|
671
|
+
"typenum",
|
|
672
|
+
"zeroize",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "fastcrypto-derive"
|
|
677
|
+
version = "0.1.3"
|
|
678
|
+
source = "git+https://github.com/HaneulLabs/fastcrypto?rev=4db0e90c732bbf7420ca20de808b698883148d9c#4db0e90c732bbf7420ca20de808b698883148d9c"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"quote",
|
|
681
|
+
"syn 1.0.109",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "fastcrypto-derive"
|
|
686
|
+
version = "0.1.3"
|
|
687
|
+
source = "git+https://github.com/haneullabs/fastcrypto.git?rev=f519333aefa238384f813af74bbb58c68cc38ee7#f519333aefa238384f813af74bbb58c68cc38ee7"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"quote",
|
|
690
|
+
"syn 1.0.109",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "ff"
|
|
695
|
+
version = "0.13.1"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"rand_core",
|
|
700
|
+
"subtle",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "find-msvc-tools"
|
|
705
|
+
version = "0.1.4"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "fixedbitset"
|
|
711
|
+
version = "0.5.7"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "fnv"
|
|
717
|
+
version = "1.0.7"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "generic-array"
|
|
723
|
+
version = "0.14.9"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"serde",
|
|
728
|
+
"typenum",
|
|
729
|
+
"version_check",
|
|
730
|
+
"zeroize",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "getrandom"
|
|
735
|
+
version = "0.2.16"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"cfg-if",
|
|
740
|
+
"js-sys",
|
|
741
|
+
"libc",
|
|
742
|
+
"wasi",
|
|
743
|
+
"wasm-bindgen",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "glob"
|
|
748
|
+
version = "0.3.3"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "group"
|
|
754
|
+
version = "0.13.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"ff",
|
|
759
|
+
"rand_core",
|
|
760
|
+
"subtle",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "hashbrown"
|
|
765
|
+
version = "0.12.3"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "hashbrown"
|
|
771
|
+
version = "0.13.2"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"ahash",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "hashbrown"
|
|
780
|
+
version = "0.16.0"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "hermit-abi"
|
|
786
|
+
version = "0.5.2"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "hex"
|
|
792
|
+
version = "0.4.3"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "hex-literal"
|
|
798
|
+
version = "0.4.1"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "hkdf"
|
|
804
|
+
version = "0.12.4"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"hmac",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "hmac"
|
|
813
|
+
version = "0.12.1"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"digest 0.10.7",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "iana-time-zone"
|
|
822
|
+
version = "0.1.64"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"android_system_properties",
|
|
827
|
+
"core-foundation-sys",
|
|
828
|
+
"iana-time-zone-haiku",
|
|
829
|
+
"js-sys",
|
|
830
|
+
"log",
|
|
831
|
+
"wasm-bindgen",
|
|
832
|
+
"windows-core",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "iana-time-zone-haiku"
|
|
837
|
+
version = "0.1.2"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"cc",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "ident_case"
|
|
846
|
+
version = "1.0.1"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "indexmap"
|
|
852
|
+
version = "1.9.3"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"autocfg",
|
|
857
|
+
"hashbrown 0.12.3",
|
|
858
|
+
"serde",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "indexmap"
|
|
863
|
+
version = "2.12.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"equivalent",
|
|
868
|
+
"hashbrown 0.16.0",
|
|
869
|
+
"serde",
|
|
870
|
+
"serde_core",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "itertools"
|
|
875
|
+
version = "0.10.5"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"either",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "itoa"
|
|
884
|
+
version = "1.0.15"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "js-sys"
|
|
890
|
+
version = "0.3.82"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"once_cell",
|
|
895
|
+
"wasm-bindgen",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "keccak"
|
|
900
|
+
version = "0.1.5"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"cpufeatures",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "lazy_static"
|
|
909
|
+
version = "1.5.0"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"spin",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "libc"
|
|
918
|
+
version = "0.2.177"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "libm"
|
|
924
|
+
version = "0.2.15"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "log"
|
|
930
|
+
version = "0.4.28"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "memchr"
|
|
936
|
+
version = "2.7.6"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "minicov"
|
|
942
|
+
version = "0.3.7"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"cc",
|
|
947
|
+
"walkdir",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "num-bigint"
|
|
952
|
+
version = "0.4.6"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"num-integer",
|
|
957
|
+
"num-traits",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "num-bigint-dig"
|
|
962
|
+
version = "0.8.5"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "82c79c15c05d4bf82b6f5ef163104cc81a760d8e874d38ac50ab67c8877b647b"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"lazy_static",
|
|
967
|
+
"libm",
|
|
968
|
+
"num-integer",
|
|
969
|
+
"num-iter",
|
|
970
|
+
"num-traits",
|
|
971
|
+
"rand",
|
|
972
|
+
"smallvec",
|
|
973
|
+
"zeroize",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "num-conv"
|
|
978
|
+
version = "0.1.0"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "num-integer"
|
|
984
|
+
version = "0.1.46"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"num-traits",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "num-iter"
|
|
993
|
+
version = "0.1.45"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"autocfg",
|
|
998
|
+
"num-integer",
|
|
999
|
+
"num-traits",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "num-traits"
|
|
1004
|
+
version = "0.2.19"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"autocfg",
|
|
1009
|
+
"libm",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "num_cpus"
|
|
1014
|
+
version = "1.17.0"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"hermit-abi",
|
|
1019
|
+
"libc",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "once_cell"
|
|
1024
|
+
version = "1.21.3"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "opaque-debug"
|
|
1030
|
+
version = "0.3.1"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "p256"
|
|
1036
|
+
version = "0.13.2"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"ecdsa",
|
|
1041
|
+
"elliptic-curve",
|
|
1042
|
+
"primeorder",
|
|
1043
|
+
"sha2 0.10.9",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "paste"
|
|
1048
|
+
version = "1.0.15"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "pem-rfc7468"
|
|
1054
|
+
version = "0.6.0"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"base64ct",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "pem-rfc7468"
|
|
1063
|
+
version = "0.7.0"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"base64ct",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "pin-project-lite"
|
|
1072
|
+
version = "0.2.16"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "pkcs1"
|
|
1078
|
+
version = "0.4.1"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"der 0.6.1",
|
|
1083
|
+
"pkcs8 0.9.0",
|
|
1084
|
+
"spki 0.6.0",
|
|
1085
|
+
"zeroize",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "pkcs8"
|
|
1090
|
+
version = "0.9.0"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"der 0.6.1",
|
|
1095
|
+
"spki 0.6.0",
|
|
1096
|
+
]
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "pkcs8"
|
|
1100
|
+
version = "0.10.2"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"der 0.7.10",
|
|
1105
|
+
"spki 0.7.3",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "powerfmt"
|
|
1110
|
+
version = "0.2.0"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "ppv-lite86"
|
|
1116
|
+
version = "0.2.21"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"zerocopy",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "primeorder"
|
|
1125
|
+
version = "0.13.6"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"elliptic-curve",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "proc-macro2"
|
|
1134
|
+
version = "1.0.103"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"unicode-ident",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "quote"
|
|
1143
|
+
version = "1.0.42"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
1146
|
+
dependencies = [
|
|
1147
|
+
"proc-macro2",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "rand"
|
|
1152
|
+
version = "0.8.5"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"libc",
|
|
1157
|
+
"rand_chacha",
|
|
1158
|
+
"rand_core",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "rand_chacha"
|
|
1163
|
+
version = "0.3.1"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"ppv-lite86",
|
|
1168
|
+
"rand_core",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "rand_core"
|
|
1173
|
+
version = "0.6.4"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"getrandom",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "readme-rustdocifier"
|
|
1182
|
+
version = "0.1.1"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "08ad765b21a08b1a8e5cdce052719188a23772bcbefb3c439f0baaf62c56ceac"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "readonly"
|
|
1188
|
+
version = "0.2.13"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "f2a62d85ed81ca5305dc544bd42c8804c5060b78ffa5ad3c64b0fb6a8c13d062"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"proc-macro2",
|
|
1193
|
+
"quote",
|
|
1194
|
+
"syn 2.0.110",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "reed-solomon-simd"
|
|
1199
|
+
version = "3.1.0"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "cffef0520d30fbd4151fb20e262947ae47fb0ab276a744a19b6398438105a072"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"cpufeatures",
|
|
1204
|
+
"fixedbitset",
|
|
1205
|
+
"once_cell",
|
|
1206
|
+
"readme-rustdocifier",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "ref-cast"
|
|
1211
|
+
version = "1.0.25"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"ref-cast-impl",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "ref-cast-impl"
|
|
1220
|
+
version = "1.0.25"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"proc-macro2",
|
|
1225
|
+
"quote",
|
|
1226
|
+
"syn 2.0.110",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "rfc6979"
|
|
1231
|
+
version = "0.4.0"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"hmac",
|
|
1236
|
+
"subtle",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "rsa"
|
|
1241
|
+
version = "0.8.2"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "55a77d189da1fee555ad95b7e50e7457d91c0e089ec68ca69ad2989413bbdab4"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"byteorder",
|
|
1246
|
+
"digest 0.10.7",
|
|
1247
|
+
"num-bigint-dig",
|
|
1248
|
+
"num-integer",
|
|
1249
|
+
"num-iter",
|
|
1250
|
+
"num-traits",
|
|
1251
|
+
"pkcs1",
|
|
1252
|
+
"pkcs8 0.9.0",
|
|
1253
|
+
"rand_core",
|
|
1254
|
+
"sha2 0.10.9",
|
|
1255
|
+
"signature",
|
|
1256
|
+
"subtle",
|
|
1257
|
+
"zeroize",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "rustc_version"
|
|
1262
|
+
version = "0.4.1"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"semver",
|
|
1267
|
+
]
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "rustversion"
|
|
1271
|
+
version = "1.0.22"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "ryu"
|
|
1277
|
+
version = "1.0.20"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "same-file"
|
|
1283
|
+
version = "1.0.6"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"winapi-util",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "schemars"
|
|
1292
|
+
version = "0.8.22"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"dyn-clone",
|
|
1297
|
+
"schemars_derive",
|
|
1298
|
+
"serde",
|
|
1299
|
+
"serde_json",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "schemars"
|
|
1304
|
+
version = "0.9.0"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"dyn-clone",
|
|
1309
|
+
"ref-cast",
|
|
1310
|
+
"serde",
|
|
1311
|
+
"serde_json",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "schemars"
|
|
1316
|
+
version = "1.1.0"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289"
|
|
1319
|
+
dependencies = [
|
|
1320
|
+
"dyn-clone",
|
|
1321
|
+
"ref-cast",
|
|
1322
|
+
"serde",
|
|
1323
|
+
"serde_json",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "schemars_derive"
|
|
1328
|
+
version = "0.8.22"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
|
|
1331
|
+
dependencies = [
|
|
1332
|
+
"proc-macro2",
|
|
1333
|
+
"quote",
|
|
1334
|
+
"serde_derive_internals",
|
|
1335
|
+
"syn 2.0.110",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "sec1"
|
|
1340
|
+
version = "0.7.3"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"base16ct",
|
|
1345
|
+
"der 0.7.10",
|
|
1346
|
+
"generic-array",
|
|
1347
|
+
"pkcs8 0.10.2",
|
|
1348
|
+
"subtle",
|
|
1349
|
+
"zeroize",
|
|
1350
|
+
]
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "secp256k1"
|
|
1354
|
+
version = "0.27.0"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"bitcoin_hashes",
|
|
1359
|
+
"rand",
|
|
1360
|
+
"secp256k1-sys",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "secp256k1-sys"
|
|
1365
|
+
version = "0.8.2"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "4473013577ec77b4ee3668179ef1186df3146e2cf2d927bd200974c6fe60fd99"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"cc",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "semver"
|
|
1374
|
+
version = "1.0.27"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "serde"
|
|
1380
|
+
version = "1.0.228"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"serde_core",
|
|
1385
|
+
"serde_derive",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "serde-wasm-bindgen"
|
|
1390
|
+
version = "0.4.5"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"js-sys",
|
|
1395
|
+
"serde",
|
|
1396
|
+
"wasm-bindgen",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "serde_core"
|
|
1401
|
+
version = "1.0.228"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1404
|
+
dependencies = [
|
|
1405
|
+
"serde_derive",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "serde_derive"
|
|
1410
|
+
version = "1.0.228"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"proc-macro2",
|
|
1415
|
+
"quote",
|
|
1416
|
+
"syn 2.0.110",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "serde_derive_internals"
|
|
1421
|
+
version = "0.29.1"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"proc-macro2",
|
|
1426
|
+
"quote",
|
|
1427
|
+
"syn 2.0.110",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "serde_json"
|
|
1432
|
+
version = "1.0.145"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1435
|
+
dependencies = [
|
|
1436
|
+
"itoa",
|
|
1437
|
+
"memchr",
|
|
1438
|
+
"ryu",
|
|
1439
|
+
"serde",
|
|
1440
|
+
"serde_core",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "serde_with"
|
|
1445
|
+
version = "3.15.1"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"base64",
|
|
1450
|
+
"chrono",
|
|
1451
|
+
"hex",
|
|
1452
|
+
"indexmap 1.9.3",
|
|
1453
|
+
"indexmap 2.12.0",
|
|
1454
|
+
"schemars 0.9.0",
|
|
1455
|
+
"schemars 1.1.0",
|
|
1456
|
+
"serde_core",
|
|
1457
|
+
"serde_json",
|
|
1458
|
+
"serde_with_macros",
|
|
1459
|
+
"time",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "serde_with_macros"
|
|
1464
|
+
version = "3.15.1"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"darling",
|
|
1469
|
+
"proc-macro2",
|
|
1470
|
+
"quote",
|
|
1471
|
+
"syn 2.0.110",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "sha2"
|
|
1476
|
+
version = "0.9.9"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"block-buffer 0.9.0",
|
|
1481
|
+
"cfg-if",
|
|
1482
|
+
"cpufeatures",
|
|
1483
|
+
"digest 0.9.0",
|
|
1484
|
+
"opaque-debug",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "sha2"
|
|
1489
|
+
version = "0.10.9"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"cfg-if",
|
|
1494
|
+
"cpufeatures",
|
|
1495
|
+
"digest 0.10.7",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "sha3"
|
|
1500
|
+
version = "0.10.8"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"digest 0.10.7",
|
|
1505
|
+
"keccak",
|
|
1506
|
+
]
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "shlex"
|
|
1510
|
+
version = "1.3.0"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "signature"
|
|
1516
|
+
version = "2.2.0"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
1519
|
+
dependencies = [
|
|
1520
|
+
"digest 0.10.7",
|
|
1521
|
+
"rand_core",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "smallvec"
|
|
1526
|
+
version = "1.15.1"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "spin"
|
|
1532
|
+
version = "0.9.8"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "spki"
|
|
1538
|
+
version = "0.6.0"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"base64ct",
|
|
1543
|
+
"der 0.6.1",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "spki"
|
|
1548
|
+
version = "0.7.3"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"base64ct",
|
|
1553
|
+
"der 0.7.10",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "static_assertions"
|
|
1558
|
+
version = "1.1.0"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "strsim"
|
|
1564
|
+
version = "0.11.1"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "subtle"
|
|
1570
|
+
version = "2.6.1"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "subtle-ng"
|
|
1576
|
+
version = "2.5.0"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142"
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "syn"
|
|
1582
|
+
version = "1.0.109"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"proc-macro2",
|
|
1587
|
+
"quote",
|
|
1588
|
+
"unicode-ident",
|
|
1589
|
+
]
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "syn"
|
|
1593
|
+
version = "2.0.110"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"proc-macro2",
|
|
1598
|
+
"quote",
|
|
1599
|
+
"unicode-ident",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "thiserror"
|
|
1604
|
+
version = "1.0.69"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"thiserror-impl 1.0.69",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "thiserror"
|
|
1613
|
+
version = "2.0.17"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"thiserror-impl 2.0.17",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "thiserror-impl"
|
|
1622
|
+
version = "1.0.69"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"proc-macro2",
|
|
1627
|
+
"quote",
|
|
1628
|
+
"syn 2.0.110",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "thiserror-impl"
|
|
1633
|
+
version = "2.0.17"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"proc-macro2",
|
|
1638
|
+
"quote",
|
|
1639
|
+
"syn 2.0.110",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "threadpool"
|
|
1644
|
+
version = "1.8.1"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"num_cpus",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "time"
|
|
1653
|
+
version = "0.3.44"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"deranged",
|
|
1658
|
+
"itoa",
|
|
1659
|
+
"num-conv",
|
|
1660
|
+
"powerfmt",
|
|
1661
|
+
"serde",
|
|
1662
|
+
"time-core",
|
|
1663
|
+
"time-macros",
|
|
1664
|
+
]
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "time-core"
|
|
1668
|
+
version = "0.1.6"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "time-macros"
|
|
1674
|
+
version = "0.2.24"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"num-conv",
|
|
1679
|
+
"time-core",
|
|
1680
|
+
]
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "tokio"
|
|
1684
|
+
version = "1.48.0"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
1687
|
+
dependencies = [
|
|
1688
|
+
"pin-project-lite",
|
|
1689
|
+
"tokio-macros",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "tokio-macros"
|
|
1694
|
+
version = "2.6.0"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"proc-macro2",
|
|
1699
|
+
"quote",
|
|
1700
|
+
"syn 2.0.110",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "tracing"
|
|
1705
|
+
version = "0.1.41"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"pin-project-lite",
|
|
1710
|
+
"tracing-attributes",
|
|
1711
|
+
"tracing-core",
|
|
1712
|
+
]
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "tracing-attributes"
|
|
1716
|
+
version = "0.1.30"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
1719
|
+
dependencies = [
|
|
1720
|
+
"proc-macro2",
|
|
1721
|
+
"quote",
|
|
1722
|
+
"syn 2.0.110",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "tracing-core"
|
|
1727
|
+
version = "0.1.34"
|
|
1728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1730
|
+
dependencies = [
|
|
1731
|
+
"once_cell",
|
|
1732
|
+
]
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "typenum"
|
|
1736
|
+
version = "1.19.0"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "unicode-ident"
|
|
1742
|
+
version = "1.0.22"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "version_check"
|
|
1748
|
+
version = "0.9.5"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "walkdir"
|
|
1754
|
+
version = "2.5.0"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1757
|
+
dependencies = [
|
|
1758
|
+
"same-file",
|
|
1759
|
+
"winapi-util",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "walrus-core"
|
|
1764
|
+
version = "1.40.0"
|
|
1765
|
+
source = "git+ssh://git@github.com/haneullabs/walrus.git?branch=main#0173958c2c8a243932d72c4f41c6e5ae42977453"
|
|
1766
|
+
dependencies = [
|
|
1767
|
+
"base64",
|
|
1768
|
+
"bcs",
|
|
1769
|
+
"enum_dispatch",
|
|
1770
|
+
"fastcrypto 0.1.9",
|
|
1771
|
+
"hex",
|
|
1772
|
+
"p256",
|
|
1773
|
+
"rand",
|
|
1774
|
+
"reed-solomon-simd",
|
|
1775
|
+
"serde",
|
|
1776
|
+
"serde_with",
|
|
1777
|
+
"thiserror 2.0.17",
|
|
1778
|
+
"tracing",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "walrus-wasm"
|
|
1783
|
+
version = "0.1.0"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"bcs",
|
|
1786
|
+
"console_error_panic_hook",
|
|
1787
|
+
"fastcrypto 0.1.8",
|
|
1788
|
+
"js-sys",
|
|
1789
|
+
"reed-solomon-simd",
|
|
1790
|
+
"serde-wasm-bindgen",
|
|
1791
|
+
"walrus-core",
|
|
1792
|
+
"wasm-bindgen",
|
|
1793
|
+
"wasm-bindgen-test",
|
|
1794
|
+
"web-sys",
|
|
1795
|
+
]
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "wasi"
|
|
1799
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "wasm-bindgen"
|
|
1805
|
+
version = "0.2.105"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
1808
|
+
dependencies = [
|
|
1809
|
+
"cfg-if",
|
|
1810
|
+
"once_cell",
|
|
1811
|
+
"rustversion",
|
|
1812
|
+
"wasm-bindgen-macro",
|
|
1813
|
+
"wasm-bindgen-shared",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "wasm-bindgen-futures"
|
|
1818
|
+
version = "0.4.55"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"cfg-if",
|
|
1823
|
+
"js-sys",
|
|
1824
|
+
"once_cell",
|
|
1825
|
+
"wasm-bindgen",
|
|
1826
|
+
"web-sys",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "wasm-bindgen-macro"
|
|
1831
|
+
version = "0.2.105"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"quote",
|
|
1836
|
+
"wasm-bindgen-macro-support",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "wasm-bindgen-macro-support"
|
|
1841
|
+
version = "0.2.105"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
1844
|
+
dependencies = [
|
|
1845
|
+
"bumpalo",
|
|
1846
|
+
"proc-macro2",
|
|
1847
|
+
"quote",
|
|
1848
|
+
"syn 2.0.110",
|
|
1849
|
+
"wasm-bindgen-shared",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "wasm-bindgen-shared"
|
|
1854
|
+
version = "0.2.105"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"unicode-ident",
|
|
1859
|
+
]
|
|
1860
|
+
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "wasm-bindgen-test"
|
|
1863
|
+
version = "0.3.55"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"js-sys",
|
|
1868
|
+
"minicov",
|
|
1869
|
+
"wasm-bindgen",
|
|
1870
|
+
"wasm-bindgen-futures",
|
|
1871
|
+
"wasm-bindgen-test-macro",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "wasm-bindgen-test-macro"
|
|
1876
|
+
version = "0.3.55"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
|
|
1879
|
+
dependencies = [
|
|
1880
|
+
"proc-macro2",
|
|
1881
|
+
"quote",
|
|
1882
|
+
"syn 2.0.110",
|
|
1883
|
+
]
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "web-sys"
|
|
1887
|
+
version = "0.3.82"
|
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
1890
|
+
dependencies = [
|
|
1891
|
+
"js-sys",
|
|
1892
|
+
"wasm-bindgen",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "winapi-util"
|
|
1897
|
+
version = "0.1.11"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"windows-sys",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "windows-core"
|
|
1906
|
+
version = "0.62.2"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"windows-implement",
|
|
1911
|
+
"windows-interface",
|
|
1912
|
+
"windows-link",
|
|
1913
|
+
"windows-result",
|
|
1914
|
+
"windows-strings",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "windows-implement"
|
|
1919
|
+
version = "0.60.2"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"proc-macro2",
|
|
1924
|
+
"quote",
|
|
1925
|
+
"syn 2.0.110",
|
|
1926
|
+
]
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "windows-interface"
|
|
1930
|
+
version = "0.59.3"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1933
|
+
dependencies = [
|
|
1934
|
+
"proc-macro2",
|
|
1935
|
+
"quote",
|
|
1936
|
+
"syn 2.0.110",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "windows-link"
|
|
1941
|
+
version = "0.2.1"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "windows-result"
|
|
1947
|
+
version = "0.4.1"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"windows-link",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "windows-strings"
|
|
1956
|
+
version = "0.5.1"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"windows-link",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "windows-sys"
|
|
1965
|
+
version = "0.61.2"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"windows-link",
|
|
1970
|
+
]
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "zerocopy"
|
|
1974
|
+
version = "0.8.27"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
1977
|
+
dependencies = [
|
|
1978
|
+
"zerocopy-derive",
|
|
1979
|
+
]
|
|
1980
|
+
|
|
1981
|
+
[[package]]
|
|
1982
|
+
name = "zerocopy-derive"
|
|
1983
|
+
version = "0.8.27"
|
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
1986
|
+
dependencies = [
|
|
1987
|
+
"proc-macro2",
|
|
1988
|
+
"quote",
|
|
1989
|
+
"syn 2.0.110",
|
|
1990
|
+
]
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "zeroize"
|
|
1994
|
+
version = "1.8.2"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"zeroize_derive",
|
|
1999
|
+
]
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "zeroize_derive"
|
|
2003
|
+
version = "1.4.2"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"proc-macro2",
|
|
2008
|
+
"quote",
|
|
2009
|
+
"syn 2.0.110",
|
|
2010
|
+
]
|