sidan-gin 0.1.1__py3-none-any.whl → 0.1.5__py3-none-any.whl

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.

Potentially problematic release.


This version of sidan-gin might be problematic. Click here for more details.

Files changed (41) hide show
  1. sidan_gin/__init__.py +2 -1
  2. sidan_gin/encryption/__init__.py +3 -0
  3. sidan_gin/encryption/cipher.py +127 -0
  4. sidan_gin/python_signing_module/.git +1 -0
  5. sidan_gin/python_signing_module/.gitignore +11 -0
  6. sidan_gin/python_signing_module/.vscode/settings.json +32 -0
  7. sidan_gin/python_signing_module/Cargo.lock +1914 -0
  8. sidan_gin/python_signing_module/Cargo.toml +14 -0
  9. sidan_gin/python_signing_module/README.md +2 -0
  10. sidan_gin/python_signing_module/__init__.py +1 -0
  11. sidan_gin/python_signing_module/build.rs +9 -0
  12. sidan_gin/python_signing_module/build.sh +9 -0
  13. sidan_gin/python_signing_module/src/CardanoSigner.py +70 -0
  14. sidan_gin/python_signing_module/src/_CardanoSigner.cpython-311-x86_64-linux-gnu.so +0 -0
  15. sidan_gin/python_signing_module/src/__init__.py +0 -0
  16. sidan_gin/python_signing_module/src/build/lib.linux-x86_64-cpython-311/_CardanoSigner.cpython-311-x86_64-linux-gnu.so +0 -0
  17. sidan_gin/python_signing_module/src/build/temp.linux-x86_64-cpython-311/signer.o +0 -0
  18. sidan_gin/python_signing_module/src/build/temp.linux-x86_64-cpython-311/signer_wrap.o +0 -0
  19. sidan_gin/python_signing_module/src/cxx.h +1149 -0
  20. sidan_gin/python_signing_module/src/lib.rs +57 -0
  21. sidan_gin/python_signing_module/src/lib.rs.h +403 -0
  22. sidan_gin/python_signing_module/src/libsigner.a +0 -0
  23. sidan_gin/python_signing_module/src/setup.py +16 -0
  24. sidan_gin/python_signing_module/src/signer.cpp +73 -0
  25. sidan_gin/python_signing_module/src/signer.h +37 -0
  26. sidan_gin/python_signing_module/src/signer.i +16 -0
  27. sidan_gin/python_signing_module/src/signer_wrap.cxx +4092 -0
  28. sidan_gin/wallet/__init__.py +3 -0
  29. sidan_gin/wallet/cli.py +13 -0
  30. sidan_gin/wallet/derivation_indices.py +30 -0
  31. sidan_gin/wallet/mnemonic.py +24 -0
  32. sidan_gin/wallet/root_key.py +24 -0
  33. sidan_gin/wallet/wallet.py +48 -0
  34. sidan_gin-0.1.5.dist-info/METADATA +63 -0
  35. sidan_gin-0.1.5.dist-info/RECORD +47 -0
  36. {sidan_gin-0.1.1.dist-info → sidan_gin-0.1.5.dist-info}/WHEEL +1 -1
  37. sidan_gin/signing/__init__.py +0 -3
  38. sidan_gin/signing/wallet.py +0 -40
  39. sidan_gin-0.1.1.dist-info/METADATA +0 -33
  40. sidan_gin-0.1.1.dist-info/RECORD +0 -17
  41. {sidan_gin-0.1.1.dist-info → sidan_gin-0.1.5.dist-info}/LICENSE +0 -0
