clawpowers 1.1.4 → 2.2.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.
Files changed (131) hide show
  1. package/CHANGELOG.md +126 -0
  2. package/COMPATIBILITY.md +13 -0
  3. package/KNOWN_LIMITATIONS.md +19 -0
  4. package/LICENSE +44 -0
  5. package/LICENSING.md +10 -0
  6. package/README.md +378 -210
  7. package/SECURITY.md +52 -0
  8. package/dist/index.d.ts +1477 -0
  9. package/dist/index.js +3464 -0
  10. package/dist/index.js.map +1 -0
  11. package/native/Cargo.lock +4863 -0
  12. package/native/Cargo.toml +73 -0
  13. package/native/crates/canonical/Cargo.toml +24 -0
  14. package/native/crates/canonical/src/lib.rs +673 -0
  15. package/native/crates/compression/Cargo.toml +20 -0
  16. package/native/crates/compression/benches/compression_bench.rs +42 -0
  17. package/native/crates/compression/src/lib.rs +393 -0
  18. package/native/crates/evm-eth/Cargo.toml +13 -0
  19. package/native/crates/evm-eth/src/lib.rs +105 -0
  20. package/native/crates/fee/Cargo.toml +15 -0
  21. package/native/crates/fee/src/lib.rs +281 -0
  22. package/native/crates/index/Cargo.toml +16 -0
  23. package/native/crates/index/src/lib.rs +277 -0
  24. package/native/crates/policy/Cargo.toml +17 -0
  25. package/native/crates/policy/src/lib.rs +614 -0
  26. package/native/crates/security/Cargo.toml +22 -0
  27. package/native/crates/security/src/lib.rs +478 -0
  28. package/native/crates/tokens/Cargo.toml +13 -0
  29. package/native/crates/tokens/src/lib.rs +534 -0
  30. package/native/crates/verification/Cargo.toml +23 -0
  31. package/native/crates/verification/src/lib.rs +333 -0
  32. package/native/crates/wallet/Cargo.toml +20 -0
  33. package/native/crates/wallet/src/lib.rs +261 -0
  34. package/native/crates/x402/Cargo.toml +30 -0
  35. package/native/crates/x402/src/lib.rs +423 -0
  36. package/native/ffi/Cargo.toml +34 -0
  37. package/native/ffi/build.rs +4 -0
  38. package/native/ffi/index.node +0 -0
  39. package/native/ffi/src/lib.rs +352 -0
  40. package/native/ffi/tests/integration.rs +354 -0
  41. package/native/pyo3/Cargo.toml +26 -0
  42. package/native/pyo3/pyproject.toml +16 -0
  43. package/native/pyo3/src/lib.rs +407 -0
  44. package/native/pyo3/tests/test_smoke.py +180 -0
  45. package/native/wasm/Cargo.toml +44 -0
  46. package/native/wasm/pkg/.gitignore +6 -0
  47. package/native/wasm/pkg/clawpowers_wasm.d.ts +208 -0
  48. package/native/wasm/pkg/clawpowers_wasm.js +872 -0
  49. package/native/wasm/pkg/clawpowers_wasm_bg.wasm +0 -0
  50. package/native/wasm/pkg/clawpowers_wasm_bg.wasm.d.ts +40 -0
  51. package/native/wasm/pkg/package.json +17 -0
  52. package/native/wasm/pkg-node/.gitignore +6 -0
  53. package/native/wasm/pkg-node/clawpowers_wasm.d.ts +143 -0
  54. package/native/wasm/pkg-node/clawpowers_wasm.js +798 -0
  55. package/native/wasm/pkg-node/clawpowers_wasm_bg.wasm +0 -0
  56. package/native/wasm/pkg-node/clawpowers_wasm_bg.wasm.d.ts +40 -0
  57. package/native/wasm/pkg-node/package.json +13 -0
  58. package/native/wasm/src/lib.rs +433 -0
  59. package/package.json +71 -44
  60. package/src/skills/catalog.ts +435 -0
  61. package/src/skills/executor.ts +56 -0
  62. package/src/skills/index.ts +3 -0
  63. package/src/skills/itp/SKILL.md +112 -0
  64. package/src/skills/loader.ts +193 -0
  65. package/.claude-plugin/manifest.json +0 -19
  66. package/.codex/INSTALL.md +0 -36
  67. package/.cursor-plugin/manifest.json +0 -21
  68. package/.opencode/INSTALL.md +0 -52
  69. package/ARCHITECTURE.md +0 -69
  70. package/bin/clawpowers.js +0 -625
  71. package/bin/clawpowers.sh +0 -91
  72. package/docs/demo/clawpowers-demo.cast +0 -197
  73. package/docs/demo/clawpowers-demo.gif +0 -0
  74. package/docs/launch-images/25-skills-breakdown.jpg +0 -0
  75. package/docs/launch-images/clawpowers-vs-superpowers.jpg +0 -0
  76. package/docs/launch-images/economic-code-optimization.jpg +0 -0
  77. package/docs/launch-images/native-vs-bridge-2.jpg +0 -0
  78. package/docs/launch-images/native-vs-bridge.jpg +0 -0
  79. package/docs/launch-images/post1-hero-lobster.jpg +0 -0
  80. package/docs/launch-images/post2-dashboard.jpg +0 -0
  81. package/docs/launch-images/post3-superpowers.jpg +0 -0
  82. package/docs/launch-images/post4-before-after.jpg +0 -0
  83. package/docs/launch-images/post5-install-now.jpg +0 -0
  84. package/docs/launch-images/ultimate-stack.jpg +0 -0
  85. package/docs/launch-posts.md +0 -76
  86. package/docs/quickstart-first-transaction.md +0 -204
  87. package/gemini-extension.json +0 -32
  88. package/hooks/session-start +0 -205
  89. package/hooks/session-start.cmd +0 -43
  90. package/hooks/session-start.js +0 -163
  91. package/runtime/demo/README.md +0 -78
  92. package/runtime/demo/x402-mock-server.js +0 -230
  93. package/runtime/feedback/analyze.js +0 -621
  94. package/runtime/feedback/analyze.sh +0 -546
  95. package/runtime/init.js +0 -210
  96. package/runtime/init.sh +0 -178
  97. package/runtime/metrics/collector.js +0 -361
  98. package/runtime/metrics/collector.sh +0 -308
  99. package/runtime/payments/ledger.js +0 -305
  100. package/runtime/payments/ledger.sh +0 -262
  101. package/runtime/payments/pipeline.js +0 -455
  102. package/runtime/persistence/store.js +0 -433
  103. package/runtime/persistence/store.sh +0 -303
  104. package/skill.json +0 -106
  105. package/skills/agent-bounties/SKILL.md +0 -553
  106. package/skills/agent-payments/SKILL.md +0 -479
  107. package/skills/brainstorming/SKILL.md +0 -233
  108. package/skills/content-pipeline/SKILL.md +0 -282
  109. package/skills/cross-project-knowledge/SKILL.md +0 -345
  110. package/skills/dispatching-parallel-agents/SKILL.md +0 -305
  111. package/skills/economic-code-optimization/SKILL.md +0 -265
  112. package/skills/executing-plans/SKILL.md +0 -255
  113. package/skills/finishing-a-development-branch/SKILL.md +0 -260
  114. package/skills/formal-verification-lite/SKILL.md +0 -441
  115. package/skills/learn-how-to-learn/SKILL.md +0 -235
  116. package/skills/market-intelligence/SKILL.md +0 -323
  117. package/skills/meta-skill-evolution/SKILL.md +0 -325
  118. package/skills/prospecting/SKILL.md +0 -454
  119. package/skills/receiving-code-review/SKILL.md +0 -225
  120. package/skills/requesting-code-review/SKILL.md +0 -206
  121. package/skills/security-audit/SKILL.md +0 -353
  122. package/skills/self-healing-code/SKILL.md +0 -369
  123. package/skills/subagent-driven-development/SKILL.md +0 -244
  124. package/skills/systematic-debugging/SKILL.md +0 -355
  125. package/skills/test-driven-development/SKILL.md +0 -416
  126. package/skills/using-clawpowers/SKILL.md +0 -160
  127. package/skills/using-git-worktrees/SKILL.md +0 -261
  128. package/skills/validator/SKILL.md +0 -281
  129. package/skills/verification-before-completion/SKILL.md +0 -254
  130. package/skills/writing-plans/SKILL.md +0 -276
  131. package/skills/writing-skills/SKILL.md +0 -260
