atbash-sdk 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. atbash_sdk-0.1.0/Cargo.lock +3019 -0
  2. atbash_sdk-0.1.0/Cargo.toml +3 -0
  3. atbash_sdk-0.1.0/LICENSE +28 -0
  4. atbash_sdk-0.1.0/PKG-INFO +189 -0
  5. atbash_sdk-0.1.0/README.md +151 -0
  6. atbash_sdk-0.1.0/bindings/python/Cargo.toml +25 -0
  7. atbash_sdk-0.1.0/bindings/python/LICENSE +28 -0
  8. atbash_sdk-0.1.0/bindings/python/README.md +151 -0
  9. atbash_sdk-0.1.0/bindings/python/openapi-client.config.yaml +12 -0
  10. atbash_sdk-0.1.0/bindings/python/src/lib.rs +484 -0
  11. atbash_sdk-0.1.0/bindings/python/tests/test_audit.py +185 -0
  12. atbash_sdk-0.1.0/bindings/python/tests/test_config.py +221 -0
  13. atbash_sdk-0.1.0/bindings/python/tests/test_e2e_testnet.py +166 -0
  14. atbash_sdk-0.1.0/bindings/python/tests/test_judge_body_parity.py +183 -0
  15. atbash_sdk-0.1.0/bindings/python/tests/test_sdk_http.py +518 -0
  16. atbash_sdk-0.1.0/bindings/python/tests/test_vector_parity.py +162 -0
  17. atbash_sdk-0.1.0/core/Cargo.toml +43 -0
  18. atbash_sdk-0.1.0/core/README.md +45 -0
  19. atbash_sdk-0.1.0/core/src/error.rs +29 -0
  20. atbash_sdk-0.1.0/core/src/identity.rs +58 -0
  21. atbash_sdk-0.1.0/core/src/lib.rs +22 -0
  22. atbash_sdk-0.1.0/core/src/memory.rs +447 -0
  23. atbash_sdk-0.1.0/core/src/normalize.rs +157 -0
  24. atbash_sdk-0.1.0/core/src/redaction.rs +148 -0
  25. atbash_sdk-0.1.0/core/src/signing.rs +135 -0
  26. atbash_sdk-0.1.0/core/tests/identity.rs +59 -0
  27. atbash_sdk-0.1.0/core/tests/memory_vectors.rs +56 -0
  28. atbash_sdk-0.1.0/core/tests/redaction_vectors.rs +147 -0
  29. atbash_sdk-0.1.0/core/tests/signing_vectors.rs +79 -0
  30. atbash_sdk-0.1.0/core/tests/verify_signature.rs +60 -0
  31. atbash_sdk-0.1.0/pyproject.toml +72 -0
  32. atbash_sdk-0.1.0/python/atbash/__init__.py +120 -0
  33. atbash_sdk-0.1.0/python/atbash/_http/__init__.py +8 -0
  34. atbash_sdk-0.1.0/python/atbash/_http/api/__init__.py +1 -0
  35. atbash_sdk-0.1.0/python/atbash/_http/api/default/__init__.py +1 -0
  36. atbash_sdk-0.1.0/python/atbash/_http/api/default/check_agent_exists.py +177 -0
  37. atbash_sdk-0.1.0/python/atbash/_http/api/default/get_judgment_status.py +192 -0
  38. atbash_sdk-0.1.0/python/atbash/_http/api/default/get_safety_stats.py +179 -0
  39. atbash_sdk-0.1.0/python/atbash/_http/api/default/risk_engine_batch.py +202 -0
  40. atbash_sdk-0.1.0/python/atbash/_http/api/default/risk_engine_query.py +314 -0
  41. atbash_sdk-0.1.0/python/atbash/_http/api/default/submit_judgement.py +177 -0
  42. atbash_sdk-0.1.0/python/atbash/_http/client.py +271 -0
  43. atbash_sdk-0.1.0/python/atbash/_http/errors.py +14 -0
  44. atbash_sdk-0.1.0/python/atbash/_http/models/__init__.py +45 -0
  45. atbash_sdk-0.1.0/python/atbash/_http/models/agent_detail.py +64 -0
  46. atbash_sdk-0.1.0/python/atbash/_http/models/agent_detail_request.py +86 -0
  47. atbash_sdk-0.1.0/python/atbash/_http/models/agent_detail_request_action.py +7 -0
  48. atbash_sdk-0.1.0/python/atbash/_http/models/agent_exists_response.py +77 -0
  49. atbash_sdk-0.1.0/python/atbash/_http/models/agent_policy.py +98 -0
  50. atbash_sdk-0.1.0/python/atbash/_http/models/agent_policy_request.py +86 -0
  51. atbash_sdk-0.1.0/python/atbash/_http/models/agent_policy_request_action.py +7 -0
  52. atbash_sdk-0.1.0/python/atbash/_http/models/error_body.py +65 -0
  53. atbash_sdk-0.1.0/python/atbash/_http/models/get_safety_stats_action.py +7 -0
  54. atbash_sdk-0.1.0/python/atbash/_http/models/held_action.py +126 -0
  55. atbash_sdk-0.1.0/python/atbash/_http/models/held_action_review.py +138 -0
  56. atbash_sdk-0.1.0/python/atbash/_http/models/judge_request.py +146 -0
  57. atbash_sdk-0.1.0/python/atbash/_http/models/judge_result.py +134 -0
  58. atbash_sdk-0.1.0/python/atbash/_http/models/judgment_status.py +133 -0
  59. atbash_sdk-0.1.0/python/atbash/_http/models/risk_engine_query_action.py +14 -0
  60. atbash_sdk-0.1.0/python/atbash/_http/models/safety_stats_response.py +94 -0
  61. atbash_sdk-0.1.0/python/atbash/_http/models/safety_stats_response_data.py +63 -0
  62. atbash_sdk-0.1.0/python/atbash/_http/models/tier_info.py +98 -0
  63. atbash_sdk-0.1.0/python/atbash/_http/models/tool_call_full.py +188 -0
  64. atbash_sdk-0.1.0/python/atbash/_http/models/tool_call_record.py +132 -0
  65. atbash_sdk-0.1.0/python/atbash/_http/types.py +53 -0
  66. atbash_sdk-0.1.0/python/atbash/_normalize.py +44 -0
  67. atbash_sdk-0.1.0/python/atbash/client.py +824 -0
  68. atbash_sdk-0.1.0/python/atbash/constants.py +9 -0
  69. atbash_sdk-0.1.0/python/atbash/endpoint.py +98 -0
  70. atbash_sdk-0.1.0/python/atbash/errors.py +57 -0
  71. atbash_sdk-0.1.0/python/atbash/key_loader.py +69 -0
  72. atbash_sdk-0.1.0/python/atbash/types.py +135 -0
  73. atbash_sdk-0.1.0/python/atbash/user_config.py +75 -0
  74. atbash_sdk-0.1.0/python/atbash_core/__init__.py +11 -0