@@ -0,0 +1,1914 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common",
12
+ "generic-array",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "aes"
17
+ version = "0.8.4"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
20
+ dependencies = [
21
+ "cfg-if",
22
+ "cipher",
23
+ "cpufeatures",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm"
28
+ version = "0.10.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "ghash",
37
+ "subtle",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "ahash"
42
+ version = "0.8.11"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
45
+ dependencies = [
46
+ "cfg-if",
47
+ "once_cell",
48
+ "version_check",
49
+ "zerocopy 0.7.35",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "anstyle"
54
+ version = "1.0.10"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
57
+
58
+ [[package]]
59
+ name = "arrayvec"
60
+ version = "0.5.2"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
63
+
64
+ [[package]]
65
+ name = "async-trait"
66
+ version = "0.1.88"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
69
+ dependencies = [
70
+ "proc-macro2",
71
+ "quote",
72
+ "syn 2.0.101",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "autocfg"
77
+ version = "1.4.0"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
80
+
81
+ [[package]]
82
+ name = "base16ct"
83
+ version = "0.2.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
86
+
87
+ [[package]]
88
+ name = "base58"
89
+ version = "0.2.0"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581"
92
+
93
+ [[package]]
94
+ name = "base64"
95
+ version = "0.22.1"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
98
+
99
+ [[package]]
100
+ name = "base64ct"
101
+ version = "1.7.3"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
104
+
105
+ [[package]]
106
+ name = "bech32"
107
+ version = "0.7.3"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "2dabbe35f96fb9507f7330793dc490461b2962659ac5d427181e451a623751d1"
110
+
111
+ [[package]]
112
+ name = "bech32"
113
+ version = "0.9.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
116
+
117
+ [[package]]
118
+ name = "bitflags"
119
+ version = "1.3.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
122
+
123
+ [[package]]
124
+ name = "bitvec"
125
+ version = "1.0.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
128
+ dependencies = [
129
+ "funty",
130
+ "radium",
131
+ "tap",
132
+ "wyz",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "block-buffer"
137
+ version = "0.9.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
140
+ dependencies = [
141
+ "generic-array",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "block-buffer"
146
+ version = "0.10.4"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
149
+ dependencies = [
150
+ "generic-array",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "blst"
155
+ version = "0.3.14"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "47c79a94619fade3c0b887670333513a67ac28a6a7e653eb260bf0d4103db38d"
158
+ dependencies = [
159
+ "cc",
160
+ "glob",
161
+ "threadpool",
162
+ "zeroize",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "bumpalo"
167
+ version = "3.17.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
170
+
171
+ [[package]]
172
+ name = "cardano-serialization-lib"
173
+ version = "14.0.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "097bdf373ed3e91b0a2e46b7c017e47a986509b478659f1c688bb28e58b3300d"
176
+ dependencies = [
177
+ "bech32 0.7.3",
178
+ "cbor_event",
179
+ "cfg-if",
180
+ "clear_on_drop",
181
+ "cryptoxide",
182
+ "digest 0.9.0",
183
+ "ed25519-bip32",
184
+ "getrandom",
185
+ "hashlink",
186
+ "hex",
187
+ "itertools 0.10.5",
188
+ "js-sys",
189
+ "noop_proc_macro",
190
+ "num",
191
+ "num-bigint",
192
+ "num-derive",
193
+ "num-integer",
194
+ "num-traits",
195
+ "rand",
196
+ "rand_os",
197
+ "schemars",
198
+ "serde",
199
+ "serde-wasm-bindgen 0.4.5",
200
+ "serde_json",
201
+ "sha2 0.9.9",
202
+ "wasm-bindgen",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "cbor_event"
207
+ version = "2.4.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "089a0261d1bc59e54e8e11860031efd88593f0e61b921172c474f1f38c2f2d3c"
210
+
211
+ [[package]]
212
+ name = "cc"
213
+ version = "1.2.21"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
216
+ dependencies = [
217
+ "shlex",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "cfg-if"
222
+ version = "1.0.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
225
+
226
+ [[package]]
227
+ name = "cipher"
228
+ version = "0.4.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
231
+ dependencies = [
232
+ "crypto-common",
233
+ "inout",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "clap"
238
+ version = "4.5.37"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
241
+ dependencies = [
242
+ "clap_builder",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "clap_builder"
247
+ version = "4.5.37"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
250
+ dependencies = [
251
+ "anstyle",
252
+ "clap_lex",
253
+ "strsim",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "clap_lex"
258
+ version = "0.7.4"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
261
+
262
+ [[package]]
263
+ name = "clear_on_drop"
264
+ version = "0.2.5"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "38508a63f4979f0048febc9966fadbd48e5dab31fd0ec6a3f151bbf4a74f7423"
267
+ dependencies = [
268
+ "cc",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "cloudabi"
273
+ version = "0.0.3"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
276
+ dependencies = [
277
+ "bitflags",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "codespan-reporting"
282
+ version = "0.12.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
285
+ dependencies = [
286
+ "serde",
287
+ "termcolor",
288
+ "unicode-width 0.2.0",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "const-oid"
293
+ version = "0.9.6"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
296
+
297
+ [[package]]
298
+ name = "cpufeatures"
299
+ version = "0.2.17"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
302
+ dependencies = [
303
+ "libc",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "crc"
308
+ version = "3.2.1"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
311
+ dependencies = [
312
+ "crc-catalog",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "crc-catalog"
317
+ version = "2.4.0"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
320
+
321
+ [[package]]
322
+ name = "crunchy"
323
+ version = "0.2.3"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
326
+
327
+ [[package]]
328
+ name = "crypto-bigint"
329
+ version = "0.5.5"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
332
+ dependencies = [
333
+ "generic-array",
334
+ "rand_core 0.6.4",
335
+ "subtle",
336
+ "zeroize",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "crypto-common"
341
+ version = "0.1.6"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
344
+ dependencies = [
345
+ "generic-array",
346
+ "rand_core 0.6.4",
347
+ "typenum",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "cryptoxide"
352
+ version = "0.4.4"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "382ce8820a5bb815055d3553a610e8cb542b2d767bbacea99038afda96cd760d"
355
+
356
+ [[package]]
357
+ name = "ctr"
358
+ version = "0.9.2"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
361
+ dependencies = [
362
+ "cipher",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "cxx"
367
+ version = "1.0.158"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "a71ea7f29c73f7ffa64c50b83c9fe4d3a6d4be89a86b009eb80d5a6d3429d741"
370
+ dependencies = [
371
+ "cc",
372
+ "cxxbridge-cmd",
373
+ "cxxbridge-flags",
374
+ "cxxbridge-macro",
375
+ "foldhash",
376
+ "link-cplusplus",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "cxx-build"
381
+ version = "1.0.158"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "36a8232661d66dcf713394726157d3cfe0a89bfc85f52d6e9f9bbc2306797fe7"
384
+ dependencies = [
385
+ "cc",
386
+ "codespan-reporting",
387
+ "proc-macro2",
388
+ "quote",
389
+ "scratch",
390
+ "syn 2.0.101",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "cxxbridge-cmd"
395
+ version = "1.0.158"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "4f44296c8693e9ea226a48f6a122727f77aa9e9e338380cb021accaeeb7ee279"
398
+ dependencies = [
399
+ "clap",
400
+ "codespan-reporting",
401
+ "proc-macro2",
402
+ "quote",
403
+ "syn 2.0.101",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "cxxbridge-flags"
408
+ version = "1.0.158"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "c42f69c181c176981ae44ba9876e2ea41ce8e574c296b38d06925ce9214fb8e4"
411
+
412
+ [[package]]
413
+ name = "cxxbridge-macro"
414
+ version = "1.0.158"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "8faff5d4467e0709448187df29ccbf3b0982cc426ee444a193f87b11afb565a8"
417
+ dependencies = [
418
+ "proc-macro2",
419
+ "quote",
420
+ "rustversion",
421
+ "syn 2.0.101",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "der"
426
+ version = "0.7.10"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
429
+ dependencies = [
430
+ "const-oid",
431
+ "zeroize",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "digest"
436
+ version = "0.9.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
439
+ dependencies = [
440
+ "generic-array",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "digest"
445
+ version = "0.10.7"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
448
+ dependencies = [
449
+ "block-buffer 0.10.4",
450
+ "const-oid",
451
+ "crypto-common",
452
+ "subtle",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "dyn-clone"
457
+ version = "1.0.19"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
460
+
461
+ [[package]]
462
+ name = "ecdsa"
463
+ version = "0.16.9"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
466
+ dependencies = [
467
+ "der",
468
+ "digest 0.10.7",
469
+ "elliptic-curve",
470
+ "rfc6979",
471
+ "signature",
472
+ "spki",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "ed25519-bip32"
477
+ version = "0.4.1"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "cb588f93c0d91b2f668849fd6d030cddb0b2e31f105963be189da5acdf492a21"
480
+ dependencies = [
481
+ "cryptoxide",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "either"
486
+ version = "1.15.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
489
+
490
+ [[package]]
491
+ name = "elliptic-curve"
492
+ version = "0.13.8"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
495
+ dependencies = [
496
+ "base16ct",
497
+ "crypto-bigint",
498
+ "digest 0.10.7",
499
+ "ff",
500
+ "generic-array",
501
+ "group",
502
+ "pkcs8",
503
+ "rand_core 0.6.4",
504
+ "sec1",
505
+ "subtle",
506
+ "zeroize",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "ff"
511
+ version = "0.13.1"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
514
+ dependencies = [
515
+ "rand_core 0.6.4",
516
+ "subtle",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "foldhash"
521
+ version = "0.1.5"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
524
+
525
+ [[package]]
526
+ name = "fuchsia-cprng"
527
+ version = "0.1.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
530
+
531
+ [[package]]
532
+ name = "funty"
533
+ version = "2.0.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
536
+
537
+ [[package]]
538
+ name = "generic-array"
539
+ version = "0.14.7"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
542
+ dependencies = [
543
+ "typenum",
544
+ "version_check",
545
+ "zeroize",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "getrandom"
550
+ version = "0.2.16"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
553
+ dependencies = [
554
+ "cfg-if",
555
+ "js-sys",
556
+ "libc",
557
+ "wasi",
558
+ "wasm-bindgen",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "ghash"
563
+ version = "0.5.1"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
566
+ dependencies = [
567
+ "opaque-debug",
568
+ "polyval",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "glob"
573
+ version = "0.3.2"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
576
+
577
+ [[package]]
578
+ name = "group"
579
+ version = "0.13.0"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
582
+ dependencies = [
583
+ "ff",
584
+ "rand_core 0.6.4",
585
+ "subtle",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "half"
590
+ version = "2.6.0"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
593
+ dependencies = [
594
+ "cfg-if",
595
+ "crunchy",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "hamming"
600
+ version = "0.1.3"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "65043da274378d68241eb9a8f8f8aa54e349136f7b8e12f63e3ef44043cc30e1"
603
+
604
+ [[package]]
605
+ name = "hashbrown"
606
+ version = "0.12.3"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
609
+
610
+ [[package]]
611
+ name = "hashbrown"
612
+ version = "0.14.5"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
615
+ dependencies = [
616
+ "ahash",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "hashlink"
621
+ version = "0.9.1"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
624
+ dependencies = [
625
+ "hashbrown 0.14.5",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "heck"
630
+ version = "0.4.1"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
633
+
634
+ [[package]]
635
+ name = "hermit-abi"
636
+ version = "0.3.9"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
639
+
640
+ [[package]]
641
+ name = "hex"
642
+ version = "0.4.3"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
645
+
646
+ [[package]]
647
+ name = "hmac"
648
+ version = "0.12.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
651
+ dependencies = [
652
+ "digest 0.10.7",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "indexmap"
657
+ version = "1.9.3"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
660
+ dependencies = [
661
+ "autocfg",
662
+ "hashbrown 0.12.3",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "inout"
667
+ version = "0.1.4"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
670
+ dependencies = [
671
+ "generic-array",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "itertools"
676
+ version = "0.10.5"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
679
+ dependencies = [
680
+ "either",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "itertools"
685
+ version = "0.13.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
688
+ dependencies = [
689
+ "either",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "itoa"
694
+ version = "1.0.15"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
697
+
698
+ [[package]]
699
+ name = "js-sys"
700
+ version = "0.3.61"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
703
+ dependencies = [
704
+ "wasm-bindgen",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "k256"
709
+ version = "0.13.4"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
712
+ dependencies = [
713
+ "cfg-if",
714
+ "ecdsa",
715
+ "elliptic-curve",
716
+ "once_cell",
717
+ "sha2 0.10.9",
718
+ "signature",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "libc"
723
+ version = "0.2.172"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
726
+
727
+ [[package]]
728
+ name = "link-cplusplus"
729
+ version = "1.0.10"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "4a6f6da007f968f9def0d65a05b187e2960183de70c160204ecfccf0ee330212"
732
+ dependencies = [
733
+ "cc",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "log"
738
+ version = "0.4.27"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
741
+
742
+ [[package]]
743
+ name = "memchr"
744
+ version = "2.7.4"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
747
+
748
+ [[package]]
749
+ name = "miette"
750
+ version = "5.10.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e"
753
+ dependencies = [
754
+ "miette-derive",
755
+ "once_cell",
756
+ "thiserror",
757
+ "unicode-width 0.1.14",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "miette-derive"
762
+ version = "5.10.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
765
+ dependencies = [
766
+ "proc-macro2",
767
+ "quote",
768
+ "syn 2.0.101",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "minicbor"
773
+ version = "0.25.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "c0452a60c1863c1f50b5f77cd295e8d2786849f35883f0b9e18e7e6e1b5691b0"
776
+ dependencies = [
777
+ "half",
778
+ "minicbor-derive",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "minicbor-derive"
783
+ version = "0.15.3"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "bd2209fff77f705b00c737016a48e73733d7fbccb8b007194db148f03561fb70"
786
+ dependencies = [
787
+ "proc-macro2",
788
+ "quote",
789
+ "syn 2.0.101",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "noop_proc_macro"
794
+ version = "0.3.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
797
+
798
+ [[package]]
799
+ name = "num"
800
+ version = "0.4.3"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
803
+ dependencies = [
804
+ "num-bigint",
805
+ "num-complex",
806
+ "num-integer",
807
+ "num-iter",
808
+ "num-rational",
809
+ "num-traits",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "num-bigint"
814
+ version = "0.4.6"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
817
+ dependencies = [
818
+ "num-integer",
819
+ "num-traits",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "num-complex"
824
+ version = "0.4.6"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
827
+ dependencies = [
828
+ "num-traits",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "num-derive"
833
+ version = "0.4.2"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
836
+ dependencies = [
837
+ "proc-macro2",
838
+ "quote",
839
+ "syn 2.0.101",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "num-integer"
844
+ version = "0.1.46"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
847
+ dependencies = [
848
+ "num-traits",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "num-iter"
853
+ version = "0.1.45"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
856
+ dependencies = [
857
+ "autocfg",
858
+ "num-integer",
859
+ "num-traits",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "num-rational"
864
+ version = "0.4.2"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
867
+ dependencies = [
868
+ "num-bigint",
869
+ "num-integer",
870
+ "num-traits",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "num-traits"
875
+ version = "0.2.19"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
878
+ dependencies = [
879
+ "autocfg",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "num_cpus"
884
+ version = "1.16.0"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
887
+ dependencies = [
888
+ "hermit-abi",
889
+ "libc",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "once_cell"
894
+ version = "1.21.3"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
897
+
898
+ [[package]]
899
+ name = "opaque-debug"
900
+ version = "0.3.1"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
903
+
904
+ [[package]]
905
+ name = "pallas-addresses"
906
+ version = "0.31.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "5d47110e25338f995c1f29858292c016b974d23fa3a1ce97fff542047b6c2142"
909
+ dependencies = [
910
+ "base58",
911
+ "bech32 0.9.1",
912
+ "crc",
913
+ "cryptoxide",
914
+ "hex",
915
+ "pallas-codec",
916
+ "pallas-crypto",
917
+ "thiserror",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "pallas-codec"
922
+ version = "0.31.0"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "1389b47a97864a7cb167e2392b44332930af90f6aaaac45eb2f369ccab95f4c7"
925
+ dependencies = [
926
+ "hex",
927
+ "minicbor",
928
+ "num-bigint",
929
+ "serde",
930
+ "thiserror",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "pallas-crypto"
935
+ version = "0.31.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "f5d84346a1f0da5240b2aa16fde96998b84cdcc466cb7c04ba24bb1e1630e0d3"
938
+ dependencies = [
939
+ "cryptoxide",
940
+ "hex",
941
+ "pallas-codec",
942
+ "rand_core 0.6.4",
943
+ "serde",
944
+ "thiserror",
945
+ "zeroize",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "pallas-primitives"
950
+ version = "0.31.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "5627a5cd6512eaa3900b93d8b6e604d495a31d4439c9f34d9f88ec38383c0ddc"
953
+ dependencies = [
954
+ "base58",
955
+ "bech32 0.9.1",
956
+ "hex",
957
+ "log",
958
+ "pallas-codec",
959
+ "pallas-crypto",
960
+ "serde",
961
+ "serde_json",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "pallas-traverse"
966
+ version = "0.31.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "5d04fc75a2144eb257c68b4604cdde647e07404ea185b791c0005826960dfb35"
969
+ dependencies = [
970
+ "hex",
971
+ "itertools 0.13.0",
972
+ "pallas-addresses",
973
+ "pallas-codec",
974
+ "pallas-crypto",
975
+ "pallas-primitives",
976
+ "paste",
977
+ "serde",
978
+ "thiserror",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "paste"
983
+ version = "1.0.15"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
986
+
987
+ [[package]]
988
+ name = "pbkdf2"
989
+ version = "0.12.2"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
992
+ dependencies = [
993
+ "digest 0.10.7",
994
+ "hmac",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "peg"
999
+ version = "0.8.5"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
1002
+ dependencies = [
1003
+ "peg-macros",
1004
+ "peg-runtime",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "peg-macros"
1009
+ version = "0.8.5"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "6298ab04c202fa5b5d52ba03269fb7b74550b150323038878fe6c372d8280f71"
1012
+ dependencies = [
1013
+ "peg-runtime",
1014
+ "proc-macro2",
1015
+ "quote",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "peg-runtime"
1020
+ version = "0.8.5"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1023
+
1024
+ [[package]]
1025
+ name = "pkcs8"
1026
+ version = "0.10.2"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1029
+ dependencies = [
1030
+ "der",
1031
+ "spki",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "polyval"
1036
+ version = "0.6.2"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1039
+ dependencies = [
1040
+ "cfg-if",
1041
+ "cpufeatures",
1042
+ "opaque-debug",
1043
+ "universal-hash",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "ppv-lite86"
1048
+ version = "0.2.21"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1051
+ dependencies = [
1052
+ "zerocopy 0.8.25",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "pretty"
1057
+ version = "0.11.3"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "83f3aa1e3ca87d3b124db7461265ac176b40c277f37e503eaa29c9c75c037846"
1060
+ dependencies = [
1061
+ "arrayvec",
1062
+ "log",
1063
+ "typed-arena",
1064
+ "unicode-segmentation",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "proc-macro2"
1069
+ version = "1.0.95"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1072
+ dependencies = [
1073
+ "unicode-ident",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "quote"
1078
+ version = "1.0.40"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1081
+ dependencies = [
1082
+ "proc-macro2",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "radium"
1087
+ version = "0.7.0"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1090
+
1091
+ [[package]]
1092
+ name = "rand"
1093
+ version = "0.8.5"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1096
+ dependencies = [
1097
+ "libc",
1098
+ "rand_chacha",
1099
+ "rand_core 0.6.4",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "rand_chacha"
1104
+ version = "0.3.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1107
+ dependencies = [
1108
+ "ppv-lite86",
1109
+ "rand_core 0.6.4",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "rand_core"
1114
+ version = "0.3.1"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1117
+ dependencies = [
1118
+ "rand_core 0.4.2",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "rand_core"
1123
+ version = "0.4.2"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1126
+
1127
+ [[package]]
1128
+ name = "rand_core"
1129
+ version = "0.6.4"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1132
+ dependencies = [
1133
+ "getrandom",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "rand_os"
1138
+ version = "0.1.3"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
1141
+ dependencies = [
1142
+ "cloudabi",
1143
+ "fuchsia-cprng",
1144
+ "libc",
1145
+ "rand_core 0.4.2",
1146
+ "rdrand",
1147
+ "wasm-bindgen",
1148
+ "winapi",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "rdrand"
1153
+ version = "0.4.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1156
+ dependencies = [
1157
+ "rand_core 0.3.1",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "rfc6979"
1162
+ version = "0.4.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1165
+ dependencies = [
1166
+ "hmac",
1167
+ "subtle",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "rustc-hash"
1172
+ version = "1.1.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1175
+
1176
+ [[package]]
1177
+ name = "rustversion"
1178
+ version = "1.0.20"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
1181
+
1182
+ [[package]]
1183
+ name = "ryu"
1184
+ version = "1.0.20"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1187
+
1188
+ [[package]]
1189
+ name = "schemars"
1190
+ version = "0.8.22"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1193
+ dependencies = [
1194
+ "dyn-clone",
1195
+ "schemars_derive",
1196
+ "serde",
1197
+ "serde_json",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "schemars_derive"
1202
+ version = "0.8.22"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1205
+ dependencies = [
1206
+ "proc-macro2",
1207
+ "quote",
1208
+ "serde_derive_internals",
1209
+ "syn 2.0.101",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "scratch"
1214
+ version = "1.0.8"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "9f6280af86e5f559536da57a45ebc84948833b3bee313a7dd25232e09c878a52"
1217
+
1218
+ [[package]]
1219
+ name = "sec1"
1220
+ version = "0.7.3"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
1223
+ dependencies = [
1224
+ "base16ct",
1225
+ "der",
1226
+ "generic-array",
1227
+ "pkcs8",
1228
+ "subtle",
1229
+ "zeroize",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "secp256k1"
1234
+ version = "0.26.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "4124a35fe33ae14259c490fd70fa199a32b9ce9502f2ee6bc4f81ec06fa65894"
1237
+ dependencies = [
1238
+ "secp256k1-sys",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "secp256k1-sys"
1243
+ version = "0.8.1"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e"
1246
+ dependencies = [
1247
+ "cc",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "serde"
1252
+ version = "1.0.219"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1255
+ dependencies = [
1256
+ "serde_derive",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "serde-wasm-bindgen"
1261
+ version = "0.4.5"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
1264
+ dependencies = [
1265
+ "js-sys",
1266
+ "serde",
1267
+ "wasm-bindgen",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "serde-wasm-bindgen"
1272
+ version = "0.6.5"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1275
+ dependencies = [
1276
+ "js-sys",
1277
+ "serde",
1278
+ "wasm-bindgen",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "serde_derive"
1283
+ version = "1.0.219"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1286
+ dependencies = [
1287
+ "proc-macro2",
1288
+ "quote",
1289
+ "syn 2.0.101",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "serde_derive_internals"
1294
+ version = "0.29.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1297
+ dependencies = [
1298
+ "proc-macro2",
1299
+ "quote",
1300
+ "syn 2.0.101",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "serde_json"
1305
+ version = "1.0.140"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1308
+ dependencies = [
1309
+ "itoa",
1310
+ "memchr",
1311
+ "ryu",
1312
+ "serde",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "sha2"
1317
+ version = "0.9.9"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
1320
+ dependencies = [
1321
+ "block-buffer 0.9.0",
1322
+ "cfg-if",
1323
+ "cpufeatures",
1324
+ "digest 0.9.0",
1325
+ "opaque-debug",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "sha2"
1330
+ version = "0.10.9"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1333
+ dependencies = [
1334
+ "cfg-if",
1335
+ "cpufeatures",
1336
+ "digest 0.10.7",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "shlex"
1341
+ version = "1.3.0"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1344
+
1345
+ [[package]]
1346
+ name = "signature"
1347
+ version = "2.2.0"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1350
+ dependencies = [
1351
+ "digest 0.10.7",
1352
+ "rand_core 0.6.4",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "signer"
1357
+ version = "0.1.0"
1358
+ dependencies = [
1359
+ "cxx",
1360
+ "cxx-build",
1361
+ "whisky-wallet",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "spki"
1366
+ version = "0.7.3"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1369
+ dependencies = [
1370
+ "base64ct",
1371
+ "der",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "strsim"
1376
+ version = "0.11.1"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1379
+
1380
+ [[package]]
1381
+ name = "strum"
1382
+ version = "0.24.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
1385
+
1386
+ [[package]]
1387
+ name = "strum_macros"
1388
+ version = "0.24.3"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
1391
+ dependencies = [
1392
+ "heck",
1393
+ "proc-macro2",
1394
+ "quote",
1395
+ "rustversion",
1396
+ "syn 1.0.109",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "subtle"
1401
+ version = "2.6.1"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1404
+
1405
+ [[package]]
1406
+ name = "syn"
1407
+ version = "1.0.109"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1410
+ dependencies = [
1411
+ "proc-macro2",
1412
+ "quote",
1413
+ "unicode-ident",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "syn"
1418
+ version = "2.0.101"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1421
+ dependencies = [
1422
+ "proc-macro2",
1423
+ "quote",
1424
+ "unicode-ident",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "tap"
1429
+ version = "1.0.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1432
+
1433
+ [[package]]
1434
+ name = "termcolor"
1435
+ version = "1.4.1"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1438
+ dependencies = [
1439
+ "winapi-util",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "thiserror"
1444
+ version = "1.0.69"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1447
+ dependencies = [
1448
+ "thiserror-impl",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "thiserror-impl"
1453
+ version = "1.0.69"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1456
+ dependencies = [
1457
+ "proc-macro2",
1458
+ "quote",
1459
+ "syn 2.0.101",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "threadpool"
1464
+ version = "1.8.1"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
1467
+ dependencies = [
1468
+ "num_cpus",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "tiny-bip39"
1473
+ version = "2.0.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "a30fd743a02bf35236f6faf99adb03089bb77e91c998dac2c2ad76bb424f668c"
1476
+ dependencies = [
1477
+ "once_cell",
1478
+ "pbkdf2",
1479
+ "rand",
1480
+ "rustc-hash",
1481
+ "sha2 0.10.9",
1482
+ "thiserror",
1483
+ "unicode-normalization",
1484
+ "wasm-bindgen",
1485
+ "zeroize",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "tinyvec"
1490
+ version = "1.9.0"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
1493
+ dependencies = [
1494
+ "tinyvec_macros",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "tinyvec_macros"
1499
+ version = "0.1.1"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1502
+
1503
+ [[package]]
1504
+ name = "typed-arena"
1505
+ version = "2.0.2"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1508
+
1509
+ [[package]]
1510
+ name = "typenum"
1511
+ version = "1.18.0"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1514
+
1515
+ [[package]]
1516
+ name = "unicode-ident"
1517
+ version = "1.0.18"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1520
+
1521
+ [[package]]
1522
+ name = "unicode-normalization"
1523
+ version = "0.1.24"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
1526
+ dependencies = [
1527
+ "tinyvec",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "unicode-segmentation"
1532
+ version = "1.12.0"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1535
+
1536
+ [[package]]
1537
+ name = "unicode-width"
1538
+ version = "0.1.14"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1541
+
1542
+ [[package]]
1543
+ name = "unicode-width"
1544
+ version = "0.2.0"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1547
+
1548
+ [[package]]
1549
+ name = "universal-hash"
1550
+ version = "0.5.1"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
1553
+ dependencies = [
1554
+ "crypto-common",
1555
+ "subtle",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "uplc"
1560
+ version = "1.1.9"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "1e54b8261f8127d7d6234e639d8024a40c8734eeae0921661372690c1c2b62d8"
1563
+ dependencies = [
1564
+ "bitvec",
1565
+ "blst",
1566
+ "cryptoxide",
1567
+ "hamming",
1568
+ "hex",
1569
+ "indexmap",
1570
+ "itertools 0.10.5",
1571
+ "k256",
1572
+ "miette",
1573
+ "num-bigint",
1574
+ "num-integer",
1575
+ "num-traits",
1576
+ "once_cell",
1577
+ "pallas-addresses",
1578
+ "pallas-codec",
1579
+ "pallas-crypto",
1580
+ "pallas-primitives",
1581
+ "pallas-traverse",
1582
+ "peg",
1583
+ "pretty",
1584
+ "secp256k1",
1585
+ "serde",
1586
+ "serde_json",
1587
+ "strum",
1588
+ "strum_macros",
1589
+ "thiserror",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "version_check"
1594
+ version = "0.9.5"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1597
+
1598
+ [[package]]
1599
+ name = "wasi"
1600
+ version = "0.11.0+wasi-snapshot-preview1"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1603
+
1604
+ [[package]]
1605
+ name = "wasm-bindgen"
1606
+ version = "0.2.92"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
1609
+ dependencies = [
1610
+ "cfg-if",
1611
+ "serde",
1612
+ "serde_json",
1613
+ "wasm-bindgen-macro",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "wasm-bindgen-backend"
1618
+ version = "0.2.92"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
1621
+ dependencies = [
1622
+ "bumpalo",
1623
+ "log",
1624
+ "once_cell",
1625
+ "proc-macro2",
1626
+ "quote",
1627
+ "syn 2.0.101",
1628
+ "wasm-bindgen-shared",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "wasm-bindgen-futures"
1633
+ version = "0.4.34"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
1636
+ dependencies = [
1637
+ "cfg-if",
1638
+ "js-sys",
1639
+ "wasm-bindgen",
1640
+ "web-sys",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "wasm-bindgen-macro"
1645
+ version = "0.2.92"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
1648
+ dependencies = [
1649
+ "quote",
1650
+ "wasm-bindgen-macro-support",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "wasm-bindgen-macro-support"
1655
+ version = "0.2.92"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
1658
+ dependencies = [
1659
+ "proc-macro2",
1660
+ "quote",
1661
+ "syn 2.0.101",
1662
+ "wasm-bindgen-backend",
1663
+ "wasm-bindgen-shared",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "wasm-bindgen-shared"
1668
+ version = "0.2.92"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1671
+
1672
+ [[package]]
1673
+ name = "web-sys"
1674
+ version = "0.3.61"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
1677
+ dependencies = [
1678
+ "js-sys",
1679
+ "wasm-bindgen",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "whisky-common"
1684
+ version = "1.0.4"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "354e20ff6d51e7b29cce5f2a2e47f3f29f009fe196422e95e9cec1cfb9e17202"
1687
+ dependencies = [
1688
+ "async-trait",
1689
+ "hex",
1690
+ "schemars",
1691
+ "serde",
1692
+ "serde_json",
1693
+ "uplc",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "whisky-csl"
1698
+ version = "1.0.4"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "5cf7e24b0f83b99ca4d8e1334517b0ae958b62e7a00f2ad3d90a7e71a0024089"
1701
+ dependencies = [
1702
+ "cardano-serialization-lib",
1703
+ "cryptoxide",
1704
+ "getrandom",
1705
+ "hex",
1706
+ "js-sys",
1707
+ "noop_proc_macro",
1708
+ "pallas-codec",
1709
+ "pallas-primitives",
1710
+ "pallas-traverse",
1711
+ "rand_os",
1712
+ "schemars",
1713
+ "serde",
1714
+ "serde-wasm-bindgen 0.4.5",
1715
+ "serde-wasm-bindgen 0.6.5",
1716
+ "serde_json",
1717
+ "uplc",
1718
+ "wasm-bindgen",
1719
+ "wasm-bindgen-futures",
1720
+ "whisky-common",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "whisky-wallet"
1725
+ version = "1.0.4"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "4bc25622cf5ad098e9d56d5a315933a2d484ad3d3ae425377c2c4cfdc916cb93"
1728
+ dependencies = [
1729
+ "aes-gcm",
1730
+ "base64",
1731
+ "hex",
1732
+ "pbkdf2",
1733
+ "rand",
1734
+ "serde",
1735
+ "serde_json",
1736
+ "sha2 0.10.9",
1737
+ "tiny-bip39",
1738
+ "uplc",
1739
+ "whisky-common",
1740
+ "whisky-csl",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "winapi"
1745
+ version = "0.3.9"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1748
+ dependencies = [
1749
+ "winapi-i686-pc-windows-gnu",
1750
+ "winapi-x86_64-pc-windows-gnu",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "winapi-i686-pc-windows-gnu"
1755
+ version = "0.4.0"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1758
+
1759
+ [[package]]
1760
+ name = "winapi-util"
1761
+ version = "0.1.9"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1764
+ dependencies = [
1765
+ "windows-sys",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "winapi-x86_64-pc-windows-gnu"
1770
+ version = "0.4.0"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1773
+
1774
+ [[package]]
1775
+ name = "windows-sys"
1776
+ version = "0.59.0"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1779
+ dependencies = [
1780
+ "windows-targets",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "windows-targets"
1785
+ version = "0.52.6"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1788
+ dependencies = [
1789
+ "windows_aarch64_gnullvm",
1790
+ "windows_aarch64_msvc",
1791
+ "windows_i686_gnu",
1792
+ "windows_i686_gnullvm",
1793
+ "windows_i686_msvc",
1794
+ "windows_x86_64_gnu",
1795
+ "windows_x86_64_gnullvm",
1796
+ "windows_x86_64_msvc",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "windows_aarch64_gnullvm"
1801
+ version = "0.52.6"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1804
+
1805
+ [[package]]
1806
+ name = "windows_aarch64_msvc"
1807
+ version = "0.52.6"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1810
+
1811
+ [[package]]
1812
+ name = "windows_i686_gnu"
1813
+ version = "0.52.6"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1816
+
1817
+ [[package]]
1818
+ name = "windows_i686_gnullvm"
1819
+ version = "0.52.6"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1822
+
1823
+ [[package]]
1824
+ name = "windows_i686_msvc"
1825
+ version = "0.52.6"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1828
+
1829
+ [[package]]
1830
+ name = "windows_x86_64_gnu"
1831
+ version = "0.52.6"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1834
+
1835
+ [[package]]
1836
+ name = "windows_x86_64_gnullvm"
1837
+ version = "0.52.6"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1840
+
1841
+ [[package]]
1842
+ name = "windows_x86_64_msvc"
1843
+ version = "0.52.6"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1846
+
1847
+ [[package]]
1848
+ name = "wyz"
1849
+ version = "0.5.1"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1852
+ dependencies = [
1853
+ "tap",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "zerocopy"
1858
+ version = "0.7.35"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
1861
+ dependencies = [
1862
+ "zerocopy-derive 0.7.35",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "zerocopy"
1867
+ version = "0.8.25"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
1870
+ dependencies = [
1871
+ "zerocopy-derive 0.8.25",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "zerocopy-derive"
1876
+ version = "0.7.35"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
1879
+ dependencies = [
1880
+ "proc-macro2",
1881
+ "quote",
1882
+ "syn 2.0.101",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "zerocopy-derive"
1887
+ version = "0.8.25"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
1890
+ dependencies = [
1891
+ "proc-macro2",
1892
+ "quote",
1893
+ "syn 2.0.101",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "zeroize"
1898
+ version = "1.8.1"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
1901
+ dependencies = [
1902
+ "zeroize_derive",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "zeroize_derive"
1907
+ version = "1.4.2"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
1910
+ dependencies = [
1911
+ "proc-macro2",
1912
+ "quote",
1913
+ "syn 2.0.101",
1914
+ ]