@@ -0,0 +1,4863 @@
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 = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "alloy-consensus"
28
+ version = "1.8.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7f16daaf7e1f95f62c6c3bf8a3fc3d78b08ae9777810c0bb5e94966c7cd57ef0"
31
+ dependencies = [
32
+ "alloy-eips",
33
+ "alloy-primitives",
34
+ "alloy-rlp",
35
+ "alloy-serde",
36
+ "alloy-trie",
37
+ "alloy-tx-macros",
38
+ "auto_impl",
39
+ "borsh",
40
+ "c-kzg",
41
+ "derive_more",
42
+ "either",
43
+ "k256",
44
+ "once_cell",
45
+ "rand 0.8.5",
46
+ "secp256k1",
47
+ "serde",
48
+ "serde_json",
49
+ "serde_with",
50
+ "thiserror",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "alloy-consensus-any"
55
+ version = "1.8.3"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "118998d9015332ab1b4720ae1f1e3009491966a0349938a1f43ff45a8a4c6299"
58
+ dependencies = [
59
+ "alloy-consensus",
60
+ "alloy-eips",
61
+ "alloy-primitives",
62
+ "alloy-rlp",
63
+ "alloy-serde",
64
+ "serde",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "alloy-eip2124"
69
+ version = "0.2.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "741bdd7499908b3aa0b159bba11e71c8cddd009a2c2eb7a06e825f1ec87900a5"
72
+ dependencies = [
73
+ "alloy-primitives",
74
+ "alloy-rlp",
75
+ "crc",
76
+ "serde",
77
+ "thiserror",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "alloy-eip2930"
82
+ version = "0.2.3"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "9441120fa82df73e8959ae0e4ab8ade03de2aaae61be313fbf5746277847ce25"
85
+ dependencies = [
86
+ "alloy-primitives",
87
+ "alloy-rlp",
88
+ "borsh",
89
+ "serde",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "alloy-eip7702"
94
+ version = "0.6.3"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "2919c5a56a1007492da313e7a3b6d45ef5edc5d33416fdec63c0d7a2702a0d20"
97
+ dependencies = [
98
+ "alloy-primitives",
99
+ "alloy-rlp",
100
+ "borsh",
101
+ "serde",
102
+ "thiserror",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "alloy-eip7928"
107
+ version = "0.3.3"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "f8222b1d88f9a6d03be84b0f5e76bb60cd83991b43ad8ab6477f0e4a7809b98d"
110
+ dependencies = [
111
+ "alloy-primitives",
112
+ "alloy-rlp",
113
+ "borsh",
114
+ "serde",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "alloy-eips"
119
+ version = "1.8.3"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "e6ef28c9fdad22d4eec52d894f5f2673a0895f1e5ef196734568e68c0f6caca8"
122
+ dependencies = [
123
+ "alloy-eip2124",
124
+ "alloy-eip2930",
125
+ "alloy-eip7702",
126
+ "alloy-eip7928",
127
+ "alloy-primitives",
128
+ "alloy-rlp",
129
+ "alloy-serde",
130
+ "auto_impl",
131
+ "borsh",
132
+ "c-kzg",
133
+ "derive_more",
134
+ "either",
135
+ "serde",
136
+ "serde_with",
137
+ "sha2",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "alloy-json-abi"
142
+ version = "1.5.7"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "e9dbe713da0c737d9e5e387b0ba790eb98b14dd207fe53eef50e19a5a8ec3dac"
145
+ dependencies = [
146
+ "alloy-primitives",
147
+ "alloy-sol-type-parser",
148
+ "serde",
149
+ "serde_json",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "alloy-json-rpc"
154
+ version = "1.8.3"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "422d110f1c40f1f8d0e5562b0b649c35f345fccb7093d9f02729943dcd1eef71"
157
+ dependencies = [
158
+ "alloy-primitives",
159
+ "alloy-sol-types",
160
+ "http",
161
+ "serde",
162
+ "serde_json",
163
+ "thiserror",
164
+ "tracing",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "alloy-network"
169
+ version = "1.8.3"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "7197a66d94c4de1591cdc16a9bcea5f8cccd0da81b865b49aef97b1b4016e0fa"
172
+ dependencies = [
173
+ "alloy-consensus",
174
+ "alloy-consensus-any",
175
+ "alloy-eips",
176
+ "alloy-json-rpc",
177
+ "alloy-network-primitives",
178
+ "alloy-primitives",
179
+ "alloy-rpc-types-any",
180
+ "alloy-rpc-types-eth",
181
+ "alloy-serde",
182
+ "alloy-signer",
183
+ "alloy-sol-types",
184
+ "async-trait",
185
+ "auto_impl",
186
+ "derive_more",
187
+ "futures-utils-wasm",
188
+ "serde",
189
+ "serde_json",
190
+ "thiserror",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "alloy-network-primitives"
195
+ version = "1.8.3"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "eb82711d59a43fdfd79727c99f270b974c784ec4eb5728a0d0d22f26716c87ef"
198
+ dependencies = [
199
+ "alloy-consensus",
200
+ "alloy-eips",
201
+ "alloy-primitives",
202
+ "alloy-serde",
203
+ "serde",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "alloy-primitives"
208
+ version = "1.5.7"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "de3b431b4e72cd8bd0ec7a50b4be18e73dab74de0dba180eef171055e5d5926e"
211
+ dependencies = [
212
+ "alloy-rlp",
213
+ "bytes",
214
+ "cfg-if",
215
+ "const-hex",
216
+ "derive_more",
217
+ "foldhash 0.2.0",
218
+ "hashbrown 0.16.1",
219
+ "indexmap 2.13.0",
220
+ "itoa",
221
+ "k256",
222
+ "keccak-asm",
223
+ "paste",
224
+ "proptest",
225
+ "rand 0.9.2",
226
+ "rapidhash",
227
+ "ruint",
228
+ "rustc-hash",
229
+ "serde",
230
+ "sha3",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "alloy-rlp"
235
+ version = "0.3.13"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "e93e50f64a77ad9c5470bf2ad0ca02f228da70c792a8f06634801e202579f35e"
238
+ dependencies = [
239
+ "alloy-rlp-derive",
240
+ "arrayvec",
241
+ "bytes",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "alloy-rlp-derive"
246
+ version = "0.3.13"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "ce8849c74c9ca0f5a03da1c865e3eb6f768df816e67dd3721a398a8a7e398011"
249
+ dependencies = [
250
+ "proc-macro2",
251
+ "quote",
252
+ "syn 2.0.117",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "alloy-rpc-types-any"
257
+ version = "1.8.3"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "3823026d1ed239a40f12364fac50726c8daf1b6ab8077a97212c5123910429ed"
260
+ dependencies = [
261
+ "alloy-consensus-any",
262
+ "alloy-rpc-types-eth",
263
+ "alloy-serde",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "alloy-rpc-types-eth"
268
+ version = "1.8.3"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "59c095f92c4e1ff4981d89e9aa02d5f98c762a1980ab66bec49c44be11349da2"
271
+ dependencies = [
272
+ "alloy-consensus",
273
+ "alloy-consensus-any",
274
+ "alloy-eips",
275
+ "alloy-network-primitives",
276
+ "alloy-primitives",
277
+ "alloy-rlp",
278
+ "alloy-serde",
279
+ "alloy-sol-types",
280
+ "itertools 0.14.0",
281
+ "serde",
282
+ "serde_json",
283
+ "serde_with",
284
+ "thiserror",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "alloy-serde"
289
+ version = "1.8.3"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "11ece63b89294b8614ab3f483560c08d016930f842bf36da56bf0b764a15c11e"
292
+ dependencies = [
293
+ "alloy-primitives",
294
+ "serde",
295
+ "serde_json",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "alloy-signer"
300
+ version = "1.8.3"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "43f447aefab0f1c0649f71edc33f590992d4e122bc35fb9cdbbf67d4421ace85"
303
+ dependencies = [
304
+ "alloy-primitives",
305
+ "async-trait",
306
+ "auto_impl",
307
+ "either",
308
+ "elliptic-curve",
309
+ "k256",
310
+ "thiserror",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "alloy-signer-local"
315
+ version = "1.8.3"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "f721f4bf2e4812e5505aaf5de16ef3065a8e26b9139ac885862d00b5a55a659a"
318
+ dependencies = [
319
+ "alloy-consensus",
320
+ "alloy-network",
321
+ "alloy-primitives",
322
+ "alloy-signer",
323
+ "async-trait",
324
+ "k256",
325
+ "rand 0.8.5",
326
+ "thiserror",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "alloy-sol-macro"
331
+ version = "1.5.7"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "ab81bab693da9bb79f7a95b64b394718259fdd7e41dceeced4cad57cb71c4f6a"
334
+ dependencies = [
335
+ "alloy-sol-macro-expander",
336
+ "alloy-sol-macro-input",
337
+ "proc-macro-error2",
338
+ "proc-macro2",
339
+ "quote",
340
+ "syn 2.0.117",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "alloy-sol-macro-expander"
345
+ version = "1.5.7"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "489f1620bb7e2483fb5819ed01ab6edc1d2f93939dce35a5695085a1afd1d699"
348
+ dependencies = [
349
+ "alloy-sol-macro-input",
350
+ "const-hex",
351
+ "heck",
352
+ "indexmap 2.13.0",
353
+ "proc-macro-error2",
354
+ "proc-macro2",
355
+ "quote",
356
+ "sha3",
357
+ "syn 2.0.117",
358
+ "syn-solidity",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "alloy-sol-macro-input"
363
+ version = "1.5.7"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "56cef806ad22d4392c5fc83cf8f2089f988eb99c7067b4e0c6f1971fc1cca318"
366
+ dependencies = [
367
+ "const-hex",
368
+ "dunce",
369
+ "heck",
370
+ "macro-string",
371
+ "proc-macro2",
372
+ "quote",
373
+ "syn 2.0.117",
374
+ "syn-solidity",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "alloy-sol-type-parser"
379
+ version = "1.5.7"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "a6df77fea9d6a2a75c0ef8d2acbdfd92286cc599983d3175ccdc170d3433d249"
382
+ dependencies = [
383
+ "serde",
384
+ "winnow 0.7.15",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "alloy-sol-types"
389
+ version = "1.5.7"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "64612d29379782a5dde6f4b6570d9c756d734d760c0c94c254d361e678a6591f"
392
+ dependencies = [
393
+ "alloy-json-abi",
394
+ "alloy-primitives",
395
+ "alloy-sol-macro",
396
+ "serde",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "alloy-trie"
401
+ version = "0.9.5"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "3f14b5d9b2c2173980202c6ff470d96e7c5e202c65a9f67884ad565226df7fbb"
404
+ dependencies = [
405
+ "alloy-primitives",
406
+ "alloy-rlp",
407
+ "derive_more",
408
+ "nybbles",
409
+ "serde",
410
+ "smallvec",
411
+ "thiserror",
412
+ "tracing",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "alloy-tx-macros"
417
+ version = "1.8.3"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "d69722eddcdf1ce096c3ab66cf8116999363f734eb36fe94a148f4f71c85da84"
420
+ dependencies = [
421
+ "darling",
422
+ "proc-macro2",
423
+ "quote",
424
+ "syn 2.0.117",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "android_system_properties"
429
+ version = "0.1.5"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
432
+ dependencies = [
433
+ "libc",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "anes"
438
+ version = "0.1.6"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
441
+
442
+ [[package]]
443
+ name = "anstyle"
444
+ version = "1.0.14"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
447
+
448
+ [[package]]
449
+ name = "anyhow"
450
+ version = "1.0.102"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
453
+
454
+ [[package]]
455
+ name = "ark-ff"
456
+ version = "0.3.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6"
459
+ dependencies = [
460
+ "ark-ff-asm 0.3.0",
461
+ "ark-ff-macros 0.3.0",
462
+ "ark-serialize 0.3.0",
463
+ "ark-std 0.3.0",
464
+ "derivative",
465
+ "num-bigint",
466
+ "num-traits",
467
+ "paste",
468
+ "rustc_version 0.3.3",
469
+ "zeroize",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "ark-ff"
474
+ version = "0.4.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba"
477
+ dependencies = [
478
+ "ark-ff-asm 0.4.2",
479
+ "ark-ff-macros 0.4.2",
480
+ "ark-serialize 0.4.2",
481
+ "ark-std 0.4.0",
482
+ "derivative",
483
+ "digest 0.10.7",
484
+ "itertools 0.10.5",
485
+ "num-bigint",
486
+ "num-traits",
487
+ "paste",
488
+ "rustc_version 0.4.1",
489
+ "zeroize",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "ark-ff"
494
+ version = "0.5.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "a177aba0ed1e0fbb62aa9f6d0502e9b46dad8c2eab04c14258a1212d2557ea70"
497
+ dependencies = [
498
+ "ark-ff-asm 0.5.0",
499
+ "ark-ff-macros 0.5.0",
500
+ "ark-serialize 0.5.0",
501
+ "ark-std 0.5.0",
502
+ "arrayvec",
503
+ "digest 0.10.7",
504
+ "educe",
505
+ "itertools 0.13.0",
506
+ "num-bigint",
507
+ "num-traits",
508
+ "paste",
509
+ "zeroize",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "ark-ff-asm"
514
+ version = "0.3.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44"
517
+ dependencies = [
518
+ "quote",
519
+ "syn 1.0.109",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "ark-ff-asm"
524
+ version = "0.4.2"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348"
527
+ dependencies = [
528
+ "quote",
529
+ "syn 1.0.109",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "ark-ff-asm"
534
+ version = "0.5.0"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60"
537
+ dependencies = [
538
+ "quote",
539
+ "syn 2.0.117",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "ark-ff-macros"
544
+ version = "0.3.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20"
547
+ dependencies = [
548
+ "num-bigint",
549
+ "num-traits",
550
+ "quote",
551
+ "syn 1.0.109",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "ark-ff-macros"
556
+ version = "0.4.2"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565"
559
+ dependencies = [
560
+ "num-bigint",
561
+ "num-traits",
562
+ "proc-macro2",
563
+ "quote",
564
+ "syn 1.0.109",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "ark-ff-macros"
569
+ version = "0.5.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "09be120733ee33f7693ceaa202ca41accd5653b779563608f1234f78ae07c4b3"
572
+ dependencies = [
573
+ "num-bigint",
574
+ "num-traits",
575
+ "proc-macro2",
576
+ "quote",
577
+ "syn 2.0.117",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "ark-serialize"
582
+ version = "0.3.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671"
585
+ dependencies = [
586
+ "ark-std 0.3.0",
587
+ "digest 0.9.0",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "ark-serialize"
592
+ version = "0.4.2"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
595
+ dependencies = [
596
+ "ark-std 0.4.0",
597
+ "digest 0.10.7",
598
+ "num-bigint",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "ark-serialize"
603
+ version = "0.5.0"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7"
606
+ dependencies = [
607
+ "ark-std 0.5.0",
608
+ "arrayvec",
609
+ "digest 0.10.7",
610
+ "num-bigint",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "ark-std"
615
+ version = "0.3.0"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c"
618
+ dependencies = [
619
+ "num-traits",
620
+ "rand 0.8.5",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "ark-std"
625
+ version = "0.4.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
628
+ dependencies = [
629
+ "num-traits",
630
+ "rand 0.8.5",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "ark-std"
635
+ version = "0.5.0"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a"
638
+ dependencies = [
639
+ "num-traits",
640
+ "rand 0.8.5",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "arrayvec"
645
+ version = "0.7.6"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
648
+
649
+ [[package]]
650
+ name = "async-trait"
651
+ version = "0.1.89"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
654
+ dependencies = [
655
+ "proc-macro2",
656
+ "quote",
657
+ "syn 2.0.117",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "atomic-waker"
662
+ version = "1.1.2"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
665
+
666
+ [[package]]
667
+ name = "auto_impl"
668
+ version = "1.3.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
671
+ dependencies = [
672
+ "proc-macro2",
673
+ "quote",
674
+ "syn 2.0.117",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "autocfg"
679
+ version = "1.5.0"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
682
+
683
+ [[package]]
684
+ name = "base16ct"
685
+ version = "0.2.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
688
+
689
+ [[package]]
690
+ name = "base64"
691
+ version = "0.22.1"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
694
+
695
+ [[package]]
696
+ name = "base64ct"
697
+ version = "1.8.3"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
700
+
701
+ [[package]]
702
+ name = "bit-set"
703
+ version = "0.8.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
706
+ dependencies = [
707
+ "bit-vec",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "bit-vec"
712
+ version = "0.8.0"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
715
+
716
+ [[package]]
717
+ name = "bitcoin-io"
718
+ version = "0.1.4"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953"
721
+
722
+ [[package]]
723
+ name = "bitcoin_hashes"
724
+ version = "0.14.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b"
727
+ dependencies = [
728
+ "bitcoin-io",
729
+ "hex-conservative",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "bitflags"
734
+ version = "2.11.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
737
+
738
+ [[package]]
739
+ name = "bitvec"
740
+ version = "1.0.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
743
+ dependencies = [
744
+ "funty",
745
+ "radium",
746
+ "tap",
747
+ "wyz",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "block-buffer"
752
+ version = "0.10.4"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
755
+ dependencies = [
756
+ "generic-array",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "blst"
761
+ version = "0.3.16"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "dcdb4c7013139a150f9fc55d123186dbfaba0d912817466282c73ac49e71fb45"
764
+ dependencies = [
765
+ "cc",
766
+ "glob",
767
+ "threadpool",
768
+ "zeroize",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "borsh"
773
+ version = "1.6.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
776
+ dependencies = [
777
+ "borsh-derive",
778
+ "bytes",
779
+ "cfg_aliases",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "borsh-derive"
784
+ version = "1.6.1"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
787
+ dependencies = [
788
+ "once_cell",
789
+ "proc-macro-crate",
790
+ "proc-macro2",
791
+ "quote",
792
+ "syn 2.0.117",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "bumpalo"
797
+ version = "3.20.2"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
800
+
801
+ [[package]]
802
+ name = "byte-slice-cast"
803
+ version = "1.2.3"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d"
806
+
807
+ [[package]]
808
+ name = "byteorder"
809
+ version = "1.5.0"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
812
+
813
+ [[package]]
814
+ name = "bytes"
815
+ version = "1.11.1"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
818
+ dependencies = [
819
+ "serde",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "c-kzg"
824
+ version = "2.1.7"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "6648ed1e4ea8e8a1a4a2c78e1cda29a3fd500bc622899c340d8525ea9a76b24a"
827
+ dependencies = [
828
+ "blst",
829
+ "cc",
830
+ "glob",
831
+ "hex",
832
+ "libc",
833
+ "once_cell",
834
+ "serde",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "cast"
839
+ version = "0.3.0"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
842
+
843
+ [[package]]
844
+ name = "cc"
845
+ version = "1.2.58"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
848
+ dependencies = [
849
+ "find-msvc-tools",
850
+ "shlex",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "cfg-if"
855
+ version = "1.0.4"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
858
+
859
+ [[package]]
860
+ name = "cfg_aliases"
861
+ version = "0.2.1"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
864
+
865
+ [[package]]
866
+ name = "chrono"
867
+ version = "0.4.44"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
870
+ dependencies = [
871
+ "iana-time-zone",
872
+ "js-sys",
873
+ "num-traits",
874
+ "serde",
875
+ "wasm-bindgen",
876
+ "windows-link",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "ciborium"
881
+ version = "0.2.2"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
884
+ dependencies = [
885
+ "ciborium-io",
886
+ "ciborium-ll",
887
+ "serde",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "ciborium-io"
892
+ version = "0.2.2"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
895
+
896
+ [[package]]
897
+ name = "ciborium-ll"
898
+ version = "0.2.2"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
901
+ dependencies = [
902
+ "ciborium-io",
903
+ "half",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "clap"
908
+ version = "4.6.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
911
+ dependencies = [
912
+ "clap_builder",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "clap_builder"
917
+ version = "4.6.0"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
920
+ dependencies = [
921
+ "anstyle",
922
+ "clap_lex",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "clap_lex"
927
+ version = "1.1.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
930
+
931
+ [[package]]
932
+ name = "clawpowers-canonical"
933
+ version = "0.1.0"
934
+ dependencies = [
935
+ "chrono",
936
+ "rusqlite",
937
+ "serde",
938
+ "serde_json",
939
+ "sha2",
940
+ "thiserror",
941
+ "tokio",
942
+ "tracing",
943
+ "uuid",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "clawpowers-compression"
948
+ version = "0.1.0"
949
+ dependencies = [
950
+ "criterion",
951
+ "rand 0.9.2",
952
+ "serde",
953
+ "serde_json",
954
+ "sha2",
955
+ "thiserror",
956
+ "tracing",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "clawpowers-evm-eth"
961
+ version = "0.1.0"
962
+ dependencies = [
963
+ "alloy-primitives",
964
+ "hex",
965
+ "k256",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "clawpowers-fee"
970
+ version = "0.1.0"
971
+ dependencies = [
972
+ "alloy-primitives",
973
+ "clawpowers-tokens",
974
+ "serde",
975
+ "serde_json",
976
+ "thiserror",
977
+ "tracing",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "clawpowers-ffi"
982
+ version = "0.1.0"
983
+ dependencies = [
984
+ "alloy-primitives",
985
+ "clawpowers-canonical",
986
+ "clawpowers-compression",
987
+ "clawpowers-evm-eth",
988
+ "clawpowers-fee",
989
+ "clawpowers-index",
990
+ "clawpowers-policy",
991
+ "clawpowers-security",
992
+ "clawpowers-tokens",
993
+ "clawpowers-verification",
994
+ "clawpowers-wallet",
995
+ "clawpowers-x402",
996
+ "k256",
997
+ "napi",
998
+ "napi-build",
999
+ "napi-derive",
1000
+ "serde",
1001
+ "serde_json",
1002
+ "tokio",
1003
+ "uuid",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "clawpowers-index"
1008
+ version = "0.1.0"
1009
+ dependencies = [
1010
+ "clawpowers-compression",
1011
+ "rand 0.9.2",
1012
+ "serde",
1013
+ "serde_json",
1014
+ "thiserror",
1015
+ "tracing",
1016
+ "uuid",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "clawpowers-policy"
1021
+ version = "0.1.0"
1022
+ dependencies = [
1023
+ "alloy-primitives",
1024
+ "chrono",
1025
+ "clawpowers-tokens",
1026
+ "serde",
1027
+ "serde_json",
1028
+ "thiserror",
1029
+ "tokio",
1030
+ "tracing",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "clawpowers-pyo3"
1035
+ version = "0.1.0"
1036
+ dependencies = [
1037
+ "alloy-primitives",
1038
+ "clawpowers-canonical",
1039
+ "clawpowers-compression",
1040
+ "clawpowers-fee",
1041
+ "clawpowers-index",
1042
+ "clawpowers-policy",
1043
+ "clawpowers-security",
1044
+ "clawpowers-tokens",
1045
+ "clawpowers-verification",
1046
+ "clawpowers-wallet",
1047
+ "clawpowers-x402",
1048
+ "pyo3",
1049
+ "serde",
1050
+ "serde_json",
1051
+ "uuid",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "clawpowers-security"
1056
+ version = "0.1.0"
1057
+ dependencies = [
1058
+ "chrono",
1059
+ "clawpowers-canonical",
1060
+ "rusqlite",
1061
+ "serde",
1062
+ "serde_json",
1063
+ "thiserror",
1064
+ "tracing",
1065
+ "uuid",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "clawpowers-tokens"
1070
+ version = "0.1.0"
1071
+ dependencies = [
1072
+ "alloy-primitives",
1073
+ "serde",
1074
+ "serde_json",
1075
+ "thiserror",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "clawpowers-verification"
1080
+ version = "0.1.0"
1081
+ dependencies = [
1082
+ "chrono",
1083
+ "clawpowers-canonical",
1084
+ "rusqlite",
1085
+ "serde",
1086
+ "serde_json",
1087
+ "sha2",
1088
+ "thiserror",
1089
+ "tracing",
1090
+ "uuid",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "clawpowers-wallet"
1095
+ version = "0.1.0"
1096
+ dependencies = [
1097
+ "alloy-primitives",
1098
+ "alloy-signer",
1099
+ "alloy-signer-local",
1100
+ "rand 0.9.2",
1101
+ "serde",
1102
+ "serde_json",
1103
+ "thiserror",
1104
+ "tokio",
1105
+ "tracing",
1106
+ "uuid",
1107
+ "zeroize",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "clawpowers-wasm"
1112
+ version = "0.1.0"
1113
+ dependencies = [
1114
+ "alloy-primitives",
1115
+ "chrono",
1116
+ "clawpowers-canonical",
1117
+ "clawpowers-compression",
1118
+ "clawpowers-evm-eth",
1119
+ "clawpowers-fee",
1120
+ "clawpowers-index",
1121
+ "clawpowers-policy",
1122
+ "clawpowers-security",
1123
+ "clawpowers-tokens",
1124
+ "clawpowers-verification",
1125
+ "getrandom 0.2.17",
1126
+ "getrandom 0.3.4",
1127
+ "k256",
1128
+ "serde",
1129
+ "serde-wasm-bindgen",
1130
+ "serde_json",
1131
+ "uuid",
1132
+ "wasm-bindgen",
1133
+ "wasm-bindgen-test",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "clawpowers-x402"
1138
+ version = "0.1.0"
1139
+ dependencies = [
1140
+ "alloy-primitives",
1141
+ "alloy-signer",
1142
+ "clawpowers-fee",
1143
+ "clawpowers-tokens",
1144
+ "reqwest",
1145
+ "serde",
1146
+ "serde_json",
1147
+ "thiserror",
1148
+ "tokio",
1149
+ "tracing",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "const-hex"
1154
+ version = "1.18.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b"
1157
+ dependencies = [
1158
+ "cfg-if",
1159
+ "cpufeatures",
1160
+ "proptest",
1161
+ "serde_core",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "const-oid"
1166
+ version = "0.9.6"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
1169
+
1170
+ [[package]]
1171
+ name = "const_format"
1172
+ version = "0.2.35"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad"
1175
+ dependencies = [
1176
+ "const_format_proc_macros",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "const_format_proc_macros"
1181
+ version = "0.2.34"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
1184
+ dependencies = [
1185
+ "proc-macro2",
1186
+ "quote",
1187
+ "unicode-xid",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "convert_case"
1192
+ version = "0.10.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
1195
+ dependencies = [
1196
+ "unicode-segmentation",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "convert_case"
1201
+ version = "0.11.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
1204
+ dependencies = [
1205
+ "unicode-segmentation",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "core-foundation"
1210
+ version = "0.9.4"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
1213
+ dependencies = [
1214
+ "core-foundation-sys",
1215
+ "libc",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "core-foundation"
1220
+ version = "0.10.1"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1223
+ dependencies = [
1224
+ "core-foundation-sys",
1225
+ "libc",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "core-foundation-sys"
1230
+ version = "0.8.7"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
1233
+
1234
+ [[package]]
1235
+ name = "cpufeatures"
1236
+ version = "0.2.17"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
1239
+ dependencies = [
1240
+ "libc",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "crc"
1245
+ version = "3.4.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
1248
+ dependencies = [
1249
+ "crc-catalog",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "crc-catalog"
1254
+ version = "2.4.0"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
1257
+
1258
+ [[package]]
1259
+ name = "criterion"
1260
+ version = "0.5.1"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
1263
+ dependencies = [
1264
+ "anes",
1265
+ "cast",
1266
+ "ciborium",
1267
+ "clap",
1268
+ "criterion-plot",
1269
+ "is-terminal",
1270
+ "itertools 0.10.5",
1271
+ "num-traits",
1272
+ "once_cell",
1273
+ "oorandom",
1274
+ "plotters",
1275
+ "rayon",
1276
+ "regex",
1277
+ "serde",
1278
+ "serde_derive",
1279
+ "serde_json",
1280
+ "tinytemplate",
1281
+ "walkdir",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "criterion-plot"
1286
+ version = "0.5.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
1289
+ dependencies = [
1290
+ "cast",
1291
+ "itertools 0.10.5",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "crossbeam-deque"
1296
+ version = "0.8.6"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
1299
+ dependencies = [
1300
+ "crossbeam-epoch",
1301
+ "crossbeam-utils",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "crossbeam-epoch"
1306
+ version = "0.9.18"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
1309
+ dependencies = [
1310
+ "crossbeam-utils",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "crossbeam-utils"
1315
+ version = "0.8.21"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1318
+
1319
+ [[package]]
1320
+ name = "crunchy"
1321
+ version = "0.2.4"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1324
+
1325
+ [[package]]
1326
+ name = "crypto-bigint"
1327
+ version = "0.5.5"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
1330
+ dependencies = [
1331
+ "generic-array",
1332
+ "rand_core 0.6.4",
1333
+ "subtle",
1334
+ "zeroize",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "crypto-common"
1339
+ version = "0.1.6"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
1342
+ dependencies = [
1343
+ "generic-array",
1344
+ "typenum",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "ctor"
1349
+ version = "0.8.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
1352
+ dependencies = [
1353
+ "ctor-proc-macro",
1354
+ "dtor",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "ctor-proc-macro"
1359
+ version = "0.0.7"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
1362
+
1363
+ [[package]]
1364
+ name = "darling"
1365
+ version = "0.23.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
1368
+ dependencies = [
1369
+ "darling_core",
1370
+ "darling_macro",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "darling_core"
1375
+ version = "0.23.0"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
1378
+ dependencies = [
1379
+ "ident_case",
1380
+ "proc-macro2",
1381
+ "quote",
1382
+ "serde",
1383
+ "strsim",
1384
+ "syn 2.0.117",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "darling_macro"
1389
+ version = "0.23.0"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
1392
+ dependencies = [
1393
+ "darling_core",
1394
+ "quote",
1395
+ "syn 2.0.117",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "der"
1400
+ version = "0.7.10"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1403
+ dependencies = [
1404
+ "const-oid",
1405
+ "zeroize",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "deranged"
1410
+ version = "0.5.8"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1413
+ dependencies = [
1414
+ "powerfmt",
1415
+ "serde_core",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "derivative"
1420
+ version = "2.2.0"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
1423
+ dependencies = [
1424
+ "proc-macro2",
1425
+ "quote",
1426
+ "syn 1.0.109",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "derive_more"
1431
+ version = "2.1.1"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1434
+ dependencies = [
1435
+ "derive_more-impl",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "derive_more-impl"
1440
+ version = "2.1.1"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1443
+ dependencies = [
1444
+ "convert_case 0.10.0",
1445
+ "proc-macro2",
1446
+ "quote",
1447
+ "rustc_version 0.4.1",
1448
+ "syn 2.0.117",
1449
+ "unicode-xid",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "digest"
1454
+ version = "0.9.0"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
1457
+ dependencies = [
1458
+ "generic-array",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "digest"
1463
+ version = "0.10.7"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1466
+ dependencies = [
1467
+ "block-buffer",
1468
+ "const-oid",
1469
+ "crypto-common",
1470
+ "subtle",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "displaydoc"
1475
+ version = "0.2.5"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1478
+ dependencies = [
1479
+ "proc-macro2",
1480
+ "quote",
1481
+ "syn 2.0.117",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "dtor"
1486
+ version = "0.3.0"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
1489
+ dependencies = [
1490
+ "dtor-proc-macro",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "dtor-proc-macro"
1495
+ version = "0.0.6"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
1498
+
1499
+ [[package]]
1500
+ name = "dunce"
1501
+ version = "1.0.5"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1504
+
1505
+ [[package]]
1506
+ name = "dyn-clone"
1507
+ version = "1.0.20"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1510
+
1511
+ [[package]]
1512
+ name = "ecdsa"
1513
+ version = "0.16.9"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1516
+ dependencies = [
1517
+ "der",
1518
+ "digest 0.10.7",
1519
+ "elliptic-curve",
1520
+ "rfc6979",
1521
+ "serdect",
1522
+ "signature",
1523
+ "spki",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "educe"
1528
+ version = "0.6.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417"
1531
+ dependencies = [
1532
+ "enum-ordinalize",
1533
+ "proc-macro2",
1534
+ "quote",
1535
+ "syn 2.0.117",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "either"
1540
+ version = "1.15.0"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1543
+ dependencies = [
1544
+ "serde",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "elliptic-curve"
1549
+ version = "0.13.8"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1552
+ dependencies = [
1553
+ "base16ct",
1554
+ "crypto-bigint",
1555
+ "digest 0.10.7",
1556
+ "ff",
1557
+ "generic-array",
1558
+ "group",
1559
+ "pkcs8",
1560
+ "rand_core 0.6.4",
1561
+ "sec1",
1562
+ "serdect",
1563
+ "subtle",
1564
+ "zeroize",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "encoding_rs"
1569
+ version = "0.8.35"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1572
+ dependencies = [
1573
+ "cfg-if",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "enum-ordinalize"
1578
+ version = "4.3.2"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0"
1581
+ dependencies = [
1582
+ "enum-ordinalize-derive",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "enum-ordinalize-derive"
1587
+ version = "4.3.2"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631"
1590
+ dependencies = [
1591
+ "proc-macro2",
1592
+ "quote",
1593
+ "syn 2.0.117",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "equivalent"
1598
+ version = "1.0.2"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1601
+
1602
+ [[package]]
1603
+ name = "errno"
1604
+ version = "0.3.14"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1607
+ dependencies = [
1608
+ "libc",
1609
+ "windows-sys 0.61.2",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "fallible-iterator"
1614
+ version = "0.3.0"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1617
+
1618
+ [[package]]
1619
+ name = "fallible-streaming-iterator"
1620
+ version = "0.1.9"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
1623
+
1624
+ [[package]]
1625
+ name = "fastrand"
1626
+ version = "2.3.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1629
+
1630
+ [[package]]
1631
+ name = "fastrlp"
1632
+ version = "0.3.1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418"
1635
+ dependencies = [
1636
+ "arrayvec",
1637
+ "auto_impl",
1638
+ "bytes",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "fastrlp"
1643
+ version = "0.4.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "ce8dba4714ef14b8274c371879b175aa55b16b30f269663f19d576f380018dc4"
1646
+ dependencies = [
1647
+ "arrayvec",
1648
+ "auto_impl",
1649
+ "bytes",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "ff"
1654
+ version = "0.13.1"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1657
+ dependencies = [
1658
+ "rand_core 0.6.4",
1659
+ "subtle",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "find-msvc-tools"
1664
+ version = "0.1.9"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1667
+
1668
+ [[package]]
1669
+ name = "fixed-hash"
1670
+ version = "0.8.0"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
1673
+ dependencies = [
1674
+ "byteorder",
1675
+ "rand 0.8.5",
1676
+ "rustc-hex",
1677
+ "static_assertions",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "fnv"
1682
+ version = "1.0.7"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1685
+
1686
+ [[package]]
1687
+ name = "foldhash"
1688
+ version = "0.1.5"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1691
+
1692
+ [[package]]
1693
+ name = "foldhash"
1694
+ version = "0.2.0"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1697
+
1698
+ [[package]]
1699
+ name = "foreign-types"
1700
+ version = "0.3.2"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1703
+ dependencies = [
1704
+ "foreign-types-shared",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "foreign-types-shared"
1709
+ version = "0.1.1"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1712
+
1713
+ [[package]]
1714
+ name = "form_urlencoded"
1715
+ version = "1.2.2"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1718
+ dependencies = [
1719
+ "percent-encoding",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "funty"
1724
+ version = "2.0.0"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1727
+
1728
+ [[package]]
1729
+ name = "futures"
1730
+ version = "0.3.32"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1733
+ dependencies = [
1734
+ "futures-channel",
1735
+ "futures-core",
1736
+ "futures-executor",
1737
+ "futures-io",
1738
+ "futures-sink",
1739
+ "futures-task",
1740
+ "futures-util",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "futures-channel"
1745
+ version = "0.3.32"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1748
+ dependencies = [
1749
+ "futures-core",
1750
+ "futures-sink",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "futures-core"
1755
+ version = "0.3.32"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1758
+
1759
+ [[package]]
1760
+ name = "futures-executor"
1761
+ version = "0.3.32"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1764
+ dependencies = [
1765
+ "futures-core",
1766
+ "futures-task",
1767
+ "futures-util",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "futures-io"
1772
+ version = "0.3.32"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1775
+
1776
+ [[package]]
1777
+ name = "futures-macro"
1778
+ version = "0.3.32"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1781
+ dependencies = [
1782
+ "proc-macro2",
1783
+ "quote",
1784
+ "syn 2.0.117",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "futures-sink"
1789
+ version = "0.3.32"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1792
+
1793
+ [[package]]
1794
+ name = "futures-task"
1795
+ version = "0.3.32"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1798
+
1799
+ [[package]]
1800
+ name = "futures-util"
1801
+ version = "0.3.32"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1804
+ dependencies = [
1805
+ "futures-channel",
1806
+ "futures-core",
1807
+ "futures-io",
1808
+ "futures-macro",
1809
+ "futures-sink",
1810
+ "futures-task",
1811
+ "memchr",
1812
+ "pin-project-lite",
1813
+ "slab",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "futures-utils-wasm"
1818
+ version = "0.1.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "42012b0f064e01aa58b545fe3727f90f7dd4020f4a3ea735b50344965f5a57e9"
1821
+
1822
+ [[package]]
1823
+ name = "generic-array"
1824
+ version = "0.14.9"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1827
+ dependencies = [
1828
+ "typenum",
1829
+ "version_check",
1830
+ "zeroize",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "getrandom"
1835
+ version = "0.2.17"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1838
+ dependencies = [
1839
+ "cfg-if",
1840
+ "js-sys",
1841
+ "libc",
1842
+ "wasi",
1843
+ "wasm-bindgen",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "getrandom"
1848
+ version = "0.3.4"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1851
+ dependencies = [
1852
+ "cfg-if",
1853
+ "js-sys",
1854
+ "libc",
1855
+ "r-efi 5.3.0",
1856
+ "wasip2",
1857
+ "wasm-bindgen",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "getrandom"
1862
+ version = "0.4.2"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1865
+ dependencies = [
1866
+ "cfg-if",
1867
+ "libc",
1868
+ "r-efi 6.0.0",
1869
+ "wasip2",
1870
+ "wasip3",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "glob"
1875
+ version = "0.3.3"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1878
+
1879
+ [[package]]
1880
+ name = "group"
1881
+ version = "0.13.0"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1884
+ dependencies = [
1885
+ "ff",
1886
+ "rand_core 0.6.4",
1887
+ "subtle",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "h2"
1892
+ version = "0.4.13"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1895
+ dependencies = [
1896
+ "atomic-waker",
1897
+ "bytes",
1898
+ "fnv",
1899
+ "futures-core",
1900
+ "futures-sink",
1901
+ "http",
1902
+ "indexmap 2.13.0",
1903
+ "slab",
1904
+ "tokio",
1905
+ "tokio-util",
1906
+ "tracing",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "half"
1911
+ version = "2.7.1"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1914
+ dependencies = [
1915
+ "cfg-if",
1916
+ "crunchy",
1917
+ "zerocopy",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "hashbrown"
1922
+ version = "0.12.3"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1925
+
1926
+ [[package]]
1927
+ name = "hashbrown"
1928
+ version = "0.14.5"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1931
+ dependencies = [
1932
+ "ahash",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "hashbrown"
1937
+ version = "0.15.5"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1940
+ dependencies = [
1941
+ "foldhash 0.1.5",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "hashbrown"
1946
+ version = "0.16.1"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1949
+ dependencies = [
1950
+ "foldhash 0.2.0",
1951
+ "serde",
1952
+ "serde_core",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "hashlink"
1957
+ version = "0.9.1"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1960
+ dependencies = [
1961
+ "hashbrown 0.14.5",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "heck"
1966
+ version = "0.5.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1969
+
1970
+ [[package]]
1971
+ name = "hermit-abi"
1972
+ version = "0.5.2"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1975
+
1976
+ [[package]]
1977
+ name = "hex"
1978
+ version = "0.4.3"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1981
+
1982
+ [[package]]
1983
+ name = "hex-conservative"
1984
+ version = "0.2.2"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
1987
+ dependencies = [
1988
+ "arrayvec",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "hmac"
1993
+ version = "0.12.1"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1996
+ dependencies = [
1997
+ "digest 0.10.7",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "http"
2002
+ version = "1.4.0"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
2005
+ dependencies = [
2006
+ "bytes",
2007
+ "itoa",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "http-body"
2012
+ version = "1.0.1"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2015
+ dependencies = [
2016
+ "bytes",
2017
+ "http",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "http-body-util"
2022
+ version = "0.1.3"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
2025
+ dependencies = [
2026
+ "bytes",
2027
+ "futures-core",
2028
+ "http",
2029
+ "http-body",
2030
+ "pin-project-lite",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "httparse"
2035
+ version = "1.10.1"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2038
+
2039
+ [[package]]
2040
+ name = "hyper"
2041
+ version = "1.8.1"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
2044
+ dependencies = [
2045
+ "atomic-waker",
2046
+ "bytes",
2047
+ "futures-channel",
2048
+ "futures-core",
2049
+ "h2",
2050
+ "http",
2051
+ "http-body",
2052
+ "httparse",
2053
+ "itoa",
2054
+ "pin-project-lite",
2055
+ "pin-utils",
2056
+ "smallvec",
2057
+ "tokio",
2058
+ "want",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "hyper-rustls"
2063
+ version = "0.27.7"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
2066
+ dependencies = [
2067
+ "http",
2068
+ "hyper",
2069
+ "hyper-util",
2070
+ "rustls",
2071
+ "rustls-pki-types",
2072
+ "tokio",
2073
+ "tokio-rustls",
2074
+ "tower-service",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "hyper-tls"
2079
+ version = "0.6.0"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
2082
+ dependencies = [
2083
+ "bytes",
2084
+ "http-body-util",
2085
+ "hyper",
2086
+ "hyper-util",
2087
+ "native-tls",
2088
+ "tokio",
2089
+ "tokio-native-tls",
2090
+ "tower-service",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "hyper-util"
2095
+ version = "0.1.20"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
2098
+ dependencies = [
2099
+ "base64",
2100
+ "bytes",
2101
+ "futures-channel",
2102
+ "futures-util",
2103
+ "http",
2104
+ "http-body",
2105
+ "hyper",
2106
+ "ipnet",
2107
+ "libc",
2108
+ "percent-encoding",
2109
+ "pin-project-lite",
2110
+ "socket2",
2111
+ "system-configuration",
2112
+ "tokio",
2113
+ "tower-service",
2114
+ "tracing",
2115
+ "windows-registry",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "iana-time-zone"
2120
+ version = "0.1.65"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
2123
+ dependencies = [
2124
+ "android_system_properties",
2125
+ "core-foundation-sys",
2126
+ "iana-time-zone-haiku",
2127
+ "js-sys",
2128
+ "log",
2129
+ "wasm-bindgen",
2130
+ "windows-core",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "iana-time-zone-haiku"
2135
+ version = "0.1.2"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2138
+ dependencies = [
2139
+ "cc",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "icu_collections"
2144
+ version = "2.1.1"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
2147
+ dependencies = [
2148
+ "displaydoc",
2149
+ "potential_utf",
2150
+ "yoke",
2151
+ "zerofrom",
2152
+ "zerovec",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "icu_locale_core"
2157
+ version = "2.1.1"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
2160
+ dependencies = [
2161
+ "displaydoc",
2162
+ "litemap",
2163
+ "tinystr",
2164
+ "writeable",
2165
+ "zerovec",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "icu_normalizer"
2170
+ version = "2.1.1"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
2173
+ dependencies = [
2174
+ "icu_collections",
2175
+ "icu_normalizer_data",
2176
+ "icu_properties",
2177
+ "icu_provider",
2178
+ "smallvec",
2179
+ "zerovec",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "icu_normalizer_data"
2184
+ version = "2.1.1"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
2187
+
2188
+ [[package]]
2189
+ name = "icu_properties"
2190
+ version = "2.1.2"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
2193
+ dependencies = [
2194
+ "icu_collections",
2195
+ "icu_locale_core",
2196
+ "icu_properties_data",
2197
+ "icu_provider",
2198
+ "zerotrie",
2199
+ "zerovec",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "icu_properties_data"
2204
+ version = "2.1.2"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
2207
+
2208
+ [[package]]
2209
+ name = "icu_provider"
2210
+ version = "2.1.1"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
2213
+ dependencies = [
2214
+ "displaydoc",
2215
+ "icu_locale_core",
2216
+ "writeable",
2217
+ "yoke",
2218
+ "zerofrom",
2219
+ "zerotrie",
2220
+ "zerovec",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "id-arena"
2225
+ version = "2.3.0"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
2228
+
2229
+ [[package]]
2230
+ name = "ident_case"
2231
+ version = "1.0.1"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2234
+
2235
+ [[package]]
2236
+ name = "idna"
2237
+ version = "1.1.0"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2240
+ dependencies = [
2241
+ "idna_adapter",
2242
+ "smallvec",
2243
+ "utf8_iter",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "idna_adapter"
2248
+ version = "1.2.1"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2251
+ dependencies = [
2252
+ "icu_normalizer",
2253
+ "icu_properties",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "impl-codec"
2258
+ version = "0.6.0"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f"
2261
+ dependencies = [
2262
+ "parity-scale-codec",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "impl-trait-for-tuples"
2267
+ version = "0.2.3"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9"
2270
+ dependencies = [
2271
+ "proc-macro2",
2272
+ "quote",
2273
+ "syn 2.0.117",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "indexmap"
2278
+ version = "1.9.3"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2281
+ dependencies = [
2282
+ "autocfg",
2283
+ "hashbrown 0.12.3",
2284
+ "serde",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "indexmap"
2289
+ version = "2.13.0"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
2292
+ dependencies = [
2293
+ "equivalent",
2294
+ "hashbrown 0.16.1",
2295
+ "serde",
2296
+ "serde_core",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "indoc"
2301
+ version = "2.0.7"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2304
+ dependencies = [
2305
+ "rustversion",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "ipnet"
2310
+ version = "2.12.0"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2313
+
2314
+ [[package]]
2315
+ name = "iri-string"
2316
+ version = "0.7.12"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
2319
+ dependencies = [
2320
+ "memchr",
2321
+ "serde",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "is-terminal"
2326
+ version = "0.4.17"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
2329
+ dependencies = [
2330
+ "hermit-abi",
2331
+ "libc",
2332
+ "windows-sys 0.61.2",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "itertools"
2337
+ version = "0.10.5"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2340
+ dependencies = [
2341
+ "either",
2342
+ ]
2343
+
2344
+ [[package]]
2345
+ name = "itertools"
2346
+ version = "0.13.0"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2349
+ dependencies = [
2350
+ "either",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "itertools"
2355
+ version = "0.14.0"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2358
+ dependencies = [
2359
+ "either",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "itoa"
2364
+ version = "1.0.18"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2367
+
2368
+ [[package]]
2369
+ name = "js-sys"
2370
+ version = "0.3.93"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "797146bb2677299a1eb6b7b50a890f4c361b29ef967addf5b2fa45dae1bb6d7d"
2373
+ dependencies = [
2374
+ "cfg-if",
2375
+ "futures-util",
2376
+ "once_cell",
2377
+ "wasm-bindgen",
2378
+ ]
2379
+
2380
+ [[package]]
2381
+ name = "k256"
2382
+ version = "0.13.4"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
2385
+ dependencies = [
2386
+ "cfg-if",
2387
+ "ecdsa",
2388
+ "elliptic-curve",
2389
+ "once_cell",
2390
+ "serdect",
2391
+ "sha2",
2392
+ "signature",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "keccak"
2397
+ version = "0.1.6"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
2400
+ dependencies = [
2401
+ "cpufeatures",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "keccak-asm"
2406
+ version = "0.1.6"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "fa468878266ad91431012b3e5ef1bf9b170eab22883503a318d46857afa4579a"
2409
+ dependencies = [
2410
+ "digest 0.10.7",
2411
+ "sha3-asm",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "leb128fmt"
2416
+ version = "0.1.0"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2419
+
2420
+ [[package]]
2421
+ name = "libc"
2422
+ version = "0.2.183"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
2425
+
2426
+ [[package]]
2427
+ name = "libloading"
2428
+ version = "0.9.0"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
2431
+ dependencies = [
2432
+ "cfg-if",
2433
+ "windows-link",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "libm"
2438
+ version = "0.2.16"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2441
+
2442
+ [[package]]
2443
+ name = "libsqlite3-sys"
2444
+ version = "0.30.1"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
2447
+ dependencies = [
2448
+ "cc",
2449
+ "pkg-config",
2450
+ "vcpkg",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "linux-raw-sys"
2455
+ version = "0.12.1"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2458
+
2459
+ [[package]]
2460
+ name = "litemap"
2461
+ version = "0.8.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2464
+
2465
+ [[package]]
2466
+ name = "lock_api"
2467
+ version = "0.4.14"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2470
+ dependencies = [
2471
+ "scopeguard",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "log"
2476
+ version = "0.4.29"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2479
+
2480
+ [[package]]
2481
+ name = "macro-string"
2482
+ version = "0.1.4"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3"
2485
+ dependencies = [
2486
+ "proc-macro2",
2487
+ "quote",
2488
+ "syn 2.0.117",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "memchr"
2493
+ version = "2.8.0"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2496
+
2497
+ [[package]]
2498
+ name = "memoffset"
2499
+ version = "0.9.1"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2502
+ dependencies = [
2503
+ "autocfg",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "mime"
2508
+ version = "0.3.17"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2511
+
2512
+ [[package]]
2513
+ name = "minicov"
2514
+ version = "0.3.8"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
2517
+ dependencies = [
2518
+ "cc",
2519
+ "walkdir",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "mio"
2524
+ version = "1.2.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
2527
+ dependencies = [
2528
+ "libc",
2529
+ "wasi",
2530
+ "windows-sys 0.61.2",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "napi"
2535
+ version = "3.8.4"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
2538
+ dependencies = [
2539
+ "bitflags",
2540
+ "ctor",
2541
+ "futures",
2542
+ "napi-build",
2543
+ "napi-sys",
2544
+ "nohash-hasher",
2545
+ "rustc-hash",
2546
+ "serde",
2547
+ "serde_json",
2548
+ "tokio",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "napi-build"
2553
+ version = "2.3.1"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
2556
+
2557
+ [[package]]
2558
+ name = "napi-derive"
2559
+ version = "3.5.3"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
2562
+ dependencies = [
2563
+ "convert_case 0.11.0",
2564
+ "ctor",
2565
+ "napi-derive-backend",
2566
+ "proc-macro2",
2567
+ "quote",
2568
+ "syn 2.0.117",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "napi-derive-backend"
2573
+ version = "5.0.2"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
2576
+ dependencies = [
2577
+ "convert_case 0.11.0",
2578
+ "proc-macro2",
2579
+ "quote",
2580
+ "semver 1.0.27",
2581
+ "syn 2.0.117",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "napi-sys"
2586
+ version = "3.2.1"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
2589
+ dependencies = [
2590
+ "libloading",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "native-tls"
2595
+ version = "0.2.18"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
2598
+ dependencies = [
2599
+ "libc",
2600
+ "log",
2601
+ "openssl",
2602
+ "openssl-probe",
2603
+ "openssl-sys",
2604
+ "schannel",
2605
+ "security-framework",
2606
+ "security-framework-sys",
2607
+ "tempfile",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "nohash-hasher"
2612
+ version = "0.2.0"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2615
+
2616
+ [[package]]
2617
+ name = "nu-ansi-term"
2618
+ version = "0.50.3"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2621
+ dependencies = [
2622
+ "windows-sys 0.61.2",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "num-bigint"
2627
+ version = "0.4.6"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2630
+ dependencies = [
2631
+ "num-integer",
2632
+ "num-traits",
2633
+ ]
2634
+
2635
+ [[package]]
2636
+ name = "num-conv"
2637
+ version = "0.2.1"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
2640
+
2641
+ [[package]]
2642
+ name = "num-integer"
2643
+ version = "0.1.46"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2646
+ dependencies = [
2647
+ "num-traits",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "num-traits"
2652
+ version = "0.2.19"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2655
+ dependencies = [
2656
+ "autocfg",
2657
+ "libm",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "num_cpus"
2662
+ version = "1.17.0"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2665
+ dependencies = [
2666
+ "hermit-abi",
2667
+ "libc",
2668
+ ]
2669
+
2670
+ [[package]]
2671
+ name = "nybbles"
2672
+ version = "0.4.8"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "0d49ff0c0d00d4a502b39df9af3a525e1efeb14b9dabb5bb83335284c1309210"
2675
+ dependencies = [
2676
+ "alloy-rlp",
2677
+ "cfg-if",
2678
+ "proptest",
2679
+ "ruint",
2680
+ "serde",
2681
+ "smallvec",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "once_cell"
2686
+ version = "1.21.4"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2689
+
2690
+ [[package]]
2691
+ name = "oorandom"
2692
+ version = "11.1.5"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2695
+
2696
+ [[package]]
2697
+ name = "openssl"
2698
+ version = "0.10.76"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
2701
+ dependencies = [
2702
+ "bitflags",
2703
+ "cfg-if",
2704
+ "foreign-types",
2705
+ "libc",
2706
+ "once_cell",
2707
+ "openssl-macros",
2708
+ "openssl-sys",
2709
+ ]
2710
+
2711
+ [[package]]
2712
+ name = "openssl-macros"
2713
+ version = "0.1.1"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2716
+ dependencies = [
2717
+ "proc-macro2",
2718
+ "quote",
2719
+ "syn 2.0.117",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "openssl-probe"
2724
+ version = "0.2.1"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2727
+
2728
+ [[package]]
2729
+ name = "openssl-sys"
2730
+ version = "0.9.112"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
2733
+ dependencies = [
2734
+ "cc",
2735
+ "libc",
2736
+ "pkg-config",
2737
+ "vcpkg",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "parity-scale-codec"
2742
+ version = "3.7.5"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa"
2745
+ dependencies = [
2746
+ "arrayvec",
2747
+ "bitvec",
2748
+ "byte-slice-cast",
2749
+ "const_format",
2750
+ "impl-trait-for-tuples",
2751
+ "parity-scale-codec-derive",
2752
+ "rustversion",
2753
+ "serde",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "parity-scale-codec-derive"
2758
+ version = "3.7.5"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a"
2761
+ dependencies = [
2762
+ "proc-macro-crate",
2763
+ "proc-macro2",
2764
+ "quote",
2765
+ "syn 2.0.117",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "parking_lot"
2770
+ version = "0.12.5"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2773
+ dependencies = [
2774
+ "lock_api",
2775
+ "parking_lot_core",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "parking_lot_core"
2780
+ version = "0.9.12"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2783
+ dependencies = [
2784
+ "cfg-if",
2785
+ "libc",
2786
+ "redox_syscall",
2787
+ "smallvec",
2788
+ "windows-link",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "paste"
2793
+ version = "1.0.15"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2796
+
2797
+ [[package]]
2798
+ name = "percent-encoding"
2799
+ version = "2.3.2"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2802
+
2803
+ [[package]]
2804
+ name = "pest"
2805
+ version = "2.8.6"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
2808
+ dependencies = [
2809
+ "memchr",
2810
+ "ucd-trie",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "pin-project-lite"
2815
+ version = "0.2.17"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2818
+
2819
+ [[package]]
2820
+ name = "pin-utils"
2821
+ version = "0.1.0"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2824
+
2825
+ [[package]]
2826
+ name = "pkcs8"
2827
+ version = "0.10.2"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2830
+ dependencies = [
2831
+ "der",
2832
+ "spki",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "pkg-config"
2837
+ version = "0.3.32"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2840
+
2841
+ [[package]]
2842
+ name = "plotters"
2843
+ version = "0.3.7"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2846
+ dependencies = [
2847
+ "num-traits",
2848
+ "plotters-backend",
2849
+ "plotters-svg",
2850
+ "wasm-bindgen",
2851
+ "web-sys",
2852
+ ]
2853
+
2854
+ [[package]]
2855
+ name = "plotters-backend"
2856
+ version = "0.3.7"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2859
+
2860
+ [[package]]
2861
+ name = "plotters-svg"
2862
+ version = "0.3.7"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2865
+ dependencies = [
2866
+ "plotters-backend",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "portable-atomic"
2871
+ version = "1.13.1"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2874
+
2875
+ [[package]]
2876
+ name = "potential_utf"
2877
+ version = "0.1.4"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2880
+ dependencies = [
2881
+ "zerovec",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "powerfmt"
2886
+ version = "0.2.0"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2889
+
2890
+ [[package]]
2891
+ name = "ppv-lite86"
2892
+ version = "0.2.21"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2895
+ dependencies = [
2896
+ "zerocopy",
2897
+ ]
2898
+
2899
+ [[package]]
2900
+ name = "prettyplease"
2901
+ version = "0.2.37"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2904
+ dependencies = [
2905
+ "proc-macro2",
2906
+ "syn 2.0.117",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "primitive-types"
2911
+ version = "0.12.2"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2"
2914
+ dependencies = [
2915
+ "fixed-hash",
2916
+ "impl-codec",
2917
+ "uint",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "proc-macro-crate"
2922
+ version = "3.5.0"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2925
+ dependencies = [
2926
+ "toml_edit",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "proc-macro-error-attr2"
2931
+ version = "2.0.0"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2934
+ dependencies = [
2935
+ "proc-macro2",
2936
+ "quote",
2937
+ ]
2938
+
2939
+ [[package]]
2940
+ name = "proc-macro-error2"
2941
+ version = "2.0.1"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2944
+ dependencies = [
2945
+ "proc-macro-error-attr2",
2946
+ "proc-macro2",
2947
+ "quote",
2948
+ "syn 2.0.117",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "proc-macro2"
2953
+ version = "1.0.106"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2956
+ dependencies = [
2957
+ "unicode-ident",
2958
+ ]
2959
+
2960
+ [[package]]
2961
+ name = "proptest"
2962
+ version = "1.11.0"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2965
+ dependencies = [
2966
+ "bit-set",
2967
+ "bit-vec",
2968
+ "bitflags",
2969
+ "num-traits",
2970
+ "rand 0.9.2",
2971
+ "rand_chacha 0.9.0",
2972
+ "rand_xorshift",
2973
+ "regex-syntax",
2974
+ "rusty-fork",
2975
+ "tempfile",
2976
+ "unarray",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "pyo3"
2981
+ version = "0.24.2"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2984
+ dependencies = [
2985
+ "cfg-if",
2986
+ "indoc",
2987
+ "libc",
2988
+ "memoffset",
2989
+ "once_cell",
2990
+ "portable-atomic",
2991
+ "pyo3-build-config",
2992
+ "pyo3-ffi",
2993
+ "pyo3-macros",
2994
+ "unindent",
2995
+ ]
2996
+
2997
+ [[package]]
2998
+ name = "pyo3-build-config"
2999
+ version = "0.24.2"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
3002
+ dependencies = [
3003
+ "once_cell",
3004
+ "target-lexicon",
3005
+ ]
3006
+
3007
+ [[package]]
3008
+ name = "pyo3-ffi"
3009
+ version = "0.24.2"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
3012
+ dependencies = [
3013
+ "libc",
3014
+ "pyo3-build-config",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "pyo3-macros"
3019
+ version = "0.24.2"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
3022
+ dependencies = [
3023
+ "proc-macro2",
3024
+ "pyo3-macros-backend",
3025
+ "quote",
3026
+ "syn 2.0.117",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "pyo3-macros-backend"
3031
+ version = "0.24.2"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
3034
+ dependencies = [
3035
+ "heck",
3036
+ "proc-macro2",
3037
+ "pyo3-build-config",
3038
+ "quote",
3039
+ "syn 2.0.117",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "quick-error"
3044
+ version = "1.2.3"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
3047
+
3048
+ [[package]]
3049
+ name = "quote"
3050
+ version = "1.0.45"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
3053
+ dependencies = [
3054
+ "proc-macro2",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "r-efi"
3059
+ version = "5.3.0"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3062
+
3063
+ [[package]]
3064
+ name = "r-efi"
3065
+ version = "6.0.0"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
3068
+
3069
+ [[package]]
3070
+ name = "radium"
3071
+ version = "0.7.0"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
3074
+
3075
+ [[package]]
3076
+ name = "rand"
3077
+ version = "0.8.5"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
3080
+ dependencies = [
3081
+ "libc",
3082
+ "rand_chacha 0.3.1",
3083
+ "rand_core 0.6.4",
3084
+ "serde",
3085
+ ]
3086
+
3087
+ [[package]]
3088
+ name = "rand"
3089
+ version = "0.9.2"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3092
+ dependencies = [
3093
+ "rand_chacha 0.9.0",
3094
+ "rand_core 0.9.5",
3095
+ "serde",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "rand_chacha"
3100
+ version = "0.3.1"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
3103
+ dependencies = [
3104
+ "ppv-lite86",
3105
+ "rand_core 0.6.4",
3106
+ ]
3107
+
3108
+ [[package]]
3109
+ name = "rand_chacha"
3110
+ version = "0.9.0"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3113
+ dependencies = [
3114
+ "ppv-lite86",
3115
+ "rand_core 0.9.5",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "rand_core"
3120
+ version = "0.6.4"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3123
+ dependencies = [
3124
+ "getrandom 0.2.17",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "rand_core"
3129
+ version = "0.9.5"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
3132
+ dependencies = [
3133
+ "getrandom 0.3.4",
3134
+ "serde",
3135
+ ]
3136
+
3137
+ [[package]]
3138
+ name = "rand_xorshift"
3139
+ version = "0.4.0"
3140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3141
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
3142
+ dependencies = [
3143
+ "rand_core 0.9.5",
3144
+ ]
3145
+
3146
+ [[package]]
3147
+ name = "rapidhash"
3148
+ version = "4.4.1"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "b5e48930979c155e2f33aa36ab3119b5ee81332beb6482199a8ecd6029b80b59"
3151
+ dependencies = [
3152
+ "rustversion",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "rayon"
3157
+ version = "1.11.0"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3160
+ dependencies = [
3161
+ "either",
3162
+ "rayon-core",
3163
+ ]
3164
+
3165
+ [[package]]
3166
+ name = "rayon-core"
3167
+ version = "1.13.0"
3168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3169
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
3170
+ dependencies = [
3171
+ "crossbeam-deque",
3172
+ "crossbeam-utils",
3173
+ ]
3174
+
3175
+ [[package]]
3176
+ name = "redox_syscall"
3177
+ version = "0.5.18"
3178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3179
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3180
+ dependencies = [
3181
+ "bitflags",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "ref-cast"
3186
+ version = "1.0.25"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
3189
+ dependencies = [
3190
+ "ref-cast-impl",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "ref-cast-impl"
3195
+ version = "1.0.25"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
3198
+ dependencies = [
3199
+ "proc-macro2",
3200
+ "quote",
3201
+ "syn 2.0.117",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "regex"
3206
+ version = "1.12.3"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
3209
+ dependencies = [
3210
+ "aho-corasick",
3211
+ "memchr",
3212
+ "regex-automata",
3213
+ "regex-syntax",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "regex-automata"
3218
+ version = "0.4.14"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
3221
+ dependencies = [
3222
+ "aho-corasick",
3223
+ "memchr",
3224
+ "regex-syntax",
3225
+ ]
3226
+
3227
+ [[package]]
3228
+ name = "regex-syntax"
3229
+ version = "0.8.10"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
3232
+
3233
+ [[package]]
3234
+ name = "reqwest"
3235
+ version = "0.12.28"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3238
+ dependencies = [
3239
+ "base64",
3240
+ "bytes",
3241
+ "encoding_rs",
3242
+ "futures-core",
3243
+ "h2",
3244
+ "http",
3245
+ "http-body",
3246
+ "http-body-util",
3247
+ "hyper",
3248
+ "hyper-rustls",
3249
+ "hyper-tls",
3250
+ "hyper-util",
3251
+ "js-sys",
3252
+ "log",
3253
+ "mime",
3254
+ "native-tls",
3255
+ "percent-encoding",
3256
+ "pin-project-lite",
3257
+ "rustls-pki-types",
3258
+ "serde",
3259
+ "serde_json",
3260
+ "serde_urlencoded",
3261
+ "sync_wrapper",
3262
+ "tokio",
3263
+ "tokio-native-tls",
3264
+ "tower",
3265
+ "tower-http",
3266
+ "tower-service",
3267
+ "url",
3268
+ "wasm-bindgen",
3269
+ "wasm-bindgen-futures",
3270
+ "web-sys",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "rfc6979"
3275
+ version = "0.4.0"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3278
+ dependencies = [
3279
+ "hmac",
3280
+ "subtle",
3281
+ ]
3282
+
3283
+ [[package]]
3284
+ name = "ring"
3285
+ version = "0.17.14"
3286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3287
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3288
+ dependencies = [
3289
+ "cc",
3290
+ "cfg-if",
3291
+ "getrandom 0.2.17",
3292
+ "libc",
3293
+ "untrusted",
3294
+ "windows-sys 0.52.0",
3295
+ ]
3296
+
3297
+ [[package]]
3298
+ name = "rlp"
3299
+ version = "0.5.2"
3300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3301
+ checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec"
3302
+ dependencies = [
3303
+ "bytes",
3304
+ "rustc-hex",
3305
+ ]
3306
+
3307
+ [[package]]
3308
+ name = "ruint"
3309
+ version = "1.17.2"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "c141e807189ad38a07276942c6623032d3753c8859c146104ac2e4d68865945a"
3312
+ dependencies = [
3313
+ "alloy-rlp",
3314
+ "ark-ff 0.3.0",
3315
+ "ark-ff 0.4.2",
3316
+ "ark-ff 0.5.0",
3317
+ "bytes",
3318
+ "fastrlp 0.3.1",
3319
+ "fastrlp 0.4.0",
3320
+ "num-bigint",
3321
+ "num-integer",
3322
+ "num-traits",
3323
+ "parity-scale-codec",
3324
+ "primitive-types",
3325
+ "proptest",
3326
+ "rand 0.8.5",
3327
+ "rand 0.9.2",
3328
+ "rlp",
3329
+ "ruint-macro",
3330
+ "serde_core",
3331
+ "valuable",
3332
+ "zeroize",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "ruint-macro"
3337
+ version = "1.2.1"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18"
3340
+
3341
+ [[package]]
3342
+ name = "rusqlite"
3343
+ version = "0.32.1"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
3346
+ dependencies = [
3347
+ "bitflags",
3348
+ "fallible-iterator",
3349
+ "fallible-streaming-iterator",
3350
+ "hashlink",
3351
+ "libsqlite3-sys",
3352
+ "smallvec",
3353
+ ]
3354
+
3355
+ [[package]]
3356
+ name = "rustc-hash"
3357
+ version = "2.1.2"
3358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3359
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
3360
+
3361
+ [[package]]
3362
+ name = "rustc-hex"
3363
+ version = "2.1.0"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
3366
+
3367
+ [[package]]
3368
+ name = "rustc_version"
3369
+ version = "0.3.3"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
3372
+ dependencies = [
3373
+ "semver 0.11.0",
3374
+ ]
3375
+
3376
+ [[package]]
3377
+ name = "rustc_version"
3378
+ version = "0.4.1"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3381
+ dependencies = [
3382
+ "semver 1.0.27",
3383
+ ]
3384
+
3385
+ [[package]]
3386
+ name = "rustix"
3387
+ version = "1.1.4"
3388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3389
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3390
+ dependencies = [
3391
+ "bitflags",
3392
+ "errno",
3393
+ "libc",
3394
+ "linux-raw-sys",
3395
+ "windows-sys 0.61.2",
3396
+ ]
3397
+
3398
+ [[package]]
3399
+ name = "rustls"
3400
+ version = "0.23.37"
3401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3402
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
3403
+ dependencies = [
3404
+ "once_cell",
3405
+ "rustls-pki-types",
3406
+ "rustls-webpki",
3407
+ "subtle",
3408
+ "zeroize",
3409
+ ]
3410
+
3411
+ [[package]]
3412
+ name = "rustls-pki-types"
3413
+ version = "1.14.0"
3414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3415
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
3416
+ dependencies = [
3417
+ "zeroize",
3418
+ ]
3419
+
3420
+ [[package]]
3421
+ name = "rustls-webpki"
3422
+ version = "0.103.10"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
3425
+ dependencies = [
3426
+ "ring",
3427
+ "rustls-pki-types",
3428
+ "untrusted",
3429
+ ]
3430
+
3431
+ [[package]]
3432
+ name = "rustversion"
3433
+ version = "1.0.22"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3436
+
3437
+ [[package]]
3438
+ name = "rusty-fork"
3439
+ version = "0.3.1"
3440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3441
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
3442
+ dependencies = [
3443
+ "fnv",
3444
+ "quick-error",
3445
+ "tempfile",
3446
+ "wait-timeout",
3447
+ ]
3448
+
3449
+ [[package]]
3450
+ name = "ryu"
3451
+ version = "1.0.23"
3452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3453
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3454
+
3455
+ [[package]]
3456
+ name = "same-file"
3457
+ version = "1.0.6"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3460
+ dependencies = [
3461
+ "winapi-util",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "schannel"
3466
+ version = "0.1.29"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3469
+ dependencies = [
3470
+ "windows-sys 0.61.2",
3471
+ ]
3472
+
3473
+ [[package]]
3474
+ name = "schemars"
3475
+ version = "0.9.0"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3478
+ dependencies = [
3479
+ "dyn-clone",
3480
+ "ref-cast",
3481
+ "serde",
3482
+ "serde_json",
3483
+ ]
3484
+
3485
+ [[package]]
3486
+ name = "schemars"
3487
+ version = "1.2.1"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
3490
+ dependencies = [
3491
+ "dyn-clone",
3492
+ "ref-cast",
3493
+ "serde",
3494
+ "serde_json",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "scopeguard"
3499
+ version = "1.2.0"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3502
+
3503
+ [[package]]
3504
+ name = "sec1"
3505
+ version = "0.7.3"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
3508
+ dependencies = [
3509
+ "base16ct",
3510
+ "der",
3511
+ "generic-array",
3512
+ "pkcs8",
3513
+ "serdect",
3514
+ "subtle",
3515
+ "zeroize",
3516
+ ]
3517
+
3518
+ [[package]]
3519
+ name = "secp256k1"
3520
+ version = "0.30.0"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252"
3523
+ dependencies = [
3524
+ "bitcoin_hashes",
3525
+ "rand 0.8.5",
3526
+ "secp256k1-sys",
3527
+ "serde",
3528
+ ]
3529
+
3530
+ [[package]]
3531
+ name = "secp256k1-sys"
3532
+ version = "0.10.1"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9"
3535
+ dependencies = [
3536
+ "cc",
3537
+ ]
3538
+
3539
+ [[package]]
3540
+ name = "security-framework"
3541
+ version = "3.7.0"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3544
+ dependencies = [
3545
+ "bitflags",
3546
+ "core-foundation 0.10.1",
3547
+ "core-foundation-sys",
3548
+ "libc",
3549
+ "security-framework-sys",
3550
+ ]
3551
+
3552
+ [[package]]
3553
+ name = "security-framework-sys"
3554
+ version = "2.17.0"
3555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3556
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3557
+ dependencies = [
3558
+ "core-foundation-sys",
3559
+ "libc",
3560
+ ]
3561
+
3562
+ [[package]]
3563
+ name = "semver"
3564
+ version = "0.11.0"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
3567
+ dependencies = [
3568
+ "semver-parser",
3569
+ ]
3570
+
3571
+ [[package]]
3572
+ name = "semver"
3573
+ version = "1.0.27"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3576
+
3577
+ [[package]]
3578
+ name = "semver-parser"
3579
+ version = "0.10.3"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "9900206b54a3527fdc7b8a938bffd94a568bac4f4aa8113b209df75a09c0dec2"
3582
+ dependencies = [
3583
+ "pest",
3584
+ ]
3585
+
3586
+ [[package]]
3587
+ name = "serde"
3588
+ version = "1.0.228"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3591
+ dependencies = [
3592
+ "serde_core",
3593
+ "serde_derive",
3594
+ ]
3595
+
3596
+ [[package]]
3597
+ name = "serde-wasm-bindgen"
3598
+ version = "0.6.5"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
3601
+ dependencies = [
3602
+ "js-sys",
3603
+ "serde",
3604
+ "wasm-bindgen",
3605
+ ]
3606
+
3607
+ [[package]]
3608
+ name = "serde_core"
3609
+ version = "1.0.228"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3612
+ dependencies = [
3613
+ "serde_derive",
3614
+ ]
3615
+
3616
+ [[package]]
3617
+ name = "serde_derive"
3618
+ version = "1.0.228"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3621
+ dependencies = [
3622
+ "proc-macro2",
3623
+ "quote",
3624
+ "syn 2.0.117",
3625
+ ]
3626
+
3627
+ [[package]]
3628
+ name = "serde_json"
3629
+ version = "1.0.149"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3632
+ dependencies = [
3633
+ "itoa",
3634
+ "memchr",
3635
+ "serde",
3636
+ "serde_core",
3637
+ "zmij",
3638
+ ]
3639
+
3640
+ [[package]]
3641
+ name = "serde_urlencoded"
3642
+ version = "0.7.1"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3645
+ dependencies = [
3646
+ "form_urlencoded",
3647
+ "itoa",
3648
+ "ryu",
3649
+ "serde",
3650
+ ]
3651
+
3652
+ [[package]]
3653
+ name = "serde_with"
3654
+ version = "3.18.0"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f"
3657
+ dependencies = [
3658
+ "base64",
3659
+ "chrono",
3660
+ "hex",
3661
+ "indexmap 1.9.3",
3662
+ "indexmap 2.13.0",
3663
+ "schemars 0.9.0",
3664
+ "schemars 1.2.1",
3665
+ "serde_core",
3666
+ "serde_json",
3667
+ "serde_with_macros",
3668
+ "time",
3669
+ ]
3670
+
3671
+ [[package]]
3672
+ name = "serde_with_macros"
3673
+ version = "3.18.0"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65"
3676
+ dependencies = [
3677
+ "darling",
3678
+ "proc-macro2",
3679
+ "quote",
3680
+ "syn 2.0.117",
3681
+ ]
3682
+
3683
+ [[package]]
3684
+ name = "serdect"
3685
+ version = "0.2.0"
3686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3687
+ checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177"
3688
+ dependencies = [
3689
+ "base16ct",
3690
+ "serde",
3691
+ ]
3692
+
3693
+ [[package]]
3694
+ name = "sha2"
3695
+ version = "0.10.9"
3696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3697
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3698
+ dependencies = [
3699
+ "cfg-if",
3700
+ "cpufeatures",
3701
+ "digest 0.10.7",
3702
+ ]
3703
+
3704
+ [[package]]
3705
+ name = "sha3"
3706
+ version = "0.10.8"
3707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3708
+ checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
3709
+ dependencies = [
3710
+ "digest 0.10.7",
3711
+ "keccak",
3712
+ ]
3713
+
3714
+ [[package]]
3715
+ name = "sha3-asm"
3716
+ version = "0.1.6"
3717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3718
+ checksum = "59cbb88c189d6352cc8ae96a39d19c7ecad8f7330b29461187f2587fdc2988d5"
3719
+ dependencies = [
3720
+ "cc",
3721
+ "cfg-if",
3722
+ ]
3723
+
3724
+ [[package]]
3725
+ name = "shlex"
3726
+ version = "1.3.0"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3729
+
3730
+ [[package]]
3731
+ name = "signal-hook-registry"
3732
+ version = "1.4.8"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3735
+ dependencies = [
3736
+ "errno",
3737
+ "libc",
3738
+ ]
3739
+
3740
+ [[package]]
3741
+ name = "signature"
3742
+ version = "2.2.0"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3745
+ dependencies = [
3746
+ "digest 0.10.7",
3747
+ "rand_core 0.6.4",
3748
+ ]
3749
+
3750
+ [[package]]
3751
+ name = "slab"
3752
+ version = "0.4.12"
3753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3754
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3755
+
3756
+ [[package]]
3757
+ name = "smallvec"
3758
+ version = "1.15.1"
3759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3760
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3761
+ dependencies = [
3762
+ "serde",
3763
+ ]
3764
+
3765
+ [[package]]
3766
+ name = "socket2"
3767
+ version = "0.6.3"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3770
+ dependencies = [
3771
+ "libc",
3772
+ "windows-sys 0.61.2",
3773
+ ]
3774
+
3775
+ [[package]]
3776
+ name = "spki"
3777
+ version = "0.7.3"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3780
+ dependencies = [
3781
+ "base64ct",
3782
+ "der",
3783
+ ]
3784
+
3785
+ [[package]]
3786
+ name = "stable_deref_trait"
3787
+ version = "1.2.1"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3790
+
3791
+ [[package]]
3792
+ name = "static_assertions"
3793
+ version = "1.1.0"
3794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3795
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3796
+
3797
+ [[package]]
3798
+ name = "strsim"
3799
+ version = "0.11.1"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3802
+
3803
+ [[package]]
3804
+ name = "subtle"
3805
+ version = "2.6.1"
3806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3807
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3808
+
3809
+ [[package]]
3810
+ name = "syn"
3811
+ version = "1.0.109"
3812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3813
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3814
+ dependencies = [
3815
+ "proc-macro2",
3816
+ "quote",
3817
+ "unicode-ident",
3818
+ ]
3819
+
3820
+ [[package]]
3821
+ name = "syn"
3822
+ version = "2.0.117"
3823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3824
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3825
+ dependencies = [
3826
+ "proc-macro2",
3827
+ "quote",
3828
+ "unicode-ident",
3829
+ ]
3830
+
3831
+ [[package]]
3832
+ name = "syn-solidity"
3833
+ version = "1.5.7"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "53f425ae0b12e2f5ae65542e00898d500d4d318b4baf09f40fd0d410454e9947"
3836
+ dependencies = [
3837
+ "paste",
3838
+ "proc-macro2",
3839
+ "quote",
3840
+ "syn 2.0.117",
3841
+ ]
3842
+
3843
+ [[package]]
3844
+ name = "sync_wrapper"
3845
+ version = "1.0.2"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3848
+ dependencies = [
3849
+ "futures-core",
3850
+ ]
3851
+
3852
+ [[package]]
3853
+ name = "synstructure"
3854
+ version = "0.13.2"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3857
+ dependencies = [
3858
+ "proc-macro2",
3859
+ "quote",
3860
+ "syn 2.0.117",
3861
+ ]
3862
+
3863
+ [[package]]
3864
+ name = "system-configuration"
3865
+ version = "0.7.0"
3866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3867
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
3868
+ dependencies = [
3869
+ "bitflags",
3870
+ "core-foundation 0.9.4",
3871
+ "system-configuration-sys",
3872
+ ]
3873
+
3874
+ [[package]]
3875
+ name = "system-configuration-sys"
3876
+ version = "0.6.0"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3879
+ dependencies = [
3880
+ "core-foundation-sys",
3881
+ "libc",
3882
+ ]
3883
+
3884
+ [[package]]
3885
+ name = "tap"
3886
+ version = "1.0.1"
3887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3888
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3889
+
3890
+ [[package]]
3891
+ name = "target-lexicon"
3892
+ version = "0.13.5"
3893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3894
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3895
+
3896
+ [[package]]
3897
+ name = "tempfile"
3898
+ version = "3.27.0"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3901
+ dependencies = [
3902
+ "fastrand",
3903
+ "getrandom 0.4.2",
3904
+ "once_cell",
3905
+ "rustix",
3906
+ "windows-sys 0.61.2",
3907
+ ]
3908
+
3909
+ [[package]]
3910
+ name = "thiserror"
3911
+ version = "2.0.18"
3912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3913
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3914
+ dependencies = [
3915
+ "thiserror-impl",
3916
+ ]
3917
+
3918
+ [[package]]
3919
+ name = "thiserror-impl"
3920
+ version = "2.0.18"
3921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3922
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3923
+ dependencies = [
3924
+ "proc-macro2",
3925
+ "quote",
3926
+ "syn 2.0.117",
3927
+ ]
3928
+
3929
+ [[package]]
3930
+ name = "threadpool"
3931
+ version = "1.8.1"
3932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3933
+ checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
3934
+ dependencies = [
3935
+ "num_cpus",
3936
+ ]
3937
+
3938
+ [[package]]
3939
+ name = "time"
3940
+ version = "0.3.47"
3941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3942
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3943
+ dependencies = [
3944
+ "deranged",
3945
+ "itoa",
3946
+ "num-conv",
3947
+ "powerfmt",
3948
+ "serde_core",
3949
+ "time-core",
3950
+ "time-macros",
3951
+ ]
3952
+
3953
+ [[package]]
3954
+ name = "time-core"
3955
+ version = "0.1.8"
3956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3957
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3958
+
3959
+ [[package]]
3960
+ name = "time-macros"
3961
+ version = "0.2.27"
3962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3963
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3964
+ dependencies = [
3965
+ "num-conv",
3966
+ "time-core",
3967
+ ]
3968
+
3969
+ [[package]]
3970
+ name = "tinystr"
3971
+ version = "0.8.2"
3972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3973
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3974
+ dependencies = [
3975
+ "displaydoc",
3976
+ "zerovec",
3977
+ ]
3978
+
3979
+ [[package]]
3980
+ name = "tinytemplate"
3981
+ version = "1.2.1"
3982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3983
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3984
+ dependencies = [
3985
+ "serde",
3986
+ "serde_json",
3987
+ ]
3988
+
3989
+ [[package]]
3990
+ name = "tokio"
3991
+ version = "1.50.0"
3992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3993
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
3994
+ dependencies = [
3995
+ "bytes",
3996
+ "libc",
3997
+ "mio",
3998
+ "parking_lot",
3999
+ "pin-project-lite",
4000
+ "signal-hook-registry",
4001
+ "socket2",
4002
+ "tokio-macros",
4003
+ "windows-sys 0.61.2",
4004
+ ]
4005
+
4006
+ [[package]]
4007
+ name = "tokio-macros"
4008
+ version = "2.6.1"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
4011
+ dependencies = [
4012
+ "proc-macro2",
4013
+ "quote",
4014
+ "syn 2.0.117",
4015
+ ]
4016
+
4017
+ [[package]]
4018
+ name = "tokio-native-tls"
4019
+ version = "0.3.1"
4020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4021
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
4022
+ dependencies = [
4023
+ "native-tls",
4024
+ "tokio",
4025
+ ]
4026
+
4027
+ [[package]]
4028
+ name = "tokio-rustls"
4029
+ version = "0.26.4"
4030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4031
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4032
+ dependencies = [
4033
+ "rustls",
4034
+ "tokio",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "tokio-util"
4039
+ version = "0.7.18"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
4042
+ dependencies = [
4043
+ "bytes",
4044
+ "futures-core",
4045
+ "futures-sink",
4046
+ "pin-project-lite",
4047
+ "tokio",
4048
+ ]
4049
+
4050
+ [[package]]
4051
+ name = "toml_datetime"
4052
+ version = "1.1.0+spec-1.1.0"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "97251a7c317e03ad83774a8752a7e81fb6067740609f75ea2b585b569a59198f"
4055
+ dependencies = [
4056
+ "serde_core",
4057
+ ]
4058
+
4059
+ [[package]]
4060
+ name = "toml_edit"
4061
+ version = "0.25.8+spec-1.1.0"
4062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4063
+ checksum = "16bff38f1d86c47f9ff0647e6838d7bb362522bdf44006c7068c2b1e606f1f3c"
4064
+ dependencies = [
4065
+ "indexmap 2.13.0",
4066
+ "toml_datetime",
4067
+ "toml_parser",
4068
+ "winnow 1.0.1",
4069
+ ]
4070
+
4071
+ [[package]]
4072
+ name = "toml_parser"
4073
+ version = "1.1.0+spec-1.1.0"
4074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4075
+ checksum = "2334f11ee363607eb04df9b8fc8a13ca1715a72ba8662a26ac285c98aabb4011"
4076
+ dependencies = [
4077
+ "winnow 1.0.1",
4078
+ ]
4079
+
4080
+ [[package]]
4081
+ name = "tower"
4082
+ version = "0.5.3"
4083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4084
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4085
+ dependencies = [
4086
+ "futures-core",
4087
+ "futures-util",
4088
+ "pin-project-lite",
4089
+ "sync_wrapper",
4090
+ "tokio",
4091
+ "tower-layer",
4092
+ "tower-service",
4093
+ ]
4094
+
4095
+ [[package]]
4096
+ name = "tower-http"
4097
+ version = "0.6.8"
4098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4099
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
4100
+ dependencies = [
4101
+ "bitflags",
4102
+ "bytes",
4103
+ "futures-util",
4104
+ "http",
4105
+ "http-body",
4106
+ "iri-string",
4107
+ "pin-project-lite",
4108
+ "tower",
4109
+ "tower-layer",
4110
+ "tower-service",
4111
+ ]
4112
+
4113
+ [[package]]
4114
+ name = "tower-layer"
4115
+ version = "0.3.3"
4116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4117
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4118
+
4119
+ [[package]]
4120
+ name = "tower-service"
4121
+ version = "0.3.3"
4122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4123
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4124
+
4125
+ [[package]]
4126
+ name = "tracing"
4127
+ version = "0.1.44"
4128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4129
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4130
+ dependencies = [
4131
+ "pin-project-lite",
4132
+ "tracing-attributes",
4133
+ "tracing-core",
4134
+ ]
4135
+
4136
+ [[package]]
4137
+ name = "tracing-attributes"
4138
+ version = "0.1.31"
4139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4140
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
4141
+ dependencies = [
4142
+ "proc-macro2",
4143
+ "quote",
4144
+ "syn 2.0.117",
4145
+ ]
4146
+
4147
+ [[package]]
4148
+ name = "tracing-core"
4149
+ version = "0.1.36"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4152
+ dependencies = [
4153
+ "once_cell",
4154
+ ]
4155
+
4156
+ [[package]]
4157
+ name = "try-lock"
4158
+ version = "0.2.5"
4159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4160
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4161
+
4162
+ [[package]]
4163
+ name = "typenum"
4164
+ version = "1.19.0"
4165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4166
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
4167
+
4168
+ [[package]]
4169
+ name = "ucd-trie"
4170
+ version = "0.1.7"
4171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4172
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
4173
+
4174
+ [[package]]
4175
+ name = "uint"
4176
+ version = "0.9.5"
4177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4178
+ checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
4179
+ dependencies = [
4180
+ "byteorder",
4181
+ "crunchy",
4182
+ "hex",
4183
+ "static_assertions",
4184
+ ]
4185
+
4186
+ [[package]]
4187
+ name = "unarray"
4188
+ version = "0.1.4"
4189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4190
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
4191
+
4192
+ [[package]]
4193
+ name = "unicode-ident"
4194
+ version = "1.0.24"
4195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4196
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4197
+
4198
+ [[package]]
4199
+ name = "unicode-segmentation"
4200
+ version = "1.13.2"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
4203
+
4204
+ [[package]]
4205
+ name = "unicode-xid"
4206
+ version = "0.2.6"
4207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4208
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4209
+
4210
+ [[package]]
4211
+ name = "unindent"
4212
+ version = "0.2.4"
4213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4214
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
4215
+
4216
+ [[package]]
4217
+ name = "untrusted"
4218
+ version = "0.9.0"
4219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4220
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4221
+
4222
+ [[package]]
4223
+ name = "url"
4224
+ version = "2.5.8"
4225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4226
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4227
+ dependencies = [
4228
+ "form_urlencoded",
4229
+ "idna",
4230
+ "percent-encoding",
4231
+ "serde",
4232
+ ]
4233
+
4234
+ [[package]]
4235
+ name = "utf8_iter"
4236
+ version = "1.0.4"
4237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4238
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4239
+
4240
+ [[package]]
4241
+ name = "uuid"
4242
+ version = "1.23.0"
4243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4244
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
4245
+ dependencies = [
4246
+ "getrandom 0.4.2",
4247
+ "js-sys",
4248
+ "serde_core",
4249
+ "wasm-bindgen",
4250
+ ]
4251
+
4252
+ [[package]]
4253
+ name = "valuable"
4254
+ version = "0.1.1"
4255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4256
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4257
+
4258
+ [[package]]
4259
+ name = "vcpkg"
4260
+ version = "0.2.15"
4261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4262
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4263
+
4264
+ [[package]]
4265
+ name = "version_check"
4266
+ version = "0.9.5"
4267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4268
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4269
+
4270
+ [[package]]
4271
+ name = "wait-timeout"
4272
+ version = "0.2.1"
4273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4274
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4275
+ dependencies = [
4276
+ "libc",
4277
+ ]
4278
+
4279
+ [[package]]
4280
+ name = "walkdir"
4281
+ version = "2.5.0"
4282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4283
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4284
+ dependencies = [
4285
+ "same-file",
4286
+ "winapi-util",
4287
+ ]
4288
+
4289
+ [[package]]
4290
+ name = "want"
4291
+ version = "0.3.1"
4292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4293
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4294
+ dependencies = [
4295
+ "try-lock",
4296
+ ]
4297
+
4298
+ [[package]]
4299
+ name = "wasi"
4300
+ version = "0.11.1+wasi-snapshot-preview1"
4301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4302
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4303
+
4304
+ [[package]]
4305
+ name = "wasip2"
4306
+ version = "1.0.2+wasi-0.2.9"
4307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4308
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
4309
+ dependencies = [
4310
+ "wit-bindgen",
4311
+ ]
4312
+
4313
+ [[package]]
4314
+ name = "wasip3"
4315
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
4316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4317
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
4318
+ dependencies = [
4319
+ "wit-bindgen",
4320
+ ]
4321
+
4322
+ [[package]]
4323
+ name = "wasm-bindgen"
4324
+ version = "0.2.116"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "7dc0882f7b5bb01ae8c5215a1230832694481c1a4be062fd410e12ea3da5b631"
4327
+ dependencies = [
4328
+ "cfg-if",
4329
+ "once_cell",
4330
+ "rustversion",
4331
+ "wasm-bindgen-macro",
4332
+ "wasm-bindgen-shared",
4333
+ ]
4334
+
4335
+ [[package]]
4336
+ name = "wasm-bindgen-futures"
4337
+ version = "0.4.66"
4338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4339
+ checksum = "19280959e2844181895ef62f065c63e0ca07ece4771b53d89bfdb967d97cbf05"
4340
+ dependencies = [
4341
+ "js-sys",
4342
+ "wasm-bindgen",
4343
+ ]
4344
+
4345
+ [[package]]
4346
+ name = "wasm-bindgen-macro"
4347
+ version = "0.2.116"
4348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4349
+ checksum = "75973d3066e01d035dbedaad2864c398df42f8dd7b1ea057c35b8407c015b537"
4350
+ dependencies = [
4351
+ "quote",
4352
+ "wasm-bindgen-macro-support",
4353
+ ]
4354
+
4355
+ [[package]]
4356
+ name = "wasm-bindgen-macro-support"
4357
+ version = "0.2.116"
4358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4359
+ checksum = "91af5e4be765819e0bcfee7322c14374dc821e35e72fa663a830bbc7dc199eac"
4360
+ dependencies = [
4361
+ "bumpalo",
4362
+ "proc-macro2",
4363
+ "quote",
4364
+ "syn 2.0.117",
4365
+ "wasm-bindgen-shared",
4366
+ ]
4367
+
4368
+ [[package]]
4369
+ name = "wasm-bindgen-shared"
4370
+ version = "0.2.116"
4371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4372
+ checksum = "c9bf0406a78f02f336bf1e451799cca198e8acde4ffa278f0fb20487b150a633"
4373
+ dependencies = [
4374
+ "unicode-ident",
4375
+ ]
4376
+
4377
+ [[package]]
4378
+ name = "wasm-bindgen-test"
4379
+ version = "0.3.66"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "ea88331fc76766356287e79bb0bc032157feea8eff8f2c3f1d9ea4b94255ae1c"
4382
+ dependencies = [
4383
+ "async-trait",
4384
+ "cast",
4385
+ "js-sys",
4386
+ "libm",
4387
+ "minicov",
4388
+ "nu-ansi-term",
4389
+ "num-traits",
4390
+ "oorandom",
4391
+ "serde",
4392
+ "serde_json",
4393
+ "wasm-bindgen",
4394
+ "wasm-bindgen-futures",
4395
+ "wasm-bindgen-test-macro",
4396
+ "wasm-bindgen-test-shared",
4397
+ ]
4398
+
4399
+ [[package]]
4400
+ name = "wasm-bindgen-test-macro"
4401
+ version = "0.3.66"
4402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4403
+ checksum = "92437fa87f58743befb3003c4f4e3e9010dd50c6935561be7645981c0de05dfd"
4404
+ dependencies = [
4405
+ "proc-macro2",
4406
+ "quote",
4407
+ "syn 2.0.117",
4408
+ ]
4409
+
4410
+ [[package]]
4411
+ name = "wasm-bindgen-test-shared"
4412
+ version = "0.2.116"
4413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4414
+ checksum = "10091e48e3231b0f567b098ddb9a107310eb2629ae0eaa7c98dd746d5e80ee78"
4415
+
4416
+ [[package]]
4417
+ name = "wasm-encoder"
4418
+ version = "0.244.0"
4419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4420
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4421
+ dependencies = [
4422
+ "leb128fmt",
4423
+ "wasmparser",
4424
+ ]
4425
+
4426
+ [[package]]
4427
+ name = "wasm-metadata"
4428
+ version = "0.244.0"
4429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4430
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4431
+ dependencies = [
4432
+ "anyhow",
4433
+ "indexmap 2.13.0",
4434
+ "wasm-encoder",
4435
+ "wasmparser",
4436
+ ]
4437
+
4438
+ [[package]]
4439
+ name = "wasmparser"
4440
+ version = "0.244.0"
4441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4442
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4443
+ dependencies = [
4444
+ "bitflags",
4445
+ "hashbrown 0.15.5",
4446
+ "indexmap 2.13.0",
4447
+ "semver 1.0.27",
4448
+ ]
4449
+
4450
+ [[package]]
4451
+ name = "web-sys"
4452
+ version = "0.3.93"
4453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4454
+ checksum = "749466a37ee189057f54748b200186b59a03417a117267baf3fd89cecc9fb837"
4455
+ dependencies = [
4456
+ "js-sys",
4457
+ "wasm-bindgen",
4458
+ ]
4459
+
4460
+ [[package]]
4461
+ name = "winapi-util"
4462
+ version = "0.1.11"
4463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4464
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4465
+ dependencies = [
4466
+ "windows-sys 0.61.2",
4467
+ ]
4468
+
4469
+ [[package]]
4470
+ name = "windows-core"
4471
+ version = "0.62.2"
4472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4473
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4474
+ dependencies = [
4475
+ "windows-implement",
4476
+ "windows-interface",
4477
+ "windows-link",
4478
+ "windows-result",
4479
+ "windows-strings",
4480
+ ]
4481
+
4482
+ [[package]]
4483
+ name = "windows-implement"
4484
+ version = "0.60.2"
4485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4486
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4487
+ dependencies = [
4488
+ "proc-macro2",
4489
+ "quote",
4490
+ "syn 2.0.117",
4491
+ ]
4492
+
4493
+ [[package]]
4494
+ name = "windows-interface"
4495
+ version = "0.59.3"
4496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4497
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4498
+ dependencies = [
4499
+ "proc-macro2",
4500
+ "quote",
4501
+ "syn 2.0.117",
4502
+ ]
4503
+
4504
+ [[package]]
4505
+ name = "windows-link"
4506
+ version = "0.2.1"
4507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4508
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4509
+
4510
+ [[package]]
4511
+ name = "windows-registry"
4512
+ version = "0.6.1"
4513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4514
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
4515
+ dependencies = [
4516
+ "windows-link",
4517
+ "windows-result",
4518
+ "windows-strings",
4519
+ ]
4520
+
4521
+ [[package]]
4522
+ name = "windows-result"
4523
+ version = "0.4.1"
4524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4525
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4526
+ dependencies = [
4527
+ "windows-link",
4528
+ ]
4529
+
4530
+ [[package]]
4531
+ name = "windows-strings"
4532
+ version = "0.5.1"
4533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4534
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4535
+ dependencies = [
4536
+ "windows-link",
4537
+ ]
4538
+
4539
+ [[package]]
4540
+ name = "windows-sys"
4541
+ version = "0.52.0"
4542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4543
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4544
+ dependencies = [
4545
+ "windows-targets",
4546
+ ]
4547
+
4548
+ [[package]]
4549
+ name = "windows-sys"
4550
+ version = "0.61.2"
4551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4552
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4553
+ dependencies = [
4554
+ "windows-link",
4555
+ ]
4556
+
4557
+ [[package]]
4558
+ name = "windows-targets"
4559
+ version = "0.52.6"
4560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4561
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4562
+ dependencies = [
4563
+ "windows_aarch64_gnullvm",
4564
+ "windows_aarch64_msvc",
4565
+ "windows_i686_gnu",
4566
+ "windows_i686_gnullvm",
4567
+ "windows_i686_msvc",
4568
+ "windows_x86_64_gnu",
4569
+ "windows_x86_64_gnullvm",
4570
+ "windows_x86_64_msvc",
4571
+ ]
4572
+
4573
+ [[package]]
4574
+ name = "windows_aarch64_gnullvm"
4575
+ version = "0.52.6"
4576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4577
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4578
+
4579
+ [[package]]
4580
+ name = "windows_aarch64_msvc"
4581
+ version = "0.52.6"
4582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4583
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4584
+
4585
+ [[package]]
4586
+ name = "windows_i686_gnu"
4587
+ version = "0.52.6"
4588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4589
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4590
+
4591
+ [[package]]
4592
+ name = "windows_i686_gnullvm"
4593
+ version = "0.52.6"
4594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4595
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4596
+
4597
+ [[package]]
4598
+ name = "windows_i686_msvc"
4599
+ version = "0.52.6"
4600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4601
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4602
+
4603
+ [[package]]
4604
+ name = "windows_x86_64_gnu"
4605
+ version = "0.52.6"
4606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4607
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4608
+
4609
+ [[package]]
4610
+ name = "windows_x86_64_gnullvm"
4611
+ version = "0.52.6"
4612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4613
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4614
+
4615
+ [[package]]
4616
+ name = "windows_x86_64_msvc"
4617
+ version = "0.52.6"
4618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4619
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4620
+
4621
+ [[package]]
4622
+ name = "winnow"
4623
+ version = "0.7.15"
4624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4625
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4626
+ dependencies = [
4627
+ "memchr",
4628
+ ]
4629
+
4630
+ [[package]]
4631
+ name = "winnow"
4632
+ version = "1.0.1"
4633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4634
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
4635
+ dependencies = [
4636
+ "memchr",
4637
+ ]
4638
+
4639
+ [[package]]
4640
+ name = "wit-bindgen"
4641
+ version = "0.51.0"
4642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4643
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4644
+ dependencies = [
4645
+ "wit-bindgen-rust-macro",
4646
+ ]
4647
+
4648
+ [[package]]
4649
+ name = "wit-bindgen-core"
4650
+ version = "0.51.0"
4651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4652
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4653
+ dependencies = [
4654
+ "anyhow",
4655
+ "heck",
4656
+ "wit-parser",
4657
+ ]
4658
+
4659
+ [[package]]
4660
+ name = "wit-bindgen-rust"
4661
+ version = "0.51.0"
4662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4663
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4664
+ dependencies = [
4665
+ "anyhow",
4666
+ "heck",
4667
+ "indexmap 2.13.0",
4668
+ "prettyplease",
4669
+ "syn 2.0.117",
4670
+ "wasm-metadata",
4671
+ "wit-bindgen-core",
4672
+ "wit-component",
4673
+ ]
4674
+
4675
+ [[package]]
4676
+ name = "wit-bindgen-rust-macro"
4677
+ version = "0.51.0"
4678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4679
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4680
+ dependencies = [
4681
+ "anyhow",
4682
+ "prettyplease",
4683
+ "proc-macro2",
4684
+ "quote",
4685
+ "syn 2.0.117",
4686
+ "wit-bindgen-core",
4687
+ "wit-bindgen-rust",
4688
+ ]
4689
+
4690
+ [[package]]
4691
+ name = "wit-component"
4692
+ version = "0.244.0"
4693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4694
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4695
+ dependencies = [
4696
+ "anyhow",
4697
+ "bitflags",
4698
+ "indexmap 2.13.0",
4699
+ "log",
4700
+ "serde",
4701
+ "serde_derive",
4702
+ "serde_json",
4703
+ "wasm-encoder",
4704
+ "wasm-metadata",
4705
+ "wasmparser",
4706
+ "wit-parser",
4707
+ ]
4708
+
4709
+ [[package]]
4710
+ name = "wit-parser"
4711
+ version = "0.244.0"
4712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4713
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4714
+ dependencies = [
4715
+ "anyhow",
4716
+ "id-arena",
4717
+ "indexmap 2.13.0",
4718
+ "log",
4719
+ "semver 1.0.27",
4720
+ "serde",
4721
+ "serde_derive",
4722
+ "serde_json",
4723
+ "unicode-xid",
4724
+ "wasmparser",
4725
+ ]
4726
+
4727
+ [[package]]
4728
+ name = "writeable"
4729
+ version = "0.6.2"
4730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4731
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4732
+
4733
+ [[package]]
4734
+ name = "wyz"
4735
+ version = "0.5.1"
4736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4737
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4738
+ dependencies = [
4739
+ "tap",
4740
+ ]
4741
+
4742
+ [[package]]
4743
+ name = "yoke"
4744
+ version = "0.8.1"
4745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4746
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4747
+ dependencies = [
4748
+ "stable_deref_trait",
4749
+ "yoke-derive",
4750
+ "zerofrom",
4751
+ ]
4752
+
4753
+ [[package]]
4754
+ name = "yoke-derive"
4755
+ version = "0.8.1"
4756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4757
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4758
+ dependencies = [
4759
+ "proc-macro2",
4760
+ "quote",
4761
+ "syn 2.0.117",
4762
+ "synstructure",
4763
+ ]
4764
+
4765
+ [[package]]
4766
+ name = "zerocopy"
4767
+ version = "0.8.48"
4768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4769
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
4770
+ dependencies = [
4771
+ "zerocopy-derive",
4772
+ ]
4773
+
4774
+ [[package]]
4775
+ name = "zerocopy-derive"
4776
+ version = "0.8.48"
4777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4778
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
4779
+ dependencies = [
4780
+ "proc-macro2",
4781
+ "quote",
4782
+ "syn 2.0.117",
4783
+ ]
4784
+
4785
+ [[package]]
4786
+ name = "zerofrom"
4787
+ version = "0.1.6"
4788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4789
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4790
+ dependencies = [
4791
+ "zerofrom-derive",
4792
+ ]
4793
+
4794
+ [[package]]
4795
+ name = "zerofrom-derive"
4796
+ version = "0.1.6"
4797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4798
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4799
+ dependencies = [
4800
+ "proc-macro2",
4801
+ "quote",
4802
+ "syn 2.0.117",
4803
+ "synstructure",
4804
+ ]
4805
+
4806
+ [[package]]
4807
+ name = "zeroize"
4808
+ version = "1.8.2"
4809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4810
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4811
+ dependencies = [
4812
+ "zeroize_derive",
4813
+ ]
4814
+
4815
+ [[package]]
4816
+ name = "zeroize_derive"
4817
+ version = "1.4.3"
4818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4819
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4820
+ dependencies = [
4821
+ "proc-macro2",
4822
+ "quote",
4823
+ "syn 2.0.117",
4824
+ ]
4825
+
4826
+ [[package]]
4827
+ name = "zerotrie"
4828
+ version = "0.2.3"
4829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4830
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4831
+ dependencies = [
4832
+ "displaydoc",
4833
+ "yoke",
4834
+ "zerofrom",
4835
+ ]
4836
+
4837
+ [[package]]
4838
+ name = "zerovec"
4839
+ version = "0.11.5"
4840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4841
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4842
+ dependencies = [
4843
+ "yoke",
4844
+ "zerofrom",
4845
+ "zerovec-derive",
4846
+ ]
4847
+
4848
+ [[package]]
4849
+ name = "zerovec-derive"
4850
+ version = "0.11.2"
4851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4852
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4853
+ dependencies = [
4854
+ "proc-macro2",
4855
+ "quote",
4856
+ "syn 2.0.117",
4857
+ ]
4858
+
4859
+ [[package]]
4860
+ name = "zmij"
4861
+ version = "1.0.21"
4862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4863
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"