@@ -0,0 +1,3019 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys 0.61.2",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys 0.61.2",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.102"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
69
+
70
+ [[package]]
71
+ name = "arrayvec"
72
+ version = "0.7.6"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
75
+
76
+ [[package]]
77
+ name = "askama"
78
+ version = "0.13.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7"
81
+ dependencies = [
82
+ "askama_derive",
83
+ "itoa",
84
+ "percent-encoding",
85
+ "serde",
86
+ "serde_json",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "askama_derive"
91
+ version = "0.13.1"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac"
94
+ dependencies = [
95
+ "askama_parser",
96
+ "basic-toml",
97
+ "memchr",
98
+ "proc-macro2",
99
+ "quote",
100
+ "rustc-hash",
101
+ "serde",
102
+ "serde_derive",
103
+ "syn",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "askama_parser"
108
+ version = "0.13.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "cf315ce6524c857bb129ff794935cf6d42c82a6cff60526fe2a63593de4d0d4f"
111
+ dependencies = [
112
+ "memchr",
113
+ "serde",
114
+ "serde_derive",
115
+ "winnow 0.7.15",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "asn1"
120
+ version = "0.21.3"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "2d9c3502a6f1b50a2c69b97b71638a81ad3b21b9874604880401b9b2b0bf758f"
123
+ dependencies = [
124
+ "asn1_derive",
125
+ "itoa",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "asn1_derive"
130
+ version = "0.21.3"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "1766ebcb519d8dd186d60dfa912571edcaa2c1f995e2e56643a261a87df69a61"
133
+ dependencies = [
134
+ "proc-macro2",
135
+ "quote",
136
+ "syn",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "async-compat"
141
+ version = "0.2.5"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "a1ba85bc55464dcbf728b56d97e119d673f4cf9062be330a9a26f3acf504a590"
144
+ dependencies = [
145
+ "futures-core",
146
+ "futures-io",
147
+ "once_cell",
148
+ "pin-project-lite",
149
+ "tokio",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "atbash-core"
154
+ version = "0.1.0"
155
+ dependencies = [
156
+ "fancy-regex",
157
+ "hex",
158
+ "indexmap",
159
+ "openssl",
160
+ "postchain-client",
161
+ "secp256k1",
162
+ "serde",
163
+ "serde_json",
164
+ "sha2 0.11.0",
165
+ "thiserror",
166
+ "unicode-normalization",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "atbash-go"
171
+ version = "0.1.0"
172
+ dependencies = [
173
+ "atbash-core",
174
+ "cbindgen",
175
+ "serde",
176
+ "serde_json",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "atbash-node"
181
+ version = "0.1.0"
182
+ dependencies = [
183
+ "atbash-core",
184
+ "napi",
185
+ "napi-build",
186
+ "napi-derive",
187
+ "serde",
188
+ "serde_json",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "atbash-py"
193
+ version = "0.1.0"
194
+ dependencies = [
195
+ "atbash-core",
196
+ "pyo3",
197
+ "pythonize",
198
+ "serde",
199
+ "serde_json",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "atbash-uniffi"
204
+ version = "0.1.0"
205
+ dependencies = [
206
+ "atbash-core",
207
+ "serde",
208
+ "serde_json",
209
+ "thiserror",
210
+ "uniffi",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "atomic-waker"
215
+ version = "1.1.2"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
218
+
219
+ [[package]]
220
+ name = "autocfg"
221
+ version = "1.5.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
224
+
225
+ [[package]]
226
+ name = "base64"
227
+ version = "0.22.1"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
230
+
231
+ [[package]]
232
+ name = "basic-toml"
233
+ version = "0.1.10"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
236
+ dependencies = [
237
+ "serde",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "bigdecimal"
242
+ version = "0.4.10"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
245
+ dependencies = [
246
+ "autocfg",
247
+ "libm",
248
+ "num-bigint",
249
+ "num-integer",
250
+ "num-traits",
251
+ "serde",
252
+ "serde_json",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "bit-set"
257
+ version = "0.8.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
260
+ dependencies = [
261
+ "bit-vec",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "bit-vec"
266
+ version = "0.8.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
269
+
270
+ [[package]]
271
+ name = "bitcoin-io"
272
+ version = "0.1.4"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953"
275
+
276
+ [[package]]
277
+ name = "bitcoin_hashes"
278
+ version = "0.14.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b"
281
+ dependencies = [
282
+ "bitcoin-io",
283
+ "hex-conservative",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "bitflags"
288
+ version = "2.11.1"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
291
+
292
+ [[package]]
293
+ name = "block-buffer"
294
+ version = "0.10.4"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
297
+ dependencies = [
298
+ "generic-array",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "block-buffer"
303
+ version = "0.12.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
306
+ dependencies = [
307
+ "hybrid-array",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "bumpalo"
312
+ version = "3.20.3"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
315
+
316
+ [[package]]
317
+ name = "bytes"
318
+ version = "1.11.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
321
+
322
+ [[package]]
323
+ name = "camino"
324
+ version = "1.2.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
327
+ dependencies = [
328
+ "serde_core",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "cargo-platform"
333
+ version = "0.1.9"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
336
+ dependencies = [
337
+ "serde",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "cargo_metadata"
342
+ version = "0.19.2"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
345
+ dependencies = [
346
+ "camino",
347
+ "cargo-platform",
348
+ "semver",
349
+ "serde",
350
+ "serde_json",
351
+ "thiserror",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "cbindgen"
356
+ version = "0.29.2"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
359
+ dependencies = [
360
+ "clap",
361
+ "heck",
362
+ "indexmap",
363
+ "log",
364
+ "proc-macro2",
365
+ "quote",
366
+ "serde",
367
+ "serde_json",
368
+ "syn",
369
+ "tempfile",
370
+ "toml 0.9.12+spec-1.1.0",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "cc"
375
+ version = "1.2.62"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
378
+ dependencies = [
379
+ "find-msvc-tools",
380
+ "shlex",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "cfg-if"
385
+ version = "1.0.4"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
388
+
389
+ [[package]]
390
+ name = "clap"
391
+ version = "4.6.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
394
+ dependencies = [
395
+ "clap_builder",
396
+ "clap_derive",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "clap_builder"
401
+ version = "4.6.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
404
+ dependencies = [
405
+ "anstream",
406
+ "anstyle",
407
+ "clap_lex",
408
+ "strsim",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "clap_derive"
413
+ version = "4.6.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
416
+ dependencies = [
417
+ "heck",
418
+ "proc-macro2",
419
+ "quote",
420
+ "syn",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "clap_lex"
425
+ version = "1.1.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
428
+
429
+ [[package]]
430
+ name = "colorchoice"
431
+ version = "1.0.5"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
434
+
435
+ [[package]]
436
+ name = "const-oid"
437
+ version = "0.10.2"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
440
+
441
+ [[package]]
442
+ name = "convert_case"
443
+ version = "0.6.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
446
+ dependencies = [
447
+ "unicode-segmentation",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "core-foundation"
452
+ version = "0.9.4"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
455
+ dependencies = [
456
+ "core-foundation-sys",
457
+ "libc",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "core-foundation"
462
+ version = "0.10.1"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
465
+ dependencies = [
466
+ "core-foundation-sys",
467
+ "libc",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "core-foundation-sys"
472
+ version = "0.8.7"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
475
+
476
+ [[package]]
477
+ name = "cpufeatures"
478
+ version = "0.2.17"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
481
+ dependencies = [
482
+ "libc",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "cpufeatures"
487
+ version = "0.3.0"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
490
+ dependencies = [
491
+ "libc",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "crypto-common"
496
+ version = "0.1.7"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
499
+ dependencies = [
500
+ "generic-array",
501
+ "typenum",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "crypto-common"
506
+ version = "0.2.2"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
509
+ dependencies = [
510
+ "hybrid-array",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "ctor"
515
+ version = "0.2.9"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
518
+ dependencies = [
519
+ "quote",
520
+ "syn",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "digest"
525
+ version = "0.10.7"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
528
+ dependencies = [
529
+ "block-buffer 0.10.4",
530
+ "crypto-common 0.1.7",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "digest"
535
+ version = "0.11.3"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
538
+ dependencies = [
539
+ "block-buffer 0.12.0",
540
+ "const-oid",
541
+ "crypto-common 0.2.2",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "displaydoc"
546
+ version = "0.2.5"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
549
+ dependencies = [
550
+ "proc-macro2",
551
+ "quote",
552
+ "syn",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "encoding_rs"
557
+ version = "0.8.35"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
560
+ dependencies = [
561
+ "cfg-if",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "equivalent"
566
+ version = "1.0.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
569
+
570
+ [[package]]
571
+ name = "errno"
572
+ version = "0.3.14"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
575
+ dependencies = [
576
+ "libc",
577
+ "windows-sys 0.61.2",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "fancy-regex"
582
+ version = "0.18.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
585
+ dependencies = [
586
+ "bit-set",
587
+ "regex-automata",
588
+ "regex-syntax",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "fastrand"
593
+ version = "2.4.1"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
596
+
597
+ [[package]]
598
+ name = "find-msvc-tools"
599
+ version = "0.1.9"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
602
+
603
+ [[package]]
604
+ name = "fnv"
605
+ version = "1.0.7"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
608
+
609
+ [[package]]
610
+ name = "foldhash"
611
+ version = "0.1.5"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
614
+
615
+ [[package]]
616
+ name = "foreign-types"
617
+ version = "0.3.2"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
620
+ dependencies = [
621
+ "foreign-types-shared",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "foreign-types-shared"
626
+ version = "0.1.1"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
629
+
630
+ [[package]]
631
+ name = "form_urlencoded"
632
+ version = "1.2.2"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
635
+ dependencies = [
636
+ "percent-encoding",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "fs-err"
641
+ version = "2.11.0"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
644
+ dependencies = [
645
+ "autocfg",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "futures-channel"
650
+ version = "0.3.32"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
653
+ dependencies = [
654
+ "futures-core",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "futures-core"
659
+ version = "0.3.32"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
662
+
663
+ [[package]]
664
+ name = "futures-io"
665
+ version = "0.3.32"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
668
+
669
+ [[package]]
670
+ name = "futures-sink"
671
+ version = "0.3.32"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
674
+
675
+ [[package]]
676
+ name = "futures-task"
677
+ version = "0.3.32"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
680
+
681
+ [[package]]
682
+ name = "futures-util"
683
+ version = "0.3.32"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
686
+ dependencies = [
687
+ "futures-core",
688
+ "futures-task",
689
+ "pin-project-lite",
690
+ "slab",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "generic-array"
695
+ version = "0.14.7"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
698
+ dependencies = [
699
+ "typenum",
700
+ "version_check",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "getrandom"
705
+ version = "0.2.17"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
708
+ dependencies = [
709
+ "cfg-if",
710
+ "libc",
711
+ "wasi",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "getrandom"
716
+ version = "0.3.4"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
719
+ dependencies = [
720
+ "cfg-if",
721
+ "libc",
722
+ "r-efi 5.3.0",
723
+ "wasip2",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "getrandom"
728
+ version = "0.4.2"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
731
+ dependencies = [
732
+ "cfg-if",
733
+ "libc",
734
+ "r-efi 6.0.0",
735
+ "wasip2",
736
+ "wasip3",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "glob"
741
+ version = "0.3.3"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
744
+
745
+ [[package]]
746
+ name = "goblin"
747
+ version = "0.8.2"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
750
+ dependencies = [
751
+ "log",
752
+ "plain",
753
+ "scroll",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "h2"
758
+ version = "0.4.14"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
761
+ dependencies = [
762
+ "atomic-waker",
763
+ "bytes",
764
+ "fnv",
765
+ "futures-core",
766
+ "futures-sink",
767
+ "http",
768
+ "indexmap",
769
+ "slab",
770
+ "tokio",
771
+ "tokio-util",
772
+ "tracing",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "hashbrown"
777
+ version = "0.15.5"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
780
+ dependencies = [
781
+ "foldhash",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "hashbrown"
786
+ version = "0.17.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
789
+
790
+ [[package]]
791
+ name = "heck"
792
+ version = "0.5.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
795
+
796
+ [[package]]
797
+ name = "hex"
798
+ version = "0.4.3"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
801
+
802
+ [[package]]
803
+ name = "hex-conservative"
804
+ version = "0.2.2"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
807
+ dependencies = [
808
+ "arrayvec",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "http"
813
+ version = "1.4.1"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
816
+ dependencies = [
817
+ "bytes",
818
+ "itoa",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "http-body"
823
+ version = "1.0.1"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
826
+ dependencies = [
827
+ "bytes",
828
+ "http",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "http-body-util"
833
+ version = "0.1.3"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
836
+ dependencies = [
837
+ "bytes",
838
+ "futures-core",
839
+ "http",
840
+ "http-body",
841
+ "pin-project-lite",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "httparse"
846
+ version = "1.10.1"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
849
+
850
+ [[package]]
851
+ name = "hybrid-array"
852
+ version = "0.4.12"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
855
+ dependencies = [
856
+ "typenum",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "hyper"
861
+ version = "1.9.0"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
864
+ dependencies = [
865
+ "atomic-waker",
866
+ "bytes",
867
+ "futures-channel",
868
+ "futures-core",
869
+ "h2",
870
+ "http",
871
+ "http-body",
872
+ "httparse",
873
+ "itoa",
874
+ "pin-project-lite",
875
+ "smallvec",
876
+ "tokio",
877
+ "want",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "hyper-rustls"
882
+ version = "0.27.9"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
885
+ dependencies = [
886
+ "http",
887
+ "hyper",
888
+ "hyper-util",
889
+ "rustls",
890
+ "tokio",
891
+ "tokio-rustls",
892
+ "tower-service",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "hyper-tls"
897
+ version = "0.6.0"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
900
+ dependencies = [
901
+ "bytes",
902
+ "http-body-util",
903
+ "hyper",
904
+ "hyper-util",
905
+ "native-tls",
906
+ "tokio",
907
+ "tokio-native-tls",
908
+ "tower-service",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "hyper-util"
913
+ version = "0.1.20"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
916
+ dependencies = [
917
+ "base64",
918
+ "bytes",
919
+ "futures-channel",
920
+ "futures-util",
921
+ "http",
922
+ "http-body",
923
+ "hyper",
924
+ "ipnet",
925
+ "libc",
926
+ "percent-encoding",
927
+ "pin-project-lite",
928
+ "socket2",
929
+ "system-configuration",
930
+ "tokio",
931
+ "tower-service",
932
+ "tracing",
933
+ "windows-registry",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "icu_collections"
938
+ version = "2.2.0"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
941
+ dependencies = [
942
+ "displaydoc",
943
+ "potential_utf",
944
+ "utf8_iter",
945
+ "yoke",
946
+ "zerofrom",
947
+ "zerovec",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "icu_locale_core"
952
+ version = "2.2.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
955
+ dependencies = [
956
+ "displaydoc",
957
+ "litemap",
958
+ "tinystr",
959
+ "writeable",
960
+ "zerovec",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "icu_normalizer"
965
+ version = "2.2.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
968
+ dependencies = [
969
+ "icu_collections",
970
+ "icu_normalizer_data",
971
+ "icu_properties",
972
+ "icu_provider",
973
+ "smallvec",
974
+ "zerovec",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "icu_normalizer_data"
979
+ version = "2.2.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
982
+
983
+ [[package]]
984
+ name = "icu_properties"
985
+ version = "2.2.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
988
+ dependencies = [
989
+ "icu_collections",
990
+ "icu_locale_core",
991
+ "icu_properties_data",
992
+ "icu_provider",
993
+ "zerotrie",
994
+ "zerovec",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "icu_properties_data"
999
+ version = "2.2.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1002
+
1003
+ [[package]]
1004
+ name = "icu_provider"
1005
+ version = "2.2.0"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1008
+ dependencies = [
1009
+ "displaydoc",
1010
+ "icu_locale_core",
1011
+ "writeable",
1012
+ "yoke",
1013
+ "zerofrom",
1014
+ "zerotrie",
1015
+ "zerovec",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "id-arena"
1020
+ version = "2.3.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1023
+
1024
+ [[package]]
1025
+ name = "idna"
1026
+ version = "1.1.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1029
+ dependencies = [
1030
+ "idna_adapter",
1031
+ "smallvec",
1032
+ "utf8_iter",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "idna_adapter"
1037
+ version = "1.2.2"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1040
+ dependencies = [
1041
+ "icu_normalizer",
1042
+ "icu_properties",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "indexmap"
1047
+ version = "2.14.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1050
+ dependencies = [
1051
+ "equivalent",
1052
+ "hashbrown 0.17.1",
1053
+ "serde",
1054
+ "serde_core",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "indoc"
1059
+ version = "2.0.7"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1062
+ dependencies = [
1063
+ "rustversion",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "ipnet"
1068
+ version = "2.12.0"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1071
+
1072
+ [[package]]
1073
+ name = "is_terminal_polyfill"
1074
+ version = "1.70.2"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1077
+
1078
+ [[package]]
1079
+ name = "itoa"
1080
+ version = "1.0.18"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1083
+
1084
+ [[package]]
1085
+ name = "js-sys"
1086
+ version = "0.3.99"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1089
+ dependencies = [
1090
+ "cfg-if",
1091
+ "futures-util",
1092
+ "once_cell",
1093
+ "wasm-bindgen",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "leb128fmt"
1098
+ version = "0.1.0"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1101
+
1102
+ [[package]]
1103
+ name = "libc"
1104
+ version = "0.2.186"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1107
+
1108
+ [[package]]
1109
+ name = "libloading"
1110
+ version = "0.8.9"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1113
+ dependencies = [
1114
+ "cfg-if",
1115
+ "windows-link",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "libm"
1120
+ version = "0.2.16"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1123
+
1124
+ [[package]]
1125
+ name = "linux-raw-sys"
1126
+ version = "0.12.1"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1129
+
1130
+ [[package]]
1131
+ name = "litemap"
1132
+ version = "0.8.2"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1135
+
1136
+ [[package]]
1137
+ name = "lock_api"
1138
+ version = "0.4.14"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1141
+ dependencies = [
1142
+ "scopeguard",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "log"
1147
+ version = "0.4.30"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1150
+
1151
+ [[package]]
1152
+ name = "memchr"
1153
+ version = "2.8.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1156
+
1157
+ [[package]]
1158
+ name = "memoffset"
1159
+ version = "0.9.1"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1162
+ dependencies = [
1163
+ "autocfg",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "mime"
1168
+ version = "0.3.17"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1171
+
1172
+ [[package]]
1173
+ name = "minimal-lexical"
1174
+ version = "0.2.1"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1177
+
1178
+ [[package]]
1179
+ name = "mio"
1180
+ version = "1.2.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1183
+ dependencies = [
1184
+ "libc",
1185
+ "wasi",
1186
+ "windows-sys 0.61.2",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "napi"
1191
+ version = "2.16.17"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
1194
+ dependencies = [
1195
+ "bitflags",
1196
+ "ctor",
1197
+ "napi-derive",
1198
+ "napi-sys",
1199
+ "once_cell",
1200
+ "serde",
1201
+ "serde_json",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "napi-build"
1206
+ version = "2.3.2"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
1209
+
1210
+ [[package]]
1211
+ name = "napi-derive"
1212
+ version = "2.16.13"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
1215
+ dependencies = [
1216
+ "cfg-if",
1217
+ "convert_case",
1218
+ "napi-derive-backend",
1219
+ "proc-macro2",
1220
+ "quote",
1221
+ "syn",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "napi-derive-backend"
1226
+ version = "1.0.75"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
1229
+ dependencies = [
1230
+ "convert_case",
1231
+ "once_cell",
1232
+ "proc-macro2",
1233
+ "quote",
1234
+ "regex",
1235
+ "semver",
1236
+ "syn",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "napi-sys"
1241
+ version = "2.4.0"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
1244
+ dependencies = [
1245
+ "libloading",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "native-tls"
1250
+ version = "0.2.18"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1253
+ dependencies = [
1254
+ "libc",
1255
+ "log",
1256
+ "openssl",
1257
+ "openssl-probe",
1258
+ "openssl-sys",
1259
+ "schannel",
1260
+ "security-framework",
1261
+ "security-framework-sys",
1262
+ "tempfile",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "nom"
1267
+ version = "7.1.3"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1270
+ dependencies = [
1271
+ "memchr",
1272
+ "minimal-lexical",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "num-bigint"
1277
+ version = "0.4.6"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1280
+ dependencies = [
1281
+ "num-integer",
1282
+ "num-traits",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "num-integer"
1287
+ version = "0.1.46"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1290
+ dependencies = [
1291
+ "num-traits",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "num-traits"
1296
+ version = "0.2.19"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1299
+ dependencies = [
1300
+ "autocfg",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "once_cell"
1305
+ version = "1.21.4"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1308
+
1309
+ [[package]]
1310
+ name = "once_cell_polyfill"
1311
+ version = "1.70.2"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1314
+
1315
+ [[package]]
1316
+ name = "openssl"
1317
+ version = "0.10.80"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
1320
+ dependencies = [
1321
+ "bitflags",
1322
+ "cfg-if",
1323
+ "foreign-types",
1324
+ "libc",
1325
+ "openssl-macros",
1326
+ "openssl-sys",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "openssl-macros"
1331
+ version = "0.1.1"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1334
+ dependencies = [
1335
+ "proc-macro2",
1336
+ "quote",
1337
+ "syn",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "openssl-probe"
1342
+ version = "0.2.1"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1345
+
1346
+ [[package]]
1347
+ name = "openssl-src"
1348
+ version = "300.6.0+3.6.2"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "a8e8cbfd3a4a8c8f089147fd7aaa33cf8c7450c4d09f8f80698a0cf093abeff4"
1351
+ dependencies = [
1352
+ "cc",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "openssl-sys"
1357
+ version = "0.9.116"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
1360
+ dependencies = [
1361
+ "cc",
1362
+ "libc",
1363
+ "openssl-src",
1364
+ "pkg-config",
1365
+ "vcpkg",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "parking_lot"
1370
+ version = "0.12.5"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1373
+ dependencies = [
1374
+ "lock_api",
1375
+ "parking_lot_core",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "parking_lot_core"
1380
+ version = "0.9.12"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1383
+ dependencies = [
1384
+ "cfg-if",
1385
+ "libc",
1386
+ "redox_syscall",
1387
+ "smallvec",
1388
+ "windows-link",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "percent-encoding"
1393
+ version = "2.3.2"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1396
+
1397
+ [[package]]
1398
+ name = "pin-project-lite"
1399
+ version = "0.2.17"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1402
+
1403
+ [[package]]
1404
+ name = "pkg-config"
1405
+ version = "0.3.33"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1408
+
1409
+ [[package]]
1410
+ name = "plain"
1411
+ version = "0.2.3"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1414
+
1415
+ [[package]]
1416
+ name = "portable-atomic"
1417
+ version = "1.13.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1420
+
1421
+ [[package]]
1422
+ name = "postchain-client"
1423
+ version = "0.0.5"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "8ea1e3940d4f5d3f8c5a91c3c4450efc56dde3565b9bfb866da4dc9304e38e8e"
1426
+ dependencies = [
1427
+ "asn1",
1428
+ "base64",
1429
+ "bigdecimal",
1430
+ "hex",
1431
+ "num-bigint",
1432
+ "openssl",
1433
+ "postchain-client-derive",
1434
+ "reqwest",
1435
+ "ring",
1436
+ "secp256k1",
1437
+ "serde",
1438
+ "serde_json",
1439
+ "sha2 0.10.9",
1440
+ "tokio",
1441
+ "tracing",
1442
+ "url",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "postchain-client-derive"
1447
+ version = "0.0.1"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "aff0bc9c783e37e147cf6d8aab4f66e815533cc9557cae18d6f2056f1296a440"
1450
+ dependencies = [
1451
+ "quote",
1452
+ "syn",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "potential_utf"
1457
+ version = "0.1.5"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1460
+ dependencies = [
1461
+ "zerovec",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "ppv-lite86"
1466
+ version = "0.2.21"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1469
+ dependencies = [
1470
+ "zerocopy",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "prettyplease"
1475
+ version = "0.2.37"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1478
+ dependencies = [
1479
+ "proc-macro2",
1480
+ "syn",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "proc-macro2"
1485
+ version = "1.0.106"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1488
+ dependencies = [
1489
+ "unicode-ident",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "pyo3"
1494
+ version = "0.22.6"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1497
+ dependencies = [
1498
+ "cfg-if",
1499
+ "indoc",
1500
+ "libc",
1501
+ "memoffset",
1502
+ "once_cell",
1503
+ "portable-atomic",
1504
+ "pyo3-build-config",
1505
+ "pyo3-ffi",
1506
+ "pyo3-macros",
1507
+ "unindent",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "pyo3-build-config"
1512
+ version = "0.22.6"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1515
+ dependencies = [
1516
+ "once_cell",
1517
+ "target-lexicon",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "pyo3-ffi"
1522
+ version = "0.22.6"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1525
+ dependencies = [
1526
+ "libc",
1527
+ "pyo3-build-config",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "pyo3-macros"
1532
+ version = "0.22.6"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1535
+ dependencies = [
1536
+ "proc-macro2",
1537
+ "pyo3-macros-backend",
1538
+ "quote",
1539
+ "syn",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "pyo3-macros-backend"
1544
+ version = "0.22.6"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1547
+ dependencies = [
1548
+ "heck",
1549
+ "proc-macro2",
1550
+ "pyo3-build-config",
1551
+ "quote",
1552
+ "syn",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "pythonize"
1557
+ version = "0.22.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "90fcf491425978bd889015d5430f6473d91bdfa2097262f1e731aadcf6c2113e"
1560
+ dependencies = [
1561
+ "pyo3",
1562
+ "serde",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "quote"
1567
+ version = "1.0.45"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1570
+ dependencies = [
1571
+ "proc-macro2",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "r-efi"
1576
+ version = "5.3.0"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1579
+
1580
+ [[package]]
1581
+ name = "r-efi"
1582
+ version = "6.0.0"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1585
+
1586
+ [[package]]
1587
+ name = "rand"
1588
+ version = "0.9.4"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1591
+ dependencies = [
1592
+ "rand_chacha",
1593
+ "rand_core",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "rand_chacha"
1598
+ version = "0.9.0"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1601
+ dependencies = [
1602
+ "ppv-lite86",
1603
+ "rand_core",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "rand_core"
1608
+ version = "0.9.5"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1611
+ dependencies = [
1612
+ "getrandom 0.3.4",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "redox_syscall"
1617
+ version = "0.5.18"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1620
+ dependencies = [
1621
+ "bitflags",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "regex"
1626
+ version = "1.12.3"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1629
+ dependencies = [
1630
+ "aho-corasick",
1631
+ "memchr",
1632
+ "regex-automata",
1633
+ "regex-syntax",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "regex-automata"
1638
+ version = "0.4.14"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1641
+ dependencies = [
1642
+ "aho-corasick",
1643
+ "memchr",
1644
+ "regex-syntax",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "regex-syntax"
1649
+ version = "0.8.10"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1652
+
1653
+ [[package]]
1654
+ name = "reqwest"
1655
+ version = "0.12.28"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1658
+ dependencies = [
1659
+ "base64",
1660
+ "bytes",
1661
+ "encoding_rs",
1662
+ "futures-core",
1663
+ "h2",
1664
+ "http",
1665
+ "http-body",
1666
+ "http-body-util",
1667
+ "hyper",
1668
+ "hyper-rustls",
1669
+ "hyper-tls",
1670
+ "hyper-util",
1671
+ "js-sys",
1672
+ "log",
1673
+ "mime",
1674
+ "native-tls",
1675
+ "percent-encoding",
1676
+ "pin-project-lite",
1677
+ "rustls-pki-types",
1678
+ "serde",
1679
+ "serde_json",
1680
+ "serde_urlencoded",
1681
+ "sync_wrapper",
1682
+ "tokio",
1683
+ "tokio-native-tls",
1684
+ "tower",
1685
+ "tower-http",
1686
+ "tower-service",
1687
+ "url",
1688
+ "wasm-bindgen",
1689
+ "wasm-bindgen-futures",
1690
+ "web-sys",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "ring"
1695
+ version = "0.17.14"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1698
+ dependencies = [
1699
+ "cc",
1700
+ "cfg-if",
1701
+ "getrandom 0.2.17",
1702
+ "libc",
1703
+ "untrusted",
1704
+ "windows-sys 0.52.0",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "rustc-hash"
1709
+ version = "2.1.2"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1712
+
1713
+ [[package]]
1714
+ name = "rustix"
1715
+ version = "1.1.4"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1718
+ dependencies = [
1719
+ "bitflags",
1720
+ "errno",
1721
+ "libc",
1722
+ "linux-raw-sys",
1723
+ "windows-sys 0.61.2",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "rustls"
1728
+ version = "0.23.40"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1731
+ dependencies = [
1732
+ "once_cell",
1733
+ "rustls-pki-types",
1734
+ "rustls-webpki",
1735
+ "subtle",
1736
+ "zeroize",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "rustls-pki-types"
1741
+ version = "1.14.1"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1744
+ dependencies = [
1745
+ "zeroize",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "rustls-webpki"
1750
+ version = "0.103.13"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1753
+ dependencies = [
1754
+ "ring",
1755
+ "rustls-pki-types",
1756
+ "untrusted",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "rustversion"
1761
+ version = "1.0.22"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1764
+
1765
+ [[package]]
1766
+ name = "ryu"
1767
+ version = "1.0.23"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1770
+
1771
+ [[package]]
1772
+ name = "schannel"
1773
+ version = "0.1.29"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1776
+ dependencies = [
1777
+ "windows-sys 0.61.2",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "scopeguard"
1782
+ version = "1.2.0"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1785
+
1786
+ [[package]]
1787
+ name = "scroll"
1788
+ version = "0.12.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
1791
+ dependencies = [
1792
+ "scroll_derive",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "scroll_derive"
1797
+ version = "0.12.1"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
1800
+ dependencies = [
1801
+ "proc-macro2",
1802
+ "quote",
1803
+ "syn",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "secp256k1"
1808
+ version = "0.31.1"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "2c3c81b43dc2d8877c216a3fccf76677ee1ebccd429566d3e67447290d0c42b2"
1811
+ dependencies = [
1812
+ "bitcoin_hashes",
1813
+ "rand",
1814
+ "secp256k1-sys",
1815
+ "serde",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "secp256k1-sys"
1820
+ version = "0.11.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "dcb913707158fadaf0d8702c2db0e857de66eb003ccfdda5924b5f5ac98efb38"
1823
+ dependencies = [
1824
+ "cc",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "security-framework"
1829
+ version = "3.7.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1832
+ dependencies = [
1833
+ "bitflags",
1834
+ "core-foundation 0.10.1",
1835
+ "core-foundation-sys",
1836
+ "libc",
1837
+ "security-framework-sys",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "security-framework-sys"
1842
+ version = "2.17.0"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1845
+ dependencies = [
1846
+ "core-foundation-sys",
1847
+ "libc",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "semver"
1852
+ version = "1.0.28"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1855
+ dependencies = [
1856
+ "serde",
1857
+ "serde_core",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "serde"
1862
+ version = "1.0.228"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1865
+ dependencies = [
1866
+ "serde_core",
1867
+ "serde_derive",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "serde_core"
1872
+ version = "1.0.228"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1875
+ dependencies = [
1876
+ "serde_derive",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "serde_derive"
1881
+ version = "1.0.228"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1884
+ dependencies = [
1885
+ "proc-macro2",
1886
+ "quote",
1887
+ "syn",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "serde_json"
1892
+ version = "1.0.150"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1895
+ dependencies = [
1896
+ "itoa",
1897
+ "memchr",
1898
+ "serde",
1899
+ "serde_core",
1900
+ "zmij",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "serde_spanned"
1905
+ version = "1.1.1"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1908
+ dependencies = [
1909
+ "serde_core",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "serde_urlencoded"
1914
+ version = "0.7.1"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1917
+ dependencies = [
1918
+ "form_urlencoded",
1919
+ "itoa",
1920
+ "ryu",
1921
+ "serde",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "sha2"
1926
+ version = "0.10.9"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1929
+ dependencies = [
1930
+ "cfg-if",
1931
+ "cpufeatures 0.2.17",
1932
+ "digest 0.10.7",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "sha2"
1937
+ version = "0.11.0"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1940
+ dependencies = [
1941
+ "cfg-if",
1942
+ "cpufeatures 0.3.0",
1943
+ "digest 0.11.3",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "shlex"
1948
+ version = "1.3.0"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1951
+
1952
+ [[package]]
1953
+ name = "signal-hook-registry"
1954
+ version = "1.4.8"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1957
+ dependencies = [
1958
+ "errno",
1959
+ "libc",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "siphasher"
1964
+ version = "0.3.11"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1967
+
1968
+ [[package]]
1969
+ name = "slab"
1970
+ version = "0.4.12"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1973
+
1974
+ [[package]]
1975
+ name = "smallvec"
1976
+ version = "1.15.1"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1979
+
1980
+ [[package]]
1981
+ name = "smawk"
1982
+ version = "0.3.2"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1985
+
1986
+ [[package]]
1987
+ name = "socket2"
1988
+ version = "0.6.3"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1991
+ dependencies = [
1992
+ "libc",
1993
+ "windows-sys 0.61.2",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "stable_deref_trait"
1998
+ version = "1.2.1"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2001
+
2002
+ [[package]]
2003
+ name = "static_assertions"
2004
+ version = "1.1.0"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2007
+
2008
+ [[package]]
2009
+ name = "strsim"
2010
+ version = "0.11.1"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2013
+
2014
+ [[package]]
2015
+ name = "subtle"
2016
+ version = "2.6.1"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2019
+
2020
+ [[package]]
2021
+ name = "syn"
2022
+ version = "2.0.117"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2025
+ dependencies = [
2026
+ "proc-macro2",
2027
+ "quote",
2028
+ "unicode-ident",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "sync_wrapper"
2033
+ version = "1.0.2"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2036
+ dependencies = [
2037
+ "futures-core",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "synstructure"
2042
+ version = "0.13.2"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2045
+ dependencies = [
2046
+ "proc-macro2",
2047
+ "quote",
2048
+ "syn",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "system-configuration"
2053
+ version = "0.7.0"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2056
+ dependencies = [
2057
+ "bitflags",
2058
+ "core-foundation 0.9.4",
2059
+ "system-configuration-sys",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "system-configuration-sys"
2064
+ version = "0.6.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2067
+ dependencies = [
2068
+ "core-foundation-sys",
2069
+ "libc",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "target-lexicon"
2074
+ version = "0.12.16"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2077
+
2078
+ [[package]]
2079
+ name = "tempfile"
2080
+ version = "3.27.0"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2083
+ dependencies = [
2084
+ "fastrand",
2085
+ "getrandom 0.4.2",
2086
+ "once_cell",
2087
+ "rustix",
2088
+ "windows-sys 0.61.2",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "textwrap"
2093
+ version = "0.16.2"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
2096
+ dependencies = [
2097
+ "smawk",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "thiserror"
2102
+ version = "2.0.18"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2105
+ dependencies = [
2106
+ "thiserror-impl",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "thiserror-impl"
2111
+ version = "2.0.18"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2114
+ dependencies = [
2115
+ "proc-macro2",
2116
+ "quote",
2117
+ "syn",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "tinystr"
2122
+ version = "0.8.3"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2125
+ dependencies = [
2126
+ "displaydoc",
2127
+ "zerovec",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "tinyvec"
2132
+ version = "1.11.0"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2135
+ dependencies = [
2136
+ "tinyvec_macros",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "tinyvec_macros"
2141
+ version = "0.1.1"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2144
+
2145
+ [[package]]
2146
+ name = "tokio"
2147
+ version = "1.52.3"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2150
+ dependencies = [
2151
+ "bytes",
2152
+ "libc",
2153
+ "mio",
2154
+ "parking_lot",
2155
+ "pin-project-lite",
2156
+ "signal-hook-registry",
2157
+ "socket2",
2158
+ "tokio-macros",
2159
+ "windows-sys 0.61.2",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "tokio-macros"
2164
+ version = "2.7.0"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2167
+ dependencies = [
2168
+ "proc-macro2",
2169
+ "quote",
2170
+ "syn",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "tokio-native-tls"
2175
+ version = "0.3.1"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2178
+ dependencies = [
2179
+ "native-tls",
2180
+ "tokio",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "tokio-rustls"
2185
+ version = "0.26.4"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2188
+ dependencies = [
2189
+ "rustls",
2190
+ "tokio",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "tokio-util"
2195
+ version = "0.7.18"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2198
+ dependencies = [
2199
+ "bytes",
2200
+ "futures-core",
2201
+ "futures-sink",
2202
+ "pin-project-lite",
2203
+ "tokio",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "toml"
2208
+ version = "0.5.11"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2211
+ dependencies = [
2212
+ "serde",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "toml"
2217
+ version = "0.9.12+spec-1.1.0"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2220
+ dependencies = [
2221
+ "indexmap",
2222
+ "serde_core",
2223
+ "serde_spanned",
2224
+ "toml_datetime",
2225
+ "toml_parser",
2226
+ "toml_writer",
2227
+ "winnow 0.7.15",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "toml_datetime"
2232
+ version = "0.7.5+spec-1.1.0"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2235
+ dependencies = [
2236
+ "serde_core",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "toml_parser"
2241
+ version = "1.1.2+spec-1.1.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2244
+ dependencies = [
2245
+ "winnow 1.0.3",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "toml_writer"
2250
+ version = "1.1.1+spec-1.1.0"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2253
+
2254
+ [[package]]
2255
+ name = "tower"
2256
+ version = "0.5.3"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2259
+ dependencies = [
2260
+ "futures-core",
2261
+ "futures-util",
2262
+ "pin-project-lite",
2263
+ "sync_wrapper",
2264
+ "tokio",
2265
+ "tower-layer",
2266
+ "tower-service",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "tower-http"
2271
+ version = "0.6.11"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2274
+ dependencies = [
2275
+ "bitflags",
2276
+ "bytes",
2277
+ "futures-util",
2278
+ "http",
2279
+ "http-body",
2280
+ "pin-project-lite",
2281
+ "tower",
2282
+ "tower-layer",
2283
+ "tower-service",
2284
+ "url",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "tower-layer"
2289
+ version = "0.3.3"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2292
+
2293
+ [[package]]
2294
+ name = "tower-service"
2295
+ version = "0.3.3"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2298
+
2299
+ [[package]]
2300
+ name = "tracing"
2301
+ version = "0.1.44"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2304
+ dependencies = [
2305
+ "pin-project-lite",
2306
+ "tracing-attributes",
2307
+ "tracing-core",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "tracing-attributes"
2312
+ version = "0.1.31"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2315
+ dependencies = [
2316
+ "proc-macro2",
2317
+ "quote",
2318
+ "syn",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "tracing-core"
2323
+ version = "0.1.36"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2326
+ dependencies = [
2327
+ "once_cell",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "try-lock"
2332
+ version = "0.2.5"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2335
+
2336
+ [[package]]
2337
+ name = "typenum"
2338
+ version = "1.20.0"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2341
+
2342
+ [[package]]
2343
+ name = "unicode-ident"
2344
+ version = "1.0.24"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2347
+
2348
+ [[package]]
2349
+ name = "unicode-normalization"
2350
+ version = "0.1.25"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2353
+ dependencies = [
2354
+ "tinyvec",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "unicode-segmentation"
2359
+ version = "1.13.2"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2362
+
2363
+ [[package]]
2364
+ name = "unicode-xid"
2365
+ version = "0.2.6"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2368
+
2369
+ [[package]]
2370
+ name = "uniffi"
2371
+ version = "0.29.5"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "3291800a6b06569f7d3e15bdb6dc235e0f0c8bd3eb07177f430057feb076415f"
2374
+ dependencies = [
2375
+ "anyhow",
2376
+ "camino",
2377
+ "cargo_metadata",
2378
+ "clap",
2379
+ "uniffi_bindgen",
2380
+ "uniffi_core",
2381
+ "uniffi_macros",
2382
+ "uniffi_pipeline",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "uniffi_bindgen"
2387
+ version = "0.29.5"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "a04b99fa7796eaaa7b87976a0dbdd1178dc1ee702ea00aca2642003aef9b669e"
2390
+ dependencies = [
2391
+ "anyhow",
2392
+ "askama",
2393
+ "camino",
2394
+ "cargo_metadata",
2395
+ "fs-err",
2396
+ "glob",
2397
+ "goblin",
2398
+ "heck",
2399
+ "indexmap",
2400
+ "once_cell",
2401
+ "serde",
2402
+ "tempfile",
2403
+ "textwrap",
2404
+ "toml 0.5.11",
2405
+ "uniffi_internal_macros",
2406
+ "uniffi_meta",
2407
+ "uniffi_pipeline",
2408
+ "uniffi_udl",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "uniffi_core"
2413
+ version = "0.29.5"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "f38a9a27529ccff732f8efddb831b65b1e07f7dea3fd4cacd4a35a8c4b253b98"
2416
+ dependencies = [
2417
+ "anyhow",
2418
+ "async-compat",
2419
+ "bytes",
2420
+ "once_cell",
2421
+ "static_assertions",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "uniffi_internal_macros"
2426
+ version = "0.29.5"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "09acd2ce09c777dd65ee97c251d33c8a972afc04873f1e3b21eb3492ade16933"
2429
+ dependencies = [
2430
+ "anyhow",
2431
+ "indexmap",
2432
+ "proc-macro2",
2433
+ "quote",
2434
+ "syn",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "uniffi_macros"
2439
+ version = "0.29.5"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "5596f178c4f7aafa1a501c4e0b96236a96bc2ef92bdb453d83e609dad0040152"
2442
+ dependencies = [
2443
+ "camino",
2444
+ "fs-err",
2445
+ "once_cell",
2446
+ "proc-macro2",
2447
+ "quote",
2448
+ "serde",
2449
+ "syn",
2450
+ "toml 0.5.11",
2451
+ "uniffi_meta",
2452
+ ]
2453
+
2454
+ [[package]]
2455
+ name = "uniffi_meta"
2456
+ version = "0.29.5"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "beadc1f460eb2e209263c49c4f5b19e9a02e00a3b2b393f78ad10d766346ecff"
2459
+ dependencies = [
2460
+ "anyhow",
2461
+ "siphasher",
2462
+ "uniffi_internal_macros",
2463
+ "uniffi_pipeline",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "uniffi_pipeline"
2468
+ version = "0.29.5"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "dd76b3ac8a2d964ca9fce7df21c755afb4c77b054a85ad7a029ad179cc5abb8a"
2471
+ dependencies = [
2472
+ "anyhow",
2473
+ "heck",
2474
+ "indexmap",
2475
+ "tempfile",
2476
+ "uniffi_internal_macros",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "uniffi_udl"
2481
+ version = "0.29.5"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "4319cf905911d70d5b97ce0f46f101619a22e9a189c8c46d797a9955e9233716"
2484
+ dependencies = [
2485
+ "anyhow",
2486
+ "textwrap",
2487
+ "uniffi_meta",
2488
+ "weedle2",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "unindent"
2493
+ version = "0.2.4"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2496
+
2497
+ [[package]]
2498
+ name = "untrusted"
2499
+ version = "0.9.0"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2502
+
2503
+ [[package]]
2504
+ name = "url"
2505
+ version = "2.5.8"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2508
+ dependencies = [
2509
+ "form_urlencoded",
2510
+ "idna",
2511
+ "percent-encoding",
2512
+ "serde",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "utf8_iter"
2517
+ version = "1.0.4"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2520
+
2521
+ [[package]]
2522
+ name = "utf8parse"
2523
+ version = "0.2.2"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2526
+
2527
+ [[package]]
2528
+ name = "vcpkg"
2529
+ version = "0.2.15"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2532
+
2533
+ [[package]]
2534
+ name = "version_check"
2535
+ version = "0.9.5"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2538
+
2539
+ [[package]]
2540
+ name = "want"
2541
+ version = "0.3.1"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2544
+ dependencies = [
2545
+ "try-lock",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "wasi"
2550
+ version = "0.11.1+wasi-snapshot-preview1"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2553
+
2554
+ [[package]]
2555
+ name = "wasip2"
2556
+ version = "1.0.3+wasi-0.2.9"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2559
+ dependencies = [
2560
+ "wit-bindgen 0.57.1",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "wasip3"
2565
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2568
+ dependencies = [
2569
+ "wit-bindgen 0.51.0",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "wasm-bindgen"
2574
+ version = "0.2.122"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
2577
+ dependencies = [
2578
+ "cfg-if",
2579
+ "once_cell",
2580
+ "rustversion",
2581
+ "wasm-bindgen-macro",
2582
+ "wasm-bindgen-shared",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "wasm-bindgen-futures"
2587
+ version = "0.4.72"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
2590
+ dependencies = [
2591
+ "js-sys",
2592
+ "wasm-bindgen",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "wasm-bindgen-macro"
2597
+ version = "0.2.122"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
2600
+ dependencies = [
2601
+ "quote",
2602
+ "wasm-bindgen-macro-support",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "wasm-bindgen-macro-support"
2607
+ version = "0.2.122"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
2610
+ dependencies = [
2611
+ "bumpalo",
2612
+ "proc-macro2",
2613
+ "quote",
2614
+ "syn",
2615
+ "wasm-bindgen-shared",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "wasm-bindgen-shared"
2620
+ version = "0.2.122"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
2623
+ dependencies = [
2624
+ "unicode-ident",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "wasm-encoder"
2629
+ version = "0.244.0"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2632
+ dependencies = [
2633
+ "leb128fmt",
2634
+ "wasmparser",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "wasm-metadata"
2639
+ version = "0.244.0"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2642
+ dependencies = [
2643
+ "anyhow",
2644
+ "indexmap",
2645
+ "wasm-encoder",
2646
+ "wasmparser",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "wasmparser"
2651
+ version = "0.244.0"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2654
+ dependencies = [
2655
+ "bitflags",
2656
+ "hashbrown 0.15.5",
2657
+ "indexmap",
2658
+ "semver",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "web-sys"
2663
+ version = "0.3.99"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
2666
+ dependencies = [
2667
+ "js-sys",
2668
+ "wasm-bindgen",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "weedle2"
2673
+ version = "5.0.0"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
2676
+ dependencies = [
2677
+ "nom",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "windows-link"
2682
+ version = "0.2.1"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2685
+
2686
+ [[package]]
2687
+ name = "windows-registry"
2688
+ version = "0.6.1"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2691
+ dependencies = [
2692
+ "windows-link",
2693
+ "windows-result",
2694
+ "windows-strings",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "windows-result"
2699
+ version = "0.4.1"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2702
+ dependencies = [
2703
+ "windows-link",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "windows-strings"
2708
+ version = "0.5.1"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2711
+ dependencies = [
2712
+ "windows-link",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "windows-sys"
2717
+ version = "0.52.0"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2720
+ dependencies = [
2721
+ "windows-targets",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "windows-sys"
2726
+ version = "0.61.2"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2729
+ dependencies = [
2730
+ "windows-link",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "windows-targets"
2735
+ version = "0.52.6"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2738
+ dependencies = [
2739
+ "windows_aarch64_gnullvm",
2740
+ "windows_aarch64_msvc",
2741
+ "windows_i686_gnu",
2742
+ "windows_i686_gnullvm",
2743
+ "windows_i686_msvc",
2744
+ "windows_x86_64_gnu",
2745
+ "windows_x86_64_gnullvm",
2746
+ "windows_x86_64_msvc",
2747
+ ]
2748
+
2749
+ [[package]]
2750
+ name = "windows_aarch64_gnullvm"
2751
+ version = "0.52.6"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2754
+
2755
+ [[package]]
2756
+ name = "windows_aarch64_msvc"
2757
+ version = "0.52.6"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2760
+
2761
+ [[package]]
2762
+ name = "windows_i686_gnu"
2763
+ version = "0.52.6"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2766
+
2767
+ [[package]]
2768
+ name = "windows_i686_gnullvm"
2769
+ version = "0.52.6"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2772
+
2773
+ [[package]]
2774
+ name = "windows_i686_msvc"
2775
+ version = "0.52.6"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2778
+
2779
+ [[package]]
2780
+ name = "windows_x86_64_gnu"
2781
+ version = "0.52.6"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2784
+
2785
+ [[package]]
2786
+ name = "windows_x86_64_gnullvm"
2787
+ version = "0.52.6"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2790
+
2791
+ [[package]]
2792
+ name = "windows_x86_64_msvc"
2793
+ version = "0.52.6"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2796
+
2797
+ [[package]]
2798
+ name = "winnow"
2799
+ version = "0.7.15"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2802
+ dependencies = [
2803
+ "memchr",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "winnow"
2808
+ version = "1.0.3"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2811
+
2812
+ [[package]]
2813
+ name = "wit-bindgen"
2814
+ version = "0.51.0"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2817
+ dependencies = [
2818
+ "wit-bindgen-rust-macro",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "wit-bindgen"
2823
+ version = "0.57.1"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2826
+
2827
+ [[package]]
2828
+ name = "wit-bindgen-core"
2829
+ version = "0.51.0"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2832
+ dependencies = [
2833
+ "anyhow",
2834
+ "heck",
2835
+ "wit-parser",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "wit-bindgen-rust"
2840
+ version = "0.51.0"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2843
+ dependencies = [
2844
+ "anyhow",
2845
+ "heck",
2846
+ "indexmap",
2847
+ "prettyplease",
2848
+ "syn",
2849
+ "wasm-metadata",
2850
+ "wit-bindgen-core",
2851
+ "wit-component",
2852
+ ]
2853
+
2854
+ [[package]]
2855
+ name = "wit-bindgen-rust-macro"
2856
+ version = "0.51.0"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2859
+ dependencies = [
2860
+ "anyhow",
2861
+ "prettyplease",
2862
+ "proc-macro2",
2863
+ "quote",
2864
+ "syn",
2865
+ "wit-bindgen-core",
2866
+ "wit-bindgen-rust",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "wit-component"
2871
+ version = "0.244.0"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2874
+ dependencies = [
2875
+ "anyhow",
2876
+ "bitflags",
2877
+ "indexmap",
2878
+ "log",
2879
+ "serde",
2880
+ "serde_derive",
2881
+ "serde_json",
2882
+ "wasm-encoder",
2883
+ "wasm-metadata",
2884
+ "wasmparser",
2885
+ "wit-parser",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "wit-parser"
2890
+ version = "0.244.0"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2893
+ dependencies = [
2894
+ "anyhow",
2895
+ "id-arena",
2896
+ "indexmap",
2897
+ "log",
2898
+ "semver",
2899
+ "serde",
2900
+ "serde_derive",
2901
+ "serde_json",
2902
+ "unicode-xid",
2903
+ "wasmparser",
2904
+ ]
2905
+
2906
+ [[package]]
2907
+ name = "writeable"
2908
+ version = "0.6.3"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2911
+
2912
+ [[package]]
2913
+ name = "yoke"
2914
+ version = "0.8.2"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2917
+ dependencies = [
2918
+ "stable_deref_trait",
2919
+ "yoke-derive",
2920
+ "zerofrom",
2921
+ ]
2922
+
2923
+ [[package]]
2924
+ name = "yoke-derive"
2925
+ version = "0.8.2"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2928
+ dependencies = [
2929
+ "proc-macro2",
2930
+ "quote",
2931
+ "syn",
2932
+ "synstructure",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "zerocopy"
2937
+ version = "0.8.48"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2940
+ dependencies = [
2941
+ "zerocopy-derive",
2942
+ ]
2943
+
2944
+ [[package]]
2945
+ name = "zerocopy-derive"
2946
+ version = "0.8.48"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2949
+ dependencies = [
2950
+ "proc-macro2",
2951
+ "quote",
2952
+ "syn",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "zerofrom"
2957
+ version = "0.1.8"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2960
+ dependencies = [
2961
+ "zerofrom-derive",
2962
+ ]
2963
+
2964
+ [[package]]
2965
+ name = "zerofrom-derive"
2966
+ version = "0.1.7"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2969
+ dependencies = [
2970
+ "proc-macro2",
2971
+ "quote",
2972
+ "syn",
2973
+ "synstructure",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "zeroize"
2978
+ version = "1.8.2"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2981
+
2982
+ [[package]]
2983
+ name = "zerotrie"
2984
+ version = "0.2.4"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2987
+ dependencies = [
2988
+ "displaydoc",
2989
+ "yoke",
2990
+ "zerofrom",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "zerovec"
2995
+ version = "0.11.6"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2998
+ dependencies = [
2999
+ "yoke",
3000
+ "zerofrom",
3001
+ "zerovec-derive",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "zerovec-derive"
3006
+ version = "0.11.3"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3009
+ dependencies = [
3010
+ "proc-macro2",
3011
+ "quote",
3012
+ "syn",
3013
+ ]
3014
+
3015
+ [[package]]
3016
+ name = "zmij"
3017
+ version = "1.0.21"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"