create-sia-app 0.1.1

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 (112) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +179 -0
  3. package/package.json +29 -0
  4. package/template/CLAUDE.md +160 -0
  5. package/template/README.md +102 -0
  6. package/template/_gitignore +5 -0
  7. package/template/biome.json +40 -0
  8. package/template/index.html +13 -0
  9. package/template/package.json +30 -0
  10. package/template/rust/README.md +16 -0
  11. package/template/rust/sia-sdk-rs/.changeset/added_cancel_function_to_cancel_inflight_packed_uploads.md +6 -0
  12. package/template/rust/sia-sdk-rs/.changeset/check_if_we_have_enough_hosts_prior_to_encoding_in_upload_slabs.md +16 -0
  13. package/template/rust/sia-sdk-rs/.changeset/fix_slab_length_in_packed_object.md +5 -0
  14. package/template/rust/sia-sdk-rs/.changeset/fix_upload_racing_race_conditon.md +13 -0
  15. package/template/rust/sia-sdk-rs/.changeset/improved_parallelism_of_packed_uploads.md +5 -0
  16. package/template/rust/sia-sdk-rs/.changeset/progress_callback_will_now_be_called_as_expected_for_packed_uploads.md +5 -0
  17. package/template/rust/sia-sdk-rs/.github/dependabot.yml +10 -0
  18. package/template/rust/sia-sdk-rs/.github/workflows/main.yml +36 -0
  19. package/template/rust/sia-sdk-rs/.github/workflows/prepare-release.yml +34 -0
  20. package/template/rust/sia-sdk-rs/.github/workflows/release.yml +30 -0
  21. package/template/rust/sia-sdk-rs/.rustfmt.toml +4 -0
  22. package/template/rust/sia-sdk-rs/Cargo.lock +4127 -0
  23. package/template/rust/sia-sdk-rs/Cargo.toml +3 -0
  24. package/template/rust/sia-sdk-rs/LICENSE +21 -0
  25. package/template/rust/sia-sdk-rs/README.md +30 -0
  26. package/template/rust/sia-sdk-rs/indexd/CHANGELOG.md +79 -0
  27. package/template/rust/sia-sdk-rs/indexd/Cargo.toml +79 -0
  28. package/template/rust/sia-sdk-rs/indexd/benches/upload.rs +258 -0
  29. package/template/rust/sia-sdk-rs/indexd/src/app_client.rs +1710 -0
  30. package/template/rust/sia-sdk-rs/indexd/src/builder.rs +354 -0
  31. package/template/rust/sia-sdk-rs/indexd/src/download.rs +379 -0
  32. package/template/rust/sia-sdk-rs/indexd/src/hosts.rs +659 -0
  33. package/template/rust/sia-sdk-rs/indexd/src/lib.rs +827 -0
  34. package/template/rust/sia-sdk-rs/indexd/src/mock.rs +162 -0
  35. package/template/rust/sia-sdk-rs/indexd/src/object_encryption.rs +125 -0
  36. package/template/rust/sia-sdk-rs/indexd/src/quic.rs +575 -0
  37. package/template/rust/sia-sdk-rs/indexd/src/rhp4.rs +52 -0
  38. package/template/rust/sia-sdk-rs/indexd/src/slabs.rs +497 -0
  39. package/template/rust/sia-sdk-rs/indexd/src/upload.rs +629 -0
  40. package/template/rust/sia-sdk-rs/indexd/src/wasm_time.rs +41 -0
  41. package/template/rust/sia-sdk-rs/indexd/src/web_transport.rs +398 -0
  42. package/template/rust/sia-sdk-rs/indexd_ffi/CHANGELOG.md +76 -0
  43. package/template/rust/sia-sdk-rs/indexd_ffi/Cargo.toml +47 -0
  44. package/template/rust/sia-sdk-rs/indexd_ffi/examples/python/README.md +10 -0
  45. package/template/rust/sia-sdk-rs/indexd_ffi/examples/python/example.py +130 -0
  46. package/template/rust/sia-sdk-rs/indexd_ffi/src/bin/uniffi-bindgen.rs +3 -0
  47. package/template/rust/sia-sdk-rs/indexd_ffi/src/builder.rs +377 -0
  48. package/template/rust/sia-sdk-rs/indexd_ffi/src/io.rs +155 -0
  49. package/template/rust/sia-sdk-rs/indexd_ffi/src/lib.rs +1039 -0
  50. package/template/rust/sia-sdk-rs/indexd_ffi/src/logging.rs +58 -0
  51. package/template/rust/sia-sdk-rs/indexd_ffi/src/tls.rs +23 -0
  52. package/template/rust/sia-sdk-rs/indexd_wasm/Cargo.toml +33 -0
  53. package/template/rust/sia-sdk-rs/indexd_wasm/src/lib.rs +818 -0
  54. package/template/rust/sia-sdk-rs/knope.toml +54 -0
  55. package/template/rust/sia-sdk-rs/sia_derive/CHANGELOG.md +38 -0
  56. package/template/rust/sia-sdk-rs/sia_derive/Cargo.toml +19 -0
  57. package/template/rust/sia-sdk-rs/sia_derive/src/lib.rs +278 -0
  58. package/template/rust/sia-sdk-rs/sia_sdk/CHANGELOG.md +91 -0
  59. package/template/rust/sia-sdk-rs/sia_sdk/Cargo.toml +59 -0
  60. package/template/rust/sia-sdk-rs/sia_sdk/benches/merkle_root.rs +12 -0
  61. package/template/rust/sia-sdk-rs/sia_sdk/src/blake2.rs +22 -0
  62. package/template/rust/sia-sdk-rs/sia_sdk/src/consensus.rs +767 -0
  63. package/template/rust/sia-sdk-rs/sia_sdk/src/encoding/v1.rs +257 -0
  64. package/template/rust/sia-sdk-rs/sia_sdk/src/encoding/v2.rs +291 -0
  65. package/template/rust/sia-sdk-rs/sia_sdk/src/encoding.rs +26 -0
  66. package/template/rust/sia-sdk-rs/sia_sdk/src/encoding_async/v2.rs +367 -0
  67. package/template/rust/sia-sdk-rs/sia_sdk/src/encoding_async.rs +6 -0
  68. package/template/rust/sia-sdk-rs/sia_sdk/src/encryption.rs +303 -0
  69. package/template/rust/sia-sdk-rs/sia_sdk/src/erasure_coding.rs +347 -0
  70. package/template/rust/sia-sdk-rs/sia_sdk/src/lib.rs +15 -0
  71. package/template/rust/sia-sdk-rs/sia_sdk/src/macros.rs +435 -0
  72. package/template/rust/sia-sdk-rs/sia_sdk/src/merkle.rs +112 -0
  73. package/template/rust/sia-sdk-rs/sia_sdk/src/rhp/merkle.rs +357 -0
  74. package/template/rust/sia-sdk-rs/sia_sdk/src/rhp/rpc.rs +1507 -0
  75. package/template/rust/sia-sdk-rs/sia_sdk/src/rhp/types.rs +146 -0
  76. package/template/rust/sia-sdk-rs/sia_sdk/src/rhp.rs +7 -0
  77. package/template/rust/sia-sdk-rs/sia_sdk/src/seed.rs +278 -0
  78. package/template/rust/sia-sdk-rs/sia_sdk/src/signing.rs +236 -0
  79. package/template/rust/sia-sdk-rs/sia_sdk/src/types/common.rs +677 -0
  80. package/template/rust/sia-sdk-rs/sia_sdk/src/types/currency.rs +450 -0
  81. package/template/rust/sia-sdk-rs/sia_sdk/src/types/specifier.rs +110 -0
  82. package/template/rust/sia-sdk-rs/sia_sdk/src/types/spendpolicy.rs +778 -0
  83. package/template/rust/sia-sdk-rs/sia_sdk/src/types/utils.rs +117 -0
  84. package/template/rust/sia-sdk-rs/sia_sdk/src/types/v1.rs +1737 -0
  85. package/template/rust/sia-sdk-rs/sia_sdk/src/types/v2.rs +1726 -0
  86. package/template/rust/sia-sdk-rs/sia_sdk/src/types/work.rs +59 -0
  87. package/template/rust/sia-sdk-rs/sia_sdk/src/types.rs +16 -0
  88. package/template/scripts/setup-rust.js +29 -0
  89. package/template/src/App.tsx +13 -0
  90. package/template/src/components/DevNote.tsx +21 -0
  91. package/template/src/components/auth/ApproveScreen.tsx +84 -0
  92. package/template/src/components/auth/AuthFlow.tsx +77 -0
  93. package/template/src/components/auth/ConnectScreen.tsx +214 -0
  94. package/template/src/components/auth/LoadingScreen.tsx +8 -0
  95. package/template/src/components/auth/RecoveryScreen.tsx +182 -0
  96. package/template/src/components/upload/UploadZone.tsx +314 -0
  97. package/template/src/index.css +9 -0
  98. package/template/src/lib/constants.ts +8 -0
  99. package/template/src/lib/format.ts +35 -0
  100. package/template/src/lib/hex.ts +13 -0
  101. package/template/src/lib/sdk.ts +25 -0
  102. package/template/src/lib/wasm-env.ts +5 -0
  103. package/template/src/main.tsx +12 -0
  104. package/template/src/stores/auth.ts +86 -0
  105. package/template/tsconfig.app.json +31 -0
  106. package/template/tsconfig.json +7 -0
  107. package/template/tsconfig.node.json +26 -0
  108. package/template/vite.config.ts +18 -0
  109. package/template/wasm/indexd_wasm/indexd_wasm.d.ts +309 -0
  110. package/template/wasm/indexd_wasm/indexd_wasm.js +1507 -0
  111. package/template/wasm/indexd_wasm/indexd_wasm_bg.wasm +0 -0
  112. package/template/wasm/indexd_wasm/package.json +31 -0
@@ -0,0 +1,4127 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common 0.1.6",
12
+ "generic-array",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "ahash"
17
+ version = "0.7.8"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
20
+ dependencies = [
21
+ "getrandom 0.2.16",
22
+ "once_cell",
23
+ "version_check",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aho-corasick"
28
+ version = "1.1.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
31
+ dependencies = [
32
+ "memchr",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "alloca"
37
+ version = "0.4.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
40
+ dependencies = [
41
+ "cc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "android_system_properties"
46
+ version = "0.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
49
+ dependencies = [
50
+ "libc",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anes"
55
+ version = "0.1.6"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
58
+
59
+ [[package]]
60
+ name = "anstyle"
61
+ version = "1.0.13"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
64
+
65
+ [[package]]
66
+ name = "anyhow"
67
+ version = "1.0.100"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
70
+
71
+ [[package]]
72
+ name = "arrayref"
73
+ version = "0.3.9"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
76
+
77
+ [[package]]
78
+ name = "arrayvec"
79
+ version = "0.7.6"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
82
+
83
+ [[package]]
84
+ name = "askama"
85
+ version = "0.13.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7"
88
+ dependencies = [
89
+ "askama_derive",
90
+ "itoa",
91
+ "percent-encoding",
92
+ "serde",
93
+ "serde_json",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "askama_derive"
98
+ version = "0.13.1"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac"
101
+ dependencies = [
102
+ "askama_parser",
103
+ "basic-toml",
104
+ "memchr",
105
+ "proc-macro2",
106
+ "quote",
107
+ "rustc-hash",
108
+ "serde",
109
+ "serde_derive",
110
+ "syn",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "askama_parser"
115
+ version = "0.13.0"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "cf315ce6524c857bb129ff794935cf6d42c82a6cff60526fe2a63593de4d0d4f"
118
+ dependencies = [
119
+ "memchr",
120
+ "serde",
121
+ "serde_derive",
122
+ "winnow",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "async-compat"
127
+ version = "0.2.5"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "a1ba85bc55464dcbf728b56d97e119d673f4cf9062be330a9a26f3acf504a590"
130
+ dependencies = [
131
+ "futures-core",
132
+ "futures-io",
133
+ "once_cell",
134
+ "pin-project-lite",
135
+ "tokio",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "async-trait"
140
+ version = "0.1.89"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
143
+ dependencies = [
144
+ "proc-macro2",
145
+ "quote",
146
+ "syn",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "atomic-waker"
151
+ version = "1.1.2"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
154
+
155
+ [[package]]
156
+ name = "autocfg"
157
+ version = "1.5.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
160
+
161
+ [[package]]
162
+ name = "base64"
163
+ version = "0.22.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
166
+
167
+ [[package]]
168
+ name = "base64ct"
169
+ version = "1.8.0"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
172
+
173
+ [[package]]
174
+ name = "basic-toml"
175
+ version = "0.1.10"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
178
+ dependencies = [
179
+ "serde",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "bip39"
184
+ version = "2.2.2"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc"
187
+ dependencies = [
188
+ "bitcoin_hashes",
189
+ "serde",
190
+ "unicode-normalization",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "bitcoin-internals"
195
+ version = "0.2.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
198
+
199
+ [[package]]
200
+ name = "bitcoin_hashes"
201
+ version = "0.13.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
204
+ dependencies = [
205
+ "bitcoin-internals",
206
+ "hex-conservative",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "bitflags"
211
+ version = "1.3.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
214
+
215
+ [[package]]
216
+ name = "bitflags"
217
+ version = "2.10.0"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
220
+
221
+ [[package]]
222
+ name = "blake2"
223
+ version = "0.10.6"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
226
+ dependencies = [
227
+ "digest",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "blake2b_simd"
232
+ version = "1.0.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "b79834656f71332577234b50bfc009996f7449e0c056884e6a02492ded0ca2f3"
235
+ dependencies = [
236
+ "arrayref",
237
+ "arrayvec",
238
+ "constant_time_eq",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "block-buffer"
243
+ version = "0.10.4"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
246
+ dependencies = [
247
+ "generic-array",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "block-buffer"
252
+ version = "0.11.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
255
+ dependencies = [
256
+ "hybrid-array",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "bstr"
261
+ version = "1.12.1"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
264
+ dependencies = [
265
+ "memchr",
266
+ "regex-automata",
267
+ "serde",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "bumpalo"
272
+ version = "3.19.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
275
+
276
+ [[package]]
277
+ name = "byteorder"
278
+ version = "1.5.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
281
+
282
+ [[package]]
283
+ name = "bytes"
284
+ version = "1.11.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
287
+
288
+ [[package]]
289
+ name = "camino"
290
+ version = "1.2.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
293
+ dependencies = [
294
+ "serde_core",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "cargo-platform"
299
+ version = "0.1.9"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
302
+ dependencies = [
303
+ "serde",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "cargo_metadata"
308
+ version = "0.19.2"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
311
+ dependencies = [
312
+ "camino",
313
+ "cargo-platform",
314
+ "semver",
315
+ "serde",
316
+ "serde_json",
317
+ "thiserror 2.0.18",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "cast"
322
+ version = "0.3.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
325
+
326
+ [[package]]
327
+ name = "cc"
328
+ version = "1.2.44"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3"
331
+ dependencies = [
332
+ "find-msvc-tools",
333
+ "shlex",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "cesu8"
338
+ version = "1.1.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
341
+
342
+ [[package]]
343
+ name = "cfg-if"
344
+ version = "1.0.4"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
347
+
348
+ [[package]]
349
+ name = "cfg_aliases"
350
+ version = "0.2.1"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
353
+
354
+ [[package]]
355
+ name = "chacha20"
356
+ version = "0.9.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
359
+ dependencies = [
360
+ "cfg-if",
361
+ "cipher 0.4.4",
362
+ "cpufeatures 0.2.17",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "chacha20"
367
+ version = "0.10.0"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
370
+ dependencies = [
371
+ "cfg-if",
372
+ "cipher 0.5.0",
373
+ "cpufeatures 0.3.0",
374
+ "rand_core 0.10.0",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "chacha20poly1305"
379
+ version = "0.10.1"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
382
+ dependencies = [
383
+ "aead",
384
+ "chacha20 0.9.1",
385
+ "cipher 0.4.4",
386
+ "poly1305",
387
+ "zeroize",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "chrono"
392
+ version = "0.4.43"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
395
+ dependencies = [
396
+ "iana-time-zone",
397
+ "js-sys",
398
+ "num-traits",
399
+ "serde",
400
+ "wasm-bindgen",
401
+ "windows-link",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "ciborium"
406
+ version = "0.2.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
409
+ dependencies = [
410
+ "ciborium-io",
411
+ "ciborium-ll",
412
+ "serde",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "ciborium-io"
417
+ version = "0.2.2"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
420
+
421
+ [[package]]
422
+ name = "ciborium-ll"
423
+ version = "0.2.2"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
426
+ dependencies = [
427
+ "ciborium-io",
428
+ "half",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "cipher"
433
+ version = "0.4.4"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
436
+ dependencies = [
437
+ "crypto-common 0.1.6",
438
+ "inout 0.1.4",
439
+ "zeroize",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "cipher"
444
+ version = "0.5.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "64727038c8c5e2bb503a15b9f5b9df50a1da9a33e83e1f93067d914f2c6604a5"
447
+ dependencies = [
448
+ "block-buffer 0.11.0",
449
+ "crypto-common 0.2.0",
450
+ "inout 0.2.2",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "clap"
455
+ version = "4.5.51"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
458
+ dependencies = [
459
+ "clap_builder",
460
+ "clap_derive",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "clap_builder"
465
+ version = "4.5.51"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
468
+ dependencies = [
469
+ "anstyle",
470
+ "clap_lex",
471
+ "strsim",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "clap_derive"
476
+ version = "4.5.49"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
479
+ dependencies = [
480
+ "heck",
481
+ "proc-macro2",
482
+ "quote",
483
+ "syn",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "clap_lex"
488
+ version = "0.7.6"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
491
+
492
+ [[package]]
493
+ name = "combine"
494
+ version = "4.6.7"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
497
+ dependencies = [
498
+ "bytes",
499
+ "memchr",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "console_error_panic_hook"
504
+ version = "0.1.7"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
507
+ dependencies = [
508
+ "cfg-if",
509
+ "wasm-bindgen",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "console_log"
514
+ version = "1.0.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
517
+ dependencies = [
518
+ "log",
519
+ "web-sys",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "const-oid"
524
+ version = "0.9.6"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
527
+
528
+ [[package]]
529
+ name = "constant_time_eq"
530
+ version = "0.4.2"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
533
+
534
+ [[package]]
535
+ name = "core-foundation"
536
+ version = "0.10.1"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
539
+ dependencies = [
540
+ "core-foundation-sys",
541
+ "libc",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "core-foundation-sys"
546
+ version = "0.8.7"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
549
+
550
+ [[package]]
551
+ name = "cpufeatures"
552
+ version = "0.2.17"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
555
+ dependencies = [
556
+ "libc",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "cpufeatures"
561
+ version = "0.3.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
564
+ dependencies = [
565
+ "libc",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "criterion"
570
+ version = "0.8.2"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
573
+ dependencies = [
574
+ "alloca",
575
+ "anes",
576
+ "cast",
577
+ "ciborium",
578
+ "clap",
579
+ "criterion-plot",
580
+ "itertools",
581
+ "num-traits",
582
+ "oorandom",
583
+ "page_size",
584
+ "plotters",
585
+ "rayon",
586
+ "regex",
587
+ "serde",
588
+ "serde_json",
589
+ "tinytemplate",
590
+ "tokio",
591
+ "walkdir",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "criterion-plot"
596
+ version = "0.8.2"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
599
+ dependencies = [
600
+ "cast",
601
+ "itertools",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "crossbeam-channel"
606
+ version = "0.5.15"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
609
+ dependencies = [
610
+ "crossbeam-utils",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "crossbeam-deque"
615
+ version = "0.8.6"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
618
+ dependencies = [
619
+ "crossbeam-epoch",
620
+ "crossbeam-utils",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "crossbeam-epoch"
625
+ version = "0.9.18"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
628
+ dependencies = [
629
+ "crossbeam-utils",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "crossbeam-utils"
634
+ version = "0.8.21"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
637
+
638
+ [[package]]
639
+ name = "crunchy"
640
+ version = "0.2.4"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
643
+
644
+ [[package]]
645
+ name = "crypto-common"
646
+ version = "0.1.6"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
649
+ dependencies = [
650
+ "generic-array",
651
+ "rand_core 0.6.4",
652
+ "typenum",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "crypto-common"
657
+ version = "0.2.0"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "211f05e03c7d03754740fd9e585de910a095d6b99f8bcfffdef8319fa02a8331"
660
+ dependencies = [
661
+ "hybrid-array",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "curve25519-dalek"
666
+ version = "4.1.3"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
669
+ dependencies = [
670
+ "cfg-if",
671
+ "cpufeatures 0.2.17",
672
+ "curve25519-dalek-derive",
673
+ "digest",
674
+ "fiat-crypto",
675
+ "rustc_version",
676
+ "subtle",
677
+ "zeroize",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "curve25519-dalek-derive"
682
+ version = "0.1.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
685
+ dependencies = [
686
+ "proc-macro2",
687
+ "quote",
688
+ "syn",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "darling"
693
+ version = "0.21.3"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
696
+ dependencies = [
697
+ "darling_core",
698
+ "darling_macro",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "darling_core"
703
+ version = "0.21.3"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
706
+ dependencies = [
707
+ "fnv",
708
+ "ident_case",
709
+ "proc-macro2",
710
+ "quote",
711
+ "strsim",
712
+ "syn",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "darling_macro"
717
+ version = "0.21.3"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
720
+ dependencies = [
721
+ "darling_core",
722
+ "quote",
723
+ "syn",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "der"
728
+ version = "0.7.10"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
731
+ dependencies = [
732
+ "const-oid",
733
+ "zeroize",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "deranged"
738
+ version = "0.5.5"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
741
+ dependencies = [
742
+ "powerfmt",
743
+ "serde_core",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "digest"
748
+ version = "0.10.7"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
751
+ dependencies = [
752
+ "block-buffer 0.10.4",
753
+ "crypto-common 0.1.6",
754
+ "subtle",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "displaydoc"
759
+ version = "0.2.5"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
762
+ dependencies = [
763
+ "proc-macro2",
764
+ "quote",
765
+ "syn",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "dyn-clone"
770
+ version = "1.0.20"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
773
+
774
+ [[package]]
775
+ name = "ed25519"
776
+ version = "2.2.3"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
779
+ dependencies = [
780
+ "pkcs8",
781
+ "signature",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "ed25519-dalek"
786
+ version = "2.2.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
789
+ dependencies = [
790
+ "curve25519-dalek",
791
+ "ed25519",
792
+ "serde",
793
+ "sha2",
794
+ "subtle",
795
+ "zeroize",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "either"
800
+ version = "1.15.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
803
+
804
+ [[package]]
805
+ name = "encoding_rs"
806
+ version = "0.8.35"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
809
+ dependencies = [
810
+ "cfg-if",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "env_logger"
815
+ version = "0.10.2"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
818
+ dependencies = [
819
+ "humantime",
820
+ "is-terminal",
821
+ "log",
822
+ "regex",
823
+ "termcolor",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "equivalent"
828
+ version = "1.0.2"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
831
+
832
+ [[package]]
833
+ name = "errno"
834
+ version = "0.3.14"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
837
+ dependencies = [
838
+ "libc",
839
+ "windows-sys 0.61.2",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "fastbloom"
844
+ version = "0.14.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "18c1ddb9231d8554c2d6bdf4cfaabf0c59251658c68b6c95cd52dd0c513a912a"
847
+ dependencies = [
848
+ "getrandom 0.3.4",
849
+ "libm",
850
+ "rand 0.9.2",
851
+ "siphasher 1.0.1",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "fastrand"
856
+ version = "2.3.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
859
+
860
+ [[package]]
861
+ name = "fiat-crypto"
862
+ version = "0.2.9"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
865
+
866
+ [[package]]
867
+ name = "find-msvc-tools"
868
+ version = "0.1.4"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
871
+
872
+ [[package]]
873
+ name = "fnv"
874
+ version = "1.0.7"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
877
+
878
+ [[package]]
879
+ name = "foldhash"
880
+ version = "0.1.5"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
883
+
884
+ [[package]]
885
+ name = "form_urlencoded"
886
+ version = "1.2.2"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
889
+ dependencies = [
890
+ "percent-encoding",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "fs-err"
895
+ version = "2.11.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
898
+ dependencies = [
899
+ "autocfg",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "futures"
904
+ version = "0.3.31"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
907
+ dependencies = [
908
+ "futures-channel",
909
+ "futures-core",
910
+ "futures-io",
911
+ "futures-sink",
912
+ "futures-task",
913
+ "futures-util",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "futures-channel"
918
+ version = "0.3.31"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
921
+ dependencies = [
922
+ "futures-core",
923
+ "futures-sink",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "futures-core"
928
+ version = "0.3.31"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
931
+
932
+ [[package]]
933
+ name = "futures-io"
934
+ version = "0.3.31"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
937
+
938
+ [[package]]
939
+ name = "futures-macro"
940
+ version = "0.3.31"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
943
+ dependencies = [
944
+ "proc-macro2",
945
+ "quote",
946
+ "syn",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "futures-sink"
951
+ version = "0.3.31"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
954
+
955
+ [[package]]
956
+ name = "futures-task"
957
+ version = "0.3.31"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
960
+
961
+ [[package]]
962
+ name = "futures-util"
963
+ version = "0.3.31"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
966
+ dependencies = [
967
+ "futures-channel",
968
+ "futures-core",
969
+ "futures-io",
970
+ "futures-macro",
971
+ "futures-sink",
972
+ "futures-task",
973
+ "memchr",
974
+ "pin-project-lite",
975
+ "pin-utils",
976
+ "slab",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "generic-array"
981
+ version = "0.14.9"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
984
+ dependencies = [
985
+ "typenum",
986
+ "version_check",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "getrandom"
991
+ version = "0.2.16"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
994
+ dependencies = [
995
+ "cfg-if",
996
+ "js-sys",
997
+ "libc",
998
+ "wasi",
999
+ "wasm-bindgen",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "getrandom"
1004
+ version = "0.3.4"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1007
+ dependencies = [
1008
+ "cfg-if",
1009
+ "js-sys",
1010
+ "libc",
1011
+ "r-efi",
1012
+ "wasip2",
1013
+ "wasm-bindgen",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "getrandom"
1018
+ version = "0.4.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
1021
+ dependencies = [
1022
+ "cfg-if",
1023
+ "js-sys",
1024
+ "libc",
1025
+ "r-efi",
1026
+ "rand_core 0.10.0",
1027
+ "wasip2",
1028
+ "wasip3",
1029
+ "wasm-bindgen",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "glob"
1034
+ version = "0.3.3"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1037
+
1038
+ [[package]]
1039
+ name = "goblin"
1040
+ version = "0.8.2"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
1043
+ dependencies = [
1044
+ "log",
1045
+ "plain",
1046
+ "scroll",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "h2"
1051
+ version = "0.4.12"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1054
+ dependencies = [
1055
+ "atomic-waker",
1056
+ "bytes",
1057
+ "fnv",
1058
+ "futures-core",
1059
+ "futures-sink",
1060
+ "http",
1061
+ "indexmap 2.12.0",
1062
+ "slab",
1063
+ "tokio",
1064
+ "tokio-util",
1065
+ "tracing",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "half"
1070
+ version = "2.7.1"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1073
+ dependencies = [
1074
+ "cfg-if",
1075
+ "crunchy",
1076
+ "zerocopy",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "hashbrown"
1081
+ version = "0.12.3"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1084
+ dependencies = [
1085
+ "ahash",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "hashbrown"
1090
+ version = "0.15.5"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1093
+ dependencies = [
1094
+ "foldhash",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "hashbrown"
1099
+ version = "0.16.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1102
+
1103
+ [[package]]
1104
+ name = "heck"
1105
+ version = "0.5.0"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1108
+
1109
+ [[package]]
1110
+ name = "hermit-abi"
1111
+ version = "0.5.2"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1114
+
1115
+ [[package]]
1116
+ name = "hex"
1117
+ version = "0.4.3"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1120
+
1121
+ [[package]]
1122
+ name = "hex-conservative"
1123
+ version = "0.1.2"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20"
1126
+
1127
+ [[package]]
1128
+ name = "hkdf"
1129
+ version = "0.12.4"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1132
+ dependencies = [
1133
+ "hmac",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "hmac"
1138
+ version = "0.12.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1141
+ dependencies = [
1142
+ "digest",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "http"
1147
+ version = "1.3.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1150
+ dependencies = [
1151
+ "bytes",
1152
+ "fnv",
1153
+ "itoa",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "http-body"
1158
+ version = "1.0.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1161
+ dependencies = [
1162
+ "bytes",
1163
+ "http",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "http-body-util"
1168
+ version = "0.1.3"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1171
+ dependencies = [
1172
+ "bytes",
1173
+ "futures-core",
1174
+ "http",
1175
+ "http-body",
1176
+ "pin-project-lite",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "httparse"
1181
+ version = "1.10.1"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1184
+
1185
+ [[package]]
1186
+ name = "httpdate"
1187
+ version = "1.0.3"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1190
+
1191
+ [[package]]
1192
+ name = "httptest"
1193
+ version = "0.16.4"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "a422b4c865d103368628ae1247be6159ad8041f803eb9e2176cf69ad7d13da40"
1196
+ dependencies = [
1197
+ "bstr",
1198
+ "bytes",
1199
+ "crossbeam-channel",
1200
+ "form_urlencoded",
1201
+ "futures",
1202
+ "http",
1203
+ "http-body-util",
1204
+ "hyper",
1205
+ "hyper-util",
1206
+ "log",
1207
+ "once_cell",
1208
+ "regex",
1209
+ "serde",
1210
+ "serde_json",
1211
+ "serde_urlencoded",
1212
+ "tokio",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "humantime"
1217
+ version = "2.3.0"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1220
+
1221
+ [[package]]
1222
+ name = "hybrid-array"
1223
+ version = "0.4.7"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "e1b229d73f5803b562cc26e4da0396c8610a4ee209f4fac8fa4f8d709166dc45"
1226
+ dependencies = [
1227
+ "typenum",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "hyper"
1232
+ version = "1.7.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1235
+ dependencies = [
1236
+ "atomic-waker",
1237
+ "bytes",
1238
+ "futures-channel",
1239
+ "futures-core",
1240
+ "h2",
1241
+ "http",
1242
+ "http-body",
1243
+ "httparse",
1244
+ "httpdate",
1245
+ "itoa",
1246
+ "pin-project-lite",
1247
+ "pin-utils",
1248
+ "smallvec",
1249
+ "tokio",
1250
+ "want",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "hyper-rustls"
1255
+ version = "0.27.7"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1258
+ dependencies = [
1259
+ "http",
1260
+ "hyper",
1261
+ "hyper-util",
1262
+ "rustls",
1263
+ "rustls-pki-types",
1264
+ "tokio",
1265
+ "tokio-rustls",
1266
+ "tower-service",
1267
+ "webpki-roots",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "hyper-util"
1272
+ version = "0.1.17"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1275
+ dependencies = [
1276
+ "base64",
1277
+ "bytes",
1278
+ "futures-channel",
1279
+ "futures-core",
1280
+ "futures-util",
1281
+ "http",
1282
+ "http-body",
1283
+ "hyper",
1284
+ "ipnet",
1285
+ "libc",
1286
+ "percent-encoding",
1287
+ "pin-project-lite",
1288
+ "socket2",
1289
+ "tokio",
1290
+ "tower-service",
1291
+ "tracing",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "iana-time-zone"
1296
+ version = "0.1.64"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1299
+ dependencies = [
1300
+ "android_system_properties",
1301
+ "core-foundation-sys",
1302
+ "iana-time-zone-haiku",
1303
+ "js-sys",
1304
+ "log",
1305
+ "wasm-bindgen",
1306
+ "windows-core",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "iana-time-zone-haiku"
1311
+ version = "0.1.2"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1314
+ dependencies = [
1315
+ "cc",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "icu_collections"
1320
+ version = "2.1.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1323
+ dependencies = [
1324
+ "displaydoc",
1325
+ "potential_utf",
1326
+ "yoke",
1327
+ "zerofrom",
1328
+ "zerovec",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "icu_locale_core"
1333
+ version = "2.1.1"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1336
+ dependencies = [
1337
+ "displaydoc",
1338
+ "litemap",
1339
+ "tinystr",
1340
+ "writeable",
1341
+ "zerovec",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "icu_normalizer"
1346
+ version = "2.1.1"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1349
+ dependencies = [
1350
+ "icu_collections",
1351
+ "icu_normalizer_data",
1352
+ "icu_properties",
1353
+ "icu_provider",
1354
+ "smallvec",
1355
+ "zerovec",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "icu_normalizer_data"
1360
+ version = "2.1.1"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1363
+
1364
+ [[package]]
1365
+ name = "icu_properties"
1366
+ version = "2.1.1"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
1369
+ dependencies = [
1370
+ "icu_collections",
1371
+ "icu_locale_core",
1372
+ "icu_properties_data",
1373
+ "icu_provider",
1374
+ "zerotrie",
1375
+ "zerovec",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "icu_properties_data"
1380
+ version = "2.1.1"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
1383
+
1384
+ [[package]]
1385
+ name = "icu_provider"
1386
+ version = "2.1.1"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1389
+ dependencies = [
1390
+ "displaydoc",
1391
+ "icu_locale_core",
1392
+ "writeable",
1393
+ "yoke",
1394
+ "zerofrom",
1395
+ "zerotrie",
1396
+ "zerovec",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "id-arena"
1401
+ version = "2.3.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1404
+
1405
+ [[package]]
1406
+ name = "ident_case"
1407
+ version = "1.0.1"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1410
+
1411
+ [[package]]
1412
+ name = "idna"
1413
+ version = "1.1.0"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1416
+ dependencies = [
1417
+ "idna_adapter",
1418
+ "smallvec",
1419
+ "utf8_iter",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "idna_adapter"
1424
+ version = "1.2.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1427
+ dependencies = [
1428
+ "icu_normalizer",
1429
+ "icu_properties",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "indexd"
1434
+ version = "0.2.0"
1435
+ dependencies = [
1436
+ "async-trait",
1437
+ "base64",
1438
+ "blake2",
1439
+ "blake2b_simd",
1440
+ "bytes",
1441
+ "chacha20poly1305",
1442
+ "chrono",
1443
+ "criterion",
1444
+ "getrandom 0.2.16",
1445
+ "getrandom 0.4.1",
1446
+ "hex",
1447
+ "hkdf",
1448
+ "httptest",
1449
+ "js-sys",
1450
+ "log",
1451
+ "priority-queue",
1452
+ "quinn",
1453
+ "rand 0.10.0",
1454
+ "reqwest",
1455
+ "rustls",
1456
+ "rustls-platform-verifier",
1457
+ "serde",
1458
+ "serde_json",
1459
+ "serde_with",
1460
+ "sia_sdk",
1461
+ "thiserror 2.0.18",
1462
+ "tokio",
1463
+ "tokio-util",
1464
+ "url",
1465
+ "wasm-bindgen",
1466
+ "wasm-bindgen-futures",
1467
+ "web-sys",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "indexd_ffi"
1472
+ version = "0.3.0"
1473
+ dependencies = [
1474
+ "async-trait",
1475
+ "base64",
1476
+ "bytes",
1477
+ "indexd",
1478
+ "log",
1479
+ "pretty_env_logger",
1480
+ "rand 0.10.0",
1481
+ "rustls",
1482
+ "rustls-platform-verifier",
1483
+ "sia_sdk",
1484
+ "thiserror 2.0.18",
1485
+ "tokio",
1486
+ "tokio-stream",
1487
+ "tokio-util",
1488
+ "uniffi 0.29.4",
1489
+ "uniffi 0.30.0",
1490
+ "webpki-roots",
1491
+ "zeroize",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "indexd_wasm"
1496
+ version = "0.2.0"
1497
+ dependencies = [
1498
+ "chrono",
1499
+ "console_error_panic_hook",
1500
+ "console_log",
1501
+ "getrandom 0.2.16",
1502
+ "getrandom 0.4.1",
1503
+ "indexd",
1504
+ "js-sys",
1505
+ "log",
1506
+ "rand 0.10.0",
1507
+ "serde",
1508
+ "serde-wasm-bindgen",
1509
+ "serde_json",
1510
+ "sia_sdk",
1511
+ "thiserror 2.0.18",
1512
+ "tokio",
1513
+ "wasm-bindgen",
1514
+ "wasm-bindgen-futures",
1515
+ "web-sys",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "indexmap"
1520
+ version = "1.9.3"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1523
+ dependencies = [
1524
+ "autocfg",
1525
+ "hashbrown 0.12.3",
1526
+ "serde",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "indexmap"
1531
+ version = "2.12.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1534
+ dependencies = [
1535
+ "equivalent",
1536
+ "hashbrown 0.16.0",
1537
+ "serde",
1538
+ "serde_core",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "inout"
1543
+ version = "0.1.4"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1546
+ dependencies = [
1547
+ "generic-array",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "inout"
1552
+ version = "0.2.2"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
1555
+ dependencies = [
1556
+ "hybrid-array",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "instant"
1561
+ version = "0.1.13"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1564
+ dependencies = [
1565
+ "cfg-if",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "ipnet"
1570
+ version = "2.11.0"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1573
+
1574
+ [[package]]
1575
+ name = "iri-string"
1576
+ version = "0.7.10"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1579
+ dependencies = [
1580
+ "memchr",
1581
+ "serde",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "is-terminal"
1586
+ version = "0.4.17"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1589
+ dependencies = [
1590
+ "hermit-abi",
1591
+ "libc",
1592
+ "windows-sys 0.61.2",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "itertools"
1597
+ version = "0.13.0"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1600
+ dependencies = [
1601
+ "either",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "itoa"
1606
+ version = "1.0.15"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1609
+
1610
+ [[package]]
1611
+ name = "jni"
1612
+ version = "0.21.1"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1615
+ dependencies = [
1616
+ "cesu8",
1617
+ "cfg-if",
1618
+ "combine",
1619
+ "jni-sys",
1620
+ "log",
1621
+ "thiserror 1.0.69",
1622
+ "walkdir",
1623
+ "windows-sys 0.45.0",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "jni-sys"
1628
+ version = "0.3.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1631
+
1632
+ [[package]]
1633
+ name = "js-sys"
1634
+ version = "0.3.82"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
1637
+ dependencies = [
1638
+ "once_cell",
1639
+ "wasm-bindgen",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "leb128fmt"
1644
+ version = "0.1.0"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1647
+
1648
+ [[package]]
1649
+ name = "libc"
1650
+ version = "0.2.177"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1653
+
1654
+ [[package]]
1655
+ name = "libm"
1656
+ version = "0.2.15"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1659
+
1660
+ [[package]]
1661
+ name = "linux-raw-sys"
1662
+ version = "0.11.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1665
+
1666
+ [[package]]
1667
+ name = "litemap"
1668
+ version = "0.8.1"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1671
+
1672
+ [[package]]
1673
+ name = "lock_api"
1674
+ version = "0.4.14"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1677
+ dependencies = [
1678
+ "scopeguard",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "log"
1683
+ version = "0.4.29"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1686
+
1687
+ [[package]]
1688
+ name = "lru"
1689
+ version = "0.7.8"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a"
1692
+ dependencies = [
1693
+ "hashbrown 0.12.3",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "lru-slab"
1698
+ version = "0.1.2"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1701
+
1702
+ [[package]]
1703
+ name = "memchr"
1704
+ version = "2.7.6"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1707
+
1708
+ [[package]]
1709
+ name = "mime"
1710
+ version = "0.3.17"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1713
+
1714
+ [[package]]
1715
+ name = "minimal-lexical"
1716
+ version = "0.2.1"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1719
+
1720
+ [[package]]
1721
+ name = "mio"
1722
+ version = "1.1.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
1725
+ dependencies = [
1726
+ "libc",
1727
+ "wasi",
1728
+ "windows-sys 0.61.2",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "nom"
1733
+ version = "7.1.3"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1736
+ dependencies = [
1737
+ "memchr",
1738
+ "minimal-lexical",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "num-bigint"
1743
+ version = "0.4.6"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1746
+ dependencies = [
1747
+ "num-integer",
1748
+ "num-traits",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "num-conv"
1753
+ version = "0.2.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1756
+
1757
+ [[package]]
1758
+ name = "num-integer"
1759
+ version = "0.1.46"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1762
+ dependencies = [
1763
+ "num-traits",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "num-rational"
1768
+ version = "0.4.2"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1771
+ dependencies = [
1772
+ "num-bigint",
1773
+ "num-integer",
1774
+ "num-traits",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "num-traits"
1779
+ version = "0.2.19"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1782
+ dependencies = [
1783
+ "autocfg",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "once_cell"
1788
+ version = "1.21.3"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1791
+
1792
+ [[package]]
1793
+ name = "oorandom"
1794
+ version = "11.1.5"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1797
+
1798
+ [[package]]
1799
+ name = "opaque-debug"
1800
+ version = "0.3.1"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1803
+
1804
+ [[package]]
1805
+ name = "openssl-probe"
1806
+ version = "0.1.6"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1809
+
1810
+ [[package]]
1811
+ name = "page_size"
1812
+ version = "0.6.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1815
+ dependencies = [
1816
+ "libc",
1817
+ "winapi",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "parking_lot"
1822
+ version = "0.11.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
1825
+ dependencies = [
1826
+ "instant",
1827
+ "lock_api",
1828
+ "parking_lot_core",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "parking_lot_core"
1833
+ version = "0.8.6"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
1836
+ dependencies = [
1837
+ "cfg-if",
1838
+ "instant",
1839
+ "libc",
1840
+ "redox_syscall",
1841
+ "smallvec",
1842
+ "winapi",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "percent-encoding"
1847
+ version = "2.3.2"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1850
+
1851
+ [[package]]
1852
+ name = "pin-project-lite"
1853
+ version = "0.2.16"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1856
+
1857
+ [[package]]
1858
+ name = "pin-utils"
1859
+ version = "0.1.0"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1862
+
1863
+ [[package]]
1864
+ name = "pkcs8"
1865
+ version = "0.10.2"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1868
+ dependencies = [
1869
+ "der",
1870
+ "spki",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "plain"
1875
+ version = "0.2.3"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1878
+
1879
+ [[package]]
1880
+ name = "plotters"
1881
+ version = "0.3.7"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1884
+ dependencies = [
1885
+ "num-traits",
1886
+ "plotters-backend",
1887
+ "plotters-svg",
1888
+ "wasm-bindgen",
1889
+ "web-sys",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "plotters-backend"
1894
+ version = "0.3.7"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1897
+
1898
+ [[package]]
1899
+ name = "plotters-svg"
1900
+ version = "0.3.7"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1903
+ dependencies = [
1904
+ "plotters-backend",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "poly1305"
1909
+ version = "0.8.0"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
1912
+ dependencies = [
1913
+ "cpufeatures 0.2.17",
1914
+ "opaque-debug",
1915
+ "universal-hash",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "potential_utf"
1920
+ version = "0.1.4"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1923
+ dependencies = [
1924
+ "zerovec",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "powerfmt"
1929
+ version = "0.2.0"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1932
+
1933
+ [[package]]
1934
+ name = "ppv-lite86"
1935
+ version = "0.2.21"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1938
+ dependencies = [
1939
+ "zerocopy",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "pretty_env_logger"
1944
+ version = "0.5.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c"
1947
+ dependencies = [
1948
+ "env_logger",
1949
+ "log",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "prettyplease"
1954
+ version = "0.2.37"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1957
+ dependencies = [
1958
+ "proc-macro2",
1959
+ "syn",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "priority-queue"
1964
+ version = "2.7.0"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "93980406f12d9f8140ed5abe7155acb10bb1e69ea55c88960b9c2f117445ef96"
1967
+ dependencies = [
1968
+ "equivalent",
1969
+ "indexmap 2.12.0",
1970
+ "serde",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "proc-macro2"
1975
+ version = "1.0.106"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1978
+ dependencies = [
1979
+ "unicode-ident",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "quinn"
1984
+ version = "0.11.9"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1987
+ dependencies = [
1988
+ "bytes",
1989
+ "cfg_aliases",
1990
+ "pin-project-lite",
1991
+ "quinn-proto",
1992
+ "quinn-udp",
1993
+ "rustc-hash",
1994
+ "rustls",
1995
+ "socket2",
1996
+ "thiserror 2.0.18",
1997
+ "tokio",
1998
+ "tracing",
1999
+ "web-time",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "quinn-proto"
2004
+ version = "0.11.13"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2007
+ dependencies = [
2008
+ "bytes",
2009
+ "fastbloom",
2010
+ "getrandom 0.3.4",
2011
+ "lru-slab",
2012
+ "rand 0.9.2",
2013
+ "ring",
2014
+ "rustc-hash",
2015
+ "rustls",
2016
+ "rustls-pki-types",
2017
+ "slab",
2018
+ "thiserror 2.0.18",
2019
+ "tinyvec",
2020
+ "tracing",
2021
+ "web-time",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "quinn-udp"
2026
+ version = "0.5.14"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2029
+ dependencies = [
2030
+ "cfg_aliases",
2031
+ "libc",
2032
+ "once_cell",
2033
+ "socket2",
2034
+ "tracing",
2035
+ "windows-sys 0.60.2",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "quote"
2040
+ version = "1.0.44"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
2043
+ dependencies = [
2044
+ "proc-macro2",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "r-efi"
2049
+ version = "5.3.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2052
+
2053
+ [[package]]
2054
+ name = "rand"
2055
+ version = "0.9.2"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2058
+ dependencies = [
2059
+ "rand_chacha",
2060
+ "rand_core 0.9.3",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "rand"
2065
+ version = "0.10.0"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
2068
+ dependencies = [
2069
+ "chacha20 0.10.0",
2070
+ "getrandom 0.4.1",
2071
+ "rand_core 0.10.0",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "rand_chacha"
2076
+ version = "0.9.0"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2079
+ dependencies = [
2080
+ "ppv-lite86",
2081
+ "rand_core 0.9.3",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "rand_core"
2086
+ version = "0.6.4"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2089
+ dependencies = [
2090
+ "getrandom 0.2.16",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "rand_core"
2095
+ version = "0.9.3"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2098
+ dependencies = [
2099
+ "getrandom 0.3.4",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "rand_core"
2104
+ version = "0.10.0"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
2107
+
2108
+ [[package]]
2109
+ name = "rayon"
2110
+ version = "1.11.0"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2113
+ dependencies = [
2114
+ "either",
2115
+ "rayon-core",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "rayon-core"
2120
+ version = "1.13.0"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2123
+ dependencies = [
2124
+ "crossbeam-deque",
2125
+ "crossbeam-utils",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "redox_syscall"
2130
+ version = "0.2.16"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2133
+ dependencies = [
2134
+ "bitflags 1.3.2",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "reed-solomon-erasure"
2139
+ version = "6.0.0"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "7263373d500d4d4f505d43a2a662d475a894aa94503a1ee28e9188b5f3960d4f"
2142
+ dependencies = [
2143
+ "libm",
2144
+ "lru",
2145
+ "parking_lot",
2146
+ "smallvec",
2147
+ "spin",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "ref-cast"
2152
+ version = "1.0.25"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2155
+ dependencies = [
2156
+ "ref-cast-impl",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "ref-cast-impl"
2161
+ version = "1.0.25"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2164
+ dependencies = [
2165
+ "proc-macro2",
2166
+ "quote",
2167
+ "syn",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "regex"
2172
+ version = "1.12.2"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2175
+ dependencies = [
2176
+ "aho-corasick",
2177
+ "memchr",
2178
+ "regex-automata",
2179
+ "regex-syntax",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "regex-automata"
2184
+ version = "0.4.13"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2187
+ dependencies = [
2188
+ "aho-corasick",
2189
+ "memchr",
2190
+ "regex-syntax",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "regex-syntax"
2195
+ version = "0.8.8"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2198
+
2199
+ [[package]]
2200
+ name = "reqwest"
2201
+ version = "0.12.28"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2204
+ dependencies = [
2205
+ "base64",
2206
+ "bytes",
2207
+ "encoding_rs",
2208
+ "futures-core",
2209
+ "h2",
2210
+ "http",
2211
+ "http-body",
2212
+ "http-body-util",
2213
+ "hyper",
2214
+ "hyper-rustls",
2215
+ "hyper-util",
2216
+ "js-sys",
2217
+ "log",
2218
+ "mime",
2219
+ "percent-encoding",
2220
+ "pin-project-lite",
2221
+ "quinn",
2222
+ "rustls",
2223
+ "rustls-pki-types",
2224
+ "serde",
2225
+ "serde_json",
2226
+ "serde_urlencoded",
2227
+ "sync_wrapper",
2228
+ "tokio",
2229
+ "tokio-rustls",
2230
+ "tower",
2231
+ "tower-http",
2232
+ "tower-service",
2233
+ "url",
2234
+ "wasm-bindgen",
2235
+ "wasm-bindgen-futures",
2236
+ "web-sys",
2237
+ "webpki-roots",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "ring"
2242
+ version = "0.17.14"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2245
+ dependencies = [
2246
+ "cc",
2247
+ "cfg-if",
2248
+ "getrandom 0.2.16",
2249
+ "libc",
2250
+ "untrusted",
2251
+ "windows-sys 0.52.0",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "rustc-hash"
2256
+ version = "2.1.1"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2259
+
2260
+ [[package]]
2261
+ name = "rustc_version"
2262
+ version = "0.4.1"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2265
+ dependencies = [
2266
+ "semver",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "rustix"
2271
+ version = "1.1.2"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2274
+ dependencies = [
2275
+ "bitflags 2.10.0",
2276
+ "errno",
2277
+ "libc",
2278
+ "linux-raw-sys",
2279
+ "windows-sys 0.61.2",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "rustls"
2284
+ version = "0.23.36"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2287
+ dependencies = [
2288
+ "log",
2289
+ "once_cell",
2290
+ "ring",
2291
+ "rustls-pki-types",
2292
+ "rustls-webpki",
2293
+ "subtle",
2294
+ "zeroize",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "rustls-native-certs"
2299
+ version = "0.8.2"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
2302
+ dependencies = [
2303
+ "openssl-probe",
2304
+ "rustls-pki-types",
2305
+ "schannel",
2306
+ "security-framework",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "rustls-pki-types"
2311
+ version = "1.13.0"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
2314
+ dependencies = [
2315
+ "web-time",
2316
+ "zeroize",
2317
+ ]
2318
+
2319
+ [[package]]
2320
+ name = "rustls-platform-verifier"
2321
+ version = "0.6.2"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2324
+ dependencies = [
2325
+ "core-foundation",
2326
+ "core-foundation-sys",
2327
+ "jni",
2328
+ "log",
2329
+ "once_cell",
2330
+ "rustls",
2331
+ "rustls-native-certs",
2332
+ "rustls-platform-verifier-android",
2333
+ "rustls-webpki",
2334
+ "security-framework",
2335
+ "security-framework-sys",
2336
+ "webpki-root-certs",
2337
+ "windows-sys 0.61.2",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "rustls-platform-verifier-android"
2342
+ version = "0.1.1"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2345
+
2346
+ [[package]]
2347
+ name = "rustls-webpki"
2348
+ version = "0.103.8"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
2351
+ dependencies = [
2352
+ "ring",
2353
+ "rustls-pki-types",
2354
+ "untrusted",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "rustversion"
2359
+ version = "1.0.22"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2362
+
2363
+ [[package]]
2364
+ name = "ryu"
2365
+ version = "1.0.20"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2368
+
2369
+ [[package]]
2370
+ name = "same-file"
2371
+ version = "1.0.6"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2374
+ dependencies = [
2375
+ "winapi-util",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "schannel"
2380
+ version = "0.1.28"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2383
+ dependencies = [
2384
+ "windows-sys 0.61.2",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "schemars"
2389
+ version = "0.9.0"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
2392
+ dependencies = [
2393
+ "dyn-clone",
2394
+ "ref-cast",
2395
+ "serde",
2396
+ "serde_json",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "schemars"
2401
+ version = "1.0.5"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "1317c3bf3e7df961da95b0a56a172a02abead31276215a0497241a7624b487ce"
2404
+ dependencies = [
2405
+ "dyn-clone",
2406
+ "ref-cast",
2407
+ "serde",
2408
+ "serde_json",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "scopeguard"
2413
+ version = "1.2.0"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2416
+
2417
+ [[package]]
2418
+ name = "scroll"
2419
+ version = "0.12.0"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
2422
+ dependencies = [
2423
+ "scroll_derive",
2424
+ ]
2425
+
2426
+ [[package]]
2427
+ name = "scroll_derive"
2428
+ version = "0.12.1"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
2431
+ dependencies = [
2432
+ "proc-macro2",
2433
+ "quote",
2434
+ "syn",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "security-framework"
2439
+ version = "3.5.1"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
2442
+ dependencies = [
2443
+ "bitflags 2.10.0",
2444
+ "core-foundation",
2445
+ "core-foundation-sys",
2446
+ "libc",
2447
+ "security-framework-sys",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "security-framework-sys"
2452
+ version = "2.15.0"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2455
+ dependencies = [
2456
+ "core-foundation-sys",
2457
+ "libc",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "semver"
2462
+ version = "1.0.27"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2465
+ dependencies = [
2466
+ "serde",
2467
+ "serde_core",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "serde"
2472
+ version = "1.0.228"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2475
+ dependencies = [
2476
+ "serde_core",
2477
+ "serde_derive",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "serde-wasm-bindgen"
2482
+ version = "0.6.5"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2485
+ dependencies = [
2486
+ "js-sys",
2487
+ "serde",
2488
+ "wasm-bindgen",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "serde_core"
2493
+ version = "1.0.228"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2496
+ dependencies = [
2497
+ "serde_derive",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "serde_derive"
2502
+ version = "1.0.228"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2505
+ dependencies = [
2506
+ "proc-macro2",
2507
+ "quote",
2508
+ "syn",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "serde_json"
2513
+ version = "1.0.149"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2516
+ dependencies = [
2517
+ "itoa",
2518
+ "memchr",
2519
+ "serde",
2520
+ "serde_core",
2521
+ "zmij",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "serde_spanned"
2526
+ version = "1.0.3"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
2529
+ dependencies = [
2530
+ "serde_core",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "serde_urlencoded"
2535
+ version = "0.7.1"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2538
+ dependencies = [
2539
+ "form_urlencoded",
2540
+ "itoa",
2541
+ "ryu",
2542
+ "serde",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "serde_with"
2547
+ version = "3.16.1"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
2550
+ dependencies = [
2551
+ "base64",
2552
+ "chrono",
2553
+ "hex",
2554
+ "indexmap 1.9.3",
2555
+ "indexmap 2.12.0",
2556
+ "schemars 0.9.0",
2557
+ "schemars 1.0.5",
2558
+ "serde_core",
2559
+ "serde_json",
2560
+ "serde_with_macros",
2561
+ "time",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "serde_with_macros"
2566
+ version = "3.16.1"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
2569
+ dependencies = [
2570
+ "darling",
2571
+ "proc-macro2",
2572
+ "quote",
2573
+ "syn",
2574
+ ]
2575
+
2576
+ [[package]]
2577
+ name = "sha2"
2578
+ version = "0.10.9"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2581
+ dependencies = [
2582
+ "cfg-if",
2583
+ "cpufeatures 0.2.17",
2584
+ "digest",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "shlex"
2589
+ version = "1.3.0"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2592
+
2593
+ [[package]]
2594
+ name = "sia-sdk-derive"
2595
+ version = "0.0.6"
2596
+ dependencies = [
2597
+ "proc-macro2",
2598
+ "quote",
2599
+ "syn",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "sia_sdk"
2604
+ version = "0.2.0"
2605
+ dependencies = [
2606
+ "base64",
2607
+ "bip39",
2608
+ "blake2",
2609
+ "blake2b_simd",
2610
+ "bytes",
2611
+ "chacha20 0.10.0",
2612
+ "chrono",
2613
+ "criterion",
2614
+ "ed25519-dalek",
2615
+ "hex",
2616
+ "num-bigint",
2617
+ "num-rational",
2618
+ "num-traits",
2619
+ "rand 0.10.0",
2620
+ "rayon",
2621
+ "reed-solomon-erasure",
2622
+ "rustls-platform-verifier",
2623
+ "serde",
2624
+ "serde_json",
2625
+ "sha2",
2626
+ "sia-sdk-derive",
2627
+ "thiserror 2.0.18",
2628
+ "tokio",
2629
+ "uint",
2630
+ "zeroize",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "signature"
2635
+ version = "2.2.0"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2638
+ dependencies = [
2639
+ "rand_core 0.6.4",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "siphasher"
2644
+ version = "0.3.11"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2647
+
2648
+ [[package]]
2649
+ name = "siphasher"
2650
+ version = "1.0.1"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2653
+
2654
+ [[package]]
2655
+ name = "slab"
2656
+ version = "0.4.11"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2659
+
2660
+ [[package]]
2661
+ name = "smallvec"
2662
+ version = "1.15.1"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2665
+
2666
+ [[package]]
2667
+ name = "smawk"
2668
+ version = "0.3.2"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
2671
+
2672
+ [[package]]
2673
+ name = "socket2"
2674
+ version = "0.6.1"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2677
+ dependencies = [
2678
+ "libc",
2679
+ "windows-sys 0.60.2",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "spin"
2684
+ version = "0.9.8"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2687
+
2688
+ [[package]]
2689
+ name = "spki"
2690
+ version = "0.7.3"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2693
+ dependencies = [
2694
+ "base64ct",
2695
+ "der",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "stable_deref_trait"
2700
+ version = "1.2.1"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2703
+
2704
+ [[package]]
2705
+ name = "static_assertions"
2706
+ version = "1.1.0"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2709
+
2710
+ [[package]]
2711
+ name = "strsim"
2712
+ version = "0.11.1"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2715
+
2716
+ [[package]]
2717
+ name = "subtle"
2718
+ version = "2.6.1"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2721
+
2722
+ [[package]]
2723
+ name = "syn"
2724
+ version = "2.0.114"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
2727
+ dependencies = [
2728
+ "proc-macro2",
2729
+ "quote",
2730
+ "unicode-ident",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "sync_wrapper"
2735
+ version = "1.0.2"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2738
+ dependencies = [
2739
+ "futures-core",
2740
+ ]
2741
+
2742
+ [[package]]
2743
+ name = "synstructure"
2744
+ version = "0.13.2"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2747
+ dependencies = [
2748
+ "proc-macro2",
2749
+ "quote",
2750
+ "syn",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "tempfile"
2755
+ version = "3.23.0"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2758
+ dependencies = [
2759
+ "fastrand",
2760
+ "getrandom 0.3.4",
2761
+ "once_cell",
2762
+ "rustix",
2763
+ "windows-sys 0.61.2",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "termcolor"
2768
+ version = "1.4.1"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2771
+ dependencies = [
2772
+ "winapi-util",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "textwrap"
2777
+ version = "0.16.2"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
2780
+ dependencies = [
2781
+ "smawk",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "thiserror"
2786
+ version = "1.0.69"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2789
+ dependencies = [
2790
+ "thiserror-impl 1.0.69",
2791
+ ]
2792
+
2793
+ [[package]]
2794
+ name = "thiserror"
2795
+ version = "2.0.18"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2798
+ dependencies = [
2799
+ "thiserror-impl 2.0.18",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "thiserror-impl"
2804
+ version = "1.0.69"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2807
+ dependencies = [
2808
+ "proc-macro2",
2809
+ "quote",
2810
+ "syn",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "thiserror-impl"
2815
+ version = "2.0.18"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2818
+ dependencies = [
2819
+ "proc-macro2",
2820
+ "quote",
2821
+ "syn",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "time"
2826
+ version = "0.3.47"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2829
+ dependencies = [
2830
+ "deranged",
2831
+ "itoa",
2832
+ "num-conv",
2833
+ "powerfmt",
2834
+ "serde_core",
2835
+ "time-core",
2836
+ "time-macros",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "time-core"
2841
+ version = "0.1.8"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2844
+
2845
+ [[package]]
2846
+ name = "time-macros"
2847
+ version = "0.2.27"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2850
+ dependencies = [
2851
+ "num-conv",
2852
+ "time-core",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "tinystr"
2857
+ version = "0.8.2"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2860
+ dependencies = [
2861
+ "displaydoc",
2862
+ "zerovec",
2863
+ ]
2864
+
2865
+ [[package]]
2866
+ name = "tinytemplate"
2867
+ version = "1.2.1"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2870
+ dependencies = [
2871
+ "serde",
2872
+ "serde_json",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "tinyvec"
2877
+ version = "1.10.0"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2880
+ dependencies = [
2881
+ "tinyvec_macros",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "tinyvec_macros"
2886
+ version = "0.1.1"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2889
+
2890
+ [[package]]
2891
+ name = "tokio"
2892
+ version = "1.49.0"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2895
+ dependencies = [
2896
+ "bytes",
2897
+ "libc",
2898
+ "mio",
2899
+ "pin-project-lite",
2900
+ "socket2",
2901
+ "tokio-macros",
2902
+ "windows-sys 0.61.2",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "tokio-macros"
2907
+ version = "2.6.0"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2910
+ dependencies = [
2911
+ "proc-macro2",
2912
+ "quote",
2913
+ "syn",
2914
+ ]
2915
+
2916
+ [[package]]
2917
+ name = "tokio-rustls"
2918
+ version = "0.26.4"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2921
+ dependencies = [
2922
+ "rustls",
2923
+ "tokio",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "tokio-stream"
2928
+ version = "0.1.18"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2931
+ dependencies = [
2932
+ "futures-core",
2933
+ "pin-project-lite",
2934
+ "tokio",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "tokio-util"
2939
+ version = "0.7.18"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2942
+ dependencies = [
2943
+ "bytes",
2944
+ "futures-core",
2945
+ "futures-sink",
2946
+ "futures-util",
2947
+ "pin-project-lite",
2948
+ "tokio",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "toml"
2953
+ version = "0.5.11"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2956
+ dependencies = [
2957
+ "serde",
2958
+ ]
2959
+
2960
+ [[package]]
2961
+ name = "toml"
2962
+ version = "0.9.8"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
2965
+ dependencies = [
2966
+ "indexmap 2.12.0",
2967
+ "serde_core",
2968
+ "serde_spanned",
2969
+ "toml_datetime",
2970
+ "toml_parser",
2971
+ "toml_writer",
2972
+ "winnow",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "toml_datetime"
2977
+ version = "0.7.3"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
2980
+ dependencies = [
2981
+ "serde_core",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "toml_parser"
2986
+ version = "1.0.4"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
2989
+ dependencies = [
2990
+ "winnow",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "toml_writer"
2995
+ version = "1.0.4"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
2998
+
2999
+ [[package]]
3000
+ name = "tower"
3001
+ version = "0.5.3"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3004
+ dependencies = [
3005
+ "futures-core",
3006
+ "futures-util",
3007
+ "pin-project-lite",
3008
+ "sync_wrapper",
3009
+ "tokio",
3010
+ "tower-layer",
3011
+ "tower-service",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "tower-http"
3016
+ version = "0.6.8"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3019
+ dependencies = [
3020
+ "bitflags 2.10.0",
3021
+ "bytes",
3022
+ "futures-util",
3023
+ "http",
3024
+ "http-body",
3025
+ "iri-string",
3026
+ "pin-project-lite",
3027
+ "tower",
3028
+ "tower-layer",
3029
+ "tower-service",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "tower-layer"
3034
+ version = "0.3.3"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3037
+
3038
+ [[package]]
3039
+ name = "tower-service"
3040
+ version = "0.3.3"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3043
+
3044
+ [[package]]
3045
+ name = "tracing"
3046
+ version = "0.1.41"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3049
+ dependencies = [
3050
+ "log",
3051
+ "pin-project-lite",
3052
+ "tracing-core",
3053
+ ]
3054
+
3055
+ [[package]]
3056
+ name = "tracing-core"
3057
+ version = "0.1.34"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3060
+ dependencies = [
3061
+ "once_cell",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "try-lock"
3066
+ version = "0.2.5"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3069
+
3070
+ [[package]]
3071
+ name = "typenum"
3072
+ version = "1.19.0"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3075
+
3076
+ [[package]]
3077
+ name = "uint"
3078
+ version = "0.10.0"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "909988d098b2f738727b161a106cfc7cab00c539c2687a8836f8e565976fb53e"
3081
+ dependencies = [
3082
+ "byteorder",
3083
+ "crunchy",
3084
+ "hex",
3085
+ "static_assertions",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "unicode-ident"
3090
+ version = "1.0.22"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3093
+
3094
+ [[package]]
3095
+ name = "unicode-normalization"
3096
+ version = "0.1.25"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3099
+ dependencies = [
3100
+ "tinyvec",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "unicode-xid"
3105
+ version = "0.2.6"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3108
+
3109
+ [[package]]
3110
+ name = "uniffi"
3111
+ version = "0.29.4"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "c6d968cb62160c11f2573e6be724ef8b1b18a277aededd17033f8a912d73e2b4"
3114
+ dependencies = [
3115
+ "anyhow",
3116
+ "camino",
3117
+ "cargo_metadata",
3118
+ "clap",
3119
+ "uniffi_bindgen 0.29.4",
3120
+ "uniffi_core 0.29.4",
3121
+ "uniffi_macros 0.29.4",
3122
+ "uniffi_pipeline 0.29.4",
3123
+ ]
3124
+
3125
+ [[package]]
3126
+ name = "uniffi"
3127
+ version = "0.30.0"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "c866f627c3f04c3df068b68bb2d725492caaa539dd313e2a9d26bb85b1a32f4e"
3130
+ dependencies = [
3131
+ "anyhow",
3132
+ "cargo_metadata",
3133
+ "uniffi_bindgen 0.30.0",
3134
+ "uniffi_build",
3135
+ "uniffi_core 0.30.0",
3136
+ "uniffi_macros 0.30.0",
3137
+ "uniffi_pipeline 0.30.0",
3138
+ ]
3139
+
3140
+ [[package]]
3141
+ name = "uniffi_bindgen"
3142
+ version = "0.29.4"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "f6b39ef1acbe1467d5d210f274fae344cb6f8766339330cb4c9688752899bf6b"
3145
+ dependencies = [
3146
+ "anyhow",
3147
+ "askama",
3148
+ "camino",
3149
+ "cargo_metadata",
3150
+ "fs-err",
3151
+ "glob",
3152
+ "goblin",
3153
+ "heck",
3154
+ "indexmap 2.12.0",
3155
+ "once_cell",
3156
+ "serde",
3157
+ "tempfile",
3158
+ "textwrap",
3159
+ "toml 0.5.11",
3160
+ "uniffi_internal_macros 0.29.4",
3161
+ "uniffi_meta 0.29.4",
3162
+ "uniffi_pipeline 0.29.4",
3163
+ "uniffi_udl 0.29.4",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "uniffi_bindgen"
3168
+ version = "0.30.0"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "7c8ca600167641ebe7c8ba9254af40492dda3397c528cc3b2f511bd23e8541a5"
3171
+ dependencies = [
3172
+ "anyhow",
3173
+ "askama",
3174
+ "camino",
3175
+ "cargo_metadata",
3176
+ "fs-err",
3177
+ "glob",
3178
+ "goblin",
3179
+ "heck",
3180
+ "indexmap 2.12.0",
3181
+ "once_cell",
3182
+ "serde",
3183
+ "tempfile",
3184
+ "textwrap",
3185
+ "toml 0.9.8",
3186
+ "uniffi_internal_macros 0.30.0",
3187
+ "uniffi_meta 0.30.0",
3188
+ "uniffi_pipeline 0.30.0",
3189
+ "uniffi_udl 0.30.0",
3190
+ ]
3191
+
3192
+ [[package]]
3193
+ name = "uniffi_build"
3194
+ version = "0.30.0"
3195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3196
+ checksum = "3e55c05228f4858bb258f651d21d743fcc1fe5a2ec20d3c0f9daefddb105ee4d"
3197
+ dependencies = [
3198
+ "anyhow",
3199
+ "camino",
3200
+ "uniffi_bindgen 0.30.0",
3201
+ ]
3202
+
3203
+ [[package]]
3204
+ name = "uniffi_core"
3205
+ version = "0.29.4"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "c2d990b553d6b9a7ee9c3ae71134674739913d52350b56152b0e613595bb5a6f"
3208
+ dependencies = [
3209
+ "anyhow",
3210
+ "async-compat",
3211
+ "bytes",
3212
+ "once_cell",
3213
+ "static_assertions",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "uniffi_core"
3218
+ version = "0.30.0"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "7e7a5a038ebffe8f4cf91416b154ef3c2468b18e828b7009e01b1b99938089f9"
3221
+ dependencies = [
3222
+ "anyhow",
3223
+ "bytes",
3224
+ "once_cell",
3225
+ "static_assertions",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "uniffi_internal_macros"
3230
+ version = "0.29.4"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "04f4f224becf14885c10e6e400b95cc4d1985738140cb194ccc2044563f8a56b"
3233
+ dependencies = [
3234
+ "anyhow",
3235
+ "indexmap 2.12.0",
3236
+ "proc-macro2",
3237
+ "quote",
3238
+ "syn",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "uniffi_internal_macros"
3243
+ version = "0.30.0"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "e3c2a6f93e7b73726e2015696ece25ca0ac5a5f1cf8d6a7ab5214dd0a01d2edf"
3246
+ dependencies = [
3247
+ "anyhow",
3248
+ "indexmap 2.12.0",
3249
+ "proc-macro2",
3250
+ "quote",
3251
+ "syn",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "uniffi_macros"
3256
+ version = "0.29.4"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "b481d385af334871d70904e6a5f129be7cd38c18fcf8dd8fd1f646b426a56d58"
3259
+ dependencies = [
3260
+ "camino",
3261
+ "fs-err",
3262
+ "once_cell",
3263
+ "proc-macro2",
3264
+ "quote",
3265
+ "serde",
3266
+ "syn",
3267
+ "toml 0.5.11",
3268
+ "uniffi_meta 0.29.4",
3269
+ ]
3270
+
3271
+ [[package]]
3272
+ name = "uniffi_macros"
3273
+ version = "0.30.0"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "64c6309fc36c7992afc03bc0c5b059c656bccbef3f2a4bc362980017f8936141"
3276
+ dependencies = [
3277
+ "camino",
3278
+ "fs-err",
3279
+ "once_cell",
3280
+ "proc-macro2",
3281
+ "quote",
3282
+ "serde",
3283
+ "syn",
3284
+ "toml 0.9.8",
3285
+ "uniffi_meta 0.30.0",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "uniffi_meta"
3290
+ version = "0.29.4"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "10f817868a3b171bb7bf259e882138d104deafde65684689b4694c846d322491"
3293
+ dependencies = [
3294
+ "anyhow",
3295
+ "siphasher 0.3.11",
3296
+ "uniffi_internal_macros 0.29.4",
3297
+ "uniffi_pipeline 0.29.4",
3298
+ ]
3299
+
3300
+ [[package]]
3301
+ name = "uniffi_meta"
3302
+ version = "0.30.0"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "0a138823392dba19b0aa494872689f97d0ee157de5852e2bec157ce6de9cdc22"
3305
+ dependencies = [
3306
+ "anyhow",
3307
+ "siphasher 0.3.11",
3308
+ "uniffi_internal_macros 0.30.0",
3309
+ "uniffi_pipeline 0.30.0",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "uniffi_pipeline"
3314
+ version = "0.29.4"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "4b147e133ad7824e32426b90bc41fda584363563f2ba747f590eca1fd6fd14e6"
3317
+ dependencies = [
3318
+ "anyhow",
3319
+ "heck",
3320
+ "indexmap 2.12.0",
3321
+ "tempfile",
3322
+ "uniffi_internal_macros 0.29.4",
3323
+ ]
3324
+
3325
+ [[package]]
3326
+ name = "uniffi_pipeline"
3327
+ version = "0.30.0"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "8c27c4b515d25f8e53cc918e238c39a79c3144a40eaf2e51c4a7958973422c29"
3330
+ dependencies = [
3331
+ "anyhow",
3332
+ "heck",
3333
+ "indexmap 2.12.0",
3334
+ "tempfile",
3335
+ "uniffi_internal_macros 0.30.0",
3336
+ ]
3337
+
3338
+ [[package]]
3339
+ name = "uniffi_udl"
3340
+ version = "0.29.4"
3341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3342
+ checksum = "caed654fb73da5abbc7a7e9c741532284532ba4762d6fe5071372df22a41730a"
3343
+ dependencies = [
3344
+ "anyhow",
3345
+ "textwrap",
3346
+ "uniffi_meta 0.29.4",
3347
+ "weedle2",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "uniffi_udl"
3352
+ version = "0.30.0"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "d0adacdd848aeed7af4f5af7d2f621d5e82531325d405e29463482becfdeafca"
3355
+ dependencies = [
3356
+ "anyhow",
3357
+ "textwrap",
3358
+ "uniffi_meta 0.30.0",
3359
+ "weedle2",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "universal-hash"
3364
+ version = "0.5.1"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3367
+ dependencies = [
3368
+ "crypto-common 0.1.6",
3369
+ "subtle",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "untrusted"
3374
+ version = "0.9.0"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3377
+
3378
+ [[package]]
3379
+ name = "url"
3380
+ version = "2.5.8"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3383
+ dependencies = [
3384
+ "form_urlencoded",
3385
+ "idna",
3386
+ "percent-encoding",
3387
+ "serde",
3388
+ "serde_derive",
3389
+ ]
3390
+
3391
+ [[package]]
3392
+ name = "utf8_iter"
3393
+ version = "1.0.4"
3394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3395
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3396
+
3397
+ [[package]]
3398
+ name = "version_check"
3399
+ version = "0.9.5"
3400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3401
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3402
+
3403
+ [[package]]
3404
+ name = "walkdir"
3405
+ version = "2.5.0"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3408
+ dependencies = [
3409
+ "same-file",
3410
+ "winapi-util",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "want"
3415
+ version = "0.3.1"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3418
+ dependencies = [
3419
+ "try-lock",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "wasi"
3424
+ version = "0.11.1+wasi-snapshot-preview1"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3427
+
3428
+ [[package]]
3429
+ name = "wasip2"
3430
+ version = "1.0.1+wasi-0.2.4"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3433
+ dependencies = [
3434
+ "wit-bindgen 0.46.0",
3435
+ ]
3436
+
3437
+ [[package]]
3438
+ name = "wasip3"
3439
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3441
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3442
+ dependencies = [
3443
+ "wit-bindgen 0.51.0",
3444
+ ]
3445
+
3446
+ [[package]]
3447
+ name = "wasm-bindgen"
3448
+ version = "0.2.105"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
3451
+ dependencies = [
3452
+ "cfg-if",
3453
+ "once_cell",
3454
+ "rustversion",
3455
+ "wasm-bindgen-macro",
3456
+ "wasm-bindgen-shared",
3457
+ ]
3458
+
3459
+ [[package]]
3460
+ name = "wasm-bindgen-futures"
3461
+ version = "0.4.55"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
3464
+ dependencies = [
3465
+ "cfg-if",
3466
+ "js-sys",
3467
+ "once_cell",
3468
+ "wasm-bindgen",
3469
+ "web-sys",
3470
+ ]
3471
+
3472
+ [[package]]
3473
+ name = "wasm-bindgen-macro"
3474
+ version = "0.2.105"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
3477
+ dependencies = [
3478
+ "quote",
3479
+ "wasm-bindgen-macro-support",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "wasm-bindgen-macro-support"
3484
+ version = "0.2.105"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
3487
+ dependencies = [
3488
+ "bumpalo",
3489
+ "proc-macro2",
3490
+ "quote",
3491
+ "syn",
3492
+ "wasm-bindgen-shared",
3493
+ ]
3494
+
3495
+ [[package]]
3496
+ name = "wasm-bindgen-shared"
3497
+ version = "0.2.105"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
3500
+ dependencies = [
3501
+ "unicode-ident",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "wasm-encoder"
3506
+ version = "0.244.0"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3509
+ dependencies = [
3510
+ "leb128fmt",
3511
+ "wasmparser",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "wasm-metadata"
3516
+ version = "0.244.0"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3519
+ dependencies = [
3520
+ "anyhow",
3521
+ "indexmap 2.12.0",
3522
+ "wasm-encoder",
3523
+ "wasmparser",
3524
+ ]
3525
+
3526
+ [[package]]
3527
+ name = "wasmparser"
3528
+ version = "0.244.0"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3531
+ dependencies = [
3532
+ "bitflags 2.10.0",
3533
+ "hashbrown 0.15.5",
3534
+ "indexmap 2.12.0",
3535
+ "semver",
3536
+ ]
3537
+
3538
+ [[package]]
3539
+ name = "web-sys"
3540
+ version = "0.3.82"
3541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
3543
+ dependencies = [
3544
+ "js-sys",
3545
+ "wasm-bindgen",
3546
+ ]
3547
+
3548
+ [[package]]
3549
+ name = "web-time"
3550
+ version = "1.1.0"
3551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3552
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3553
+ dependencies = [
3554
+ "js-sys",
3555
+ "wasm-bindgen",
3556
+ ]
3557
+
3558
+ [[package]]
3559
+ name = "webpki-root-certs"
3560
+ version = "1.0.4"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b"
3563
+ dependencies = [
3564
+ "rustls-pki-types",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "webpki-roots"
3569
+ version = "1.0.6"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
3572
+ dependencies = [
3573
+ "rustls-pki-types",
3574
+ ]
3575
+
3576
+ [[package]]
3577
+ name = "weedle2"
3578
+ version = "5.0.0"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
3581
+ dependencies = [
3582
+ "nom",
3583
+ ]
3584
+
3585
+ [[package]]
3586
+ name = "winapi"
3587
+ version = "0.3.9"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3590
+ dependencies = [
3591
+ "winapi-i686-pc-windows-gnu",
3592
+ "winapi-x86_64-pc-windows-gnu",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "winapi-i686-pc-windows-gnu"
3597
+ version = "0.4.0"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3600
+
3601
+ [[package]]
3602
+ name = "winapi-util"
3603
+ version = "0.1.11"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3606
+ dependencies = [
3607
+ "windows-sys 0.61.2",
3608
+ ]
3609
+
3610
+ [[package]]
3611
+ name = "winapi-x86_64-pc-windows-gnu"
3612
+ version = "0.4.0"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3615
+
3616
+ [[package]]
3617
+ name = "windows-core"
3618
+ version = "0.62.2"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3621
+ dependencies = [
3622
+ "windows-implement",
3623
+ "windows-interface",
3624
+ "windows-link",
3625
+ "windows-result",
3626
+ "windows-strings",
3627
+ ]
3628
+
3629
+ [[package]]
3630
+ name = "windows-implement"
3631
+ version = "0.60.2"
3632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3633
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3634
+ dependencies = [
3635
+ "proc-macro2",
3636
+ "quote",
3637
+ "syn",
3638
+ ]
3639
+
3640
+ [[package]]
3641
+ name = "windows-interface"
3642
+ version = "0.59.3"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3645
+ dependencies = [
3646
+ "proc-macro2",
3647
+ "quote",
3648
+ "syn",
3649
+ ]
3650
+
3651
+ [[package]]
3652
+ name = "windows-link"
3653
+ version = "0.2.1"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3656
+
3657
+ [[package]]
3658
+ name = "windows-result"
3659
+ version = "0.4.1"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3662
+ dependencies = [
3663
+ "windows-link",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "windows-strings"
3668
+ version = "0.5.1"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3671
+ dependencies = [
3672
+ "windows-link",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "windows-sys"
3677
+ version = "0.45.0"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3680
+ dependencies = [
3681
+ "windows-targets 0.42.2",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "windows-sys"
3686
+ version = "0.52.0"
3687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3688
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3689
+ dependencies = [
3690
+ "windows-targets 0.52.6",
3691
+ ]
3692
+
3693
+ [[package]]
3694
+ name = "windows-sys"
3695
+ version = "0.60.2"
3696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3697
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3698
+ dependencies = [
3699
+ "windows-targets 0.53.5",
3700
+ ]
3701
+
3702
+ [[package]]
3703
+ name = "windows-sys"
3704
+ version = "0.61.2"
3705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3706
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3707
+ dependencies = [
3708
+ "windows-link",
3709
+ ]
3710
+
3711
+ [[package]]
3712
+ name = "windows-targets"
3713
+ version = "0.42.2"
3714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3715
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3716
+ dependencies = [
3717
+ "windows_aarch64_gnullvm 0.42.2",
3718
+ "windows_aarch64_msvc 0.42.2",
3719
+ "windows_i686_gnu 0.42.2",
3720
+ "windows_i686_msvc 0.42.2",
3721
+ "windows_x86_64_gnu 0.42.2",
3722
+ "windows_x86_64_gnullvm 0.42.2",
3723
+ "windows_x86_64_msvc 0.42.2",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "windows-targets"
3728
+ version = "0.52.6"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3731
+ dependencies = [
3732
+ "windows_aarch64_gnullvm 0.52.6",
3733
+ "windows_aarch64_msvc 0.52.6",
3734
+ "windows_i686_gnu 0.52.6",
3735
+ "windows_i686_gnullvm 0.52.6",
3736
+ "windows_i686_msvc 0.52.6",
3737
+ "windows_x86_64_gnu 0.52.6",
3738
+ "windows_x86_64_gnullvm 0.52.6",
3739
+ "windows_x86_64_msvc 0.52.6",
3740
+ ]
3741
+
3742
+ [[package]]
3743
+ name = "windows-targets"
3744
+ version = "0.53.5"
3745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3746
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3747
+ dependencies = [
3748
+ "windows-link",
3749
+ "windows_aarch64_gnullvm 0.53.1",
3750
+ "windows_aarch64_msvc 0.53.1",
3751
+ "windows_i686_gnu 0.53.1",
3752
+ "windows_i686_gnullvm 0.53.1",
3753
+ "windows_i686_msvc 0.53.1",
3754
+ "windows_x86_64_gnu 0.53.1",
3755
+ "windows_x86_64_gnullvm 0.53.1",
3756
+ "windows_x86_64_msvc 0.53.1",
3757
+ ]
3758
+
3759
+ [[package]]
3760
+ name = "windows_aarch64_gnullvm"
3761
+ version = "0.42.2"
3762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3763
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3764
+
3765
+ [[package]]
3766
+ name = "windows_aarch64_gnullvm"
3767
+ version = "0.52.6"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3770
+
3771
+ [[package]]
3772
+ name = "windows_aarch64_gnullvm"
3773
+ version = "0.53.1"
3774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3775
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3776
+
3777
+ [[package]]
3778
+ name = "windows_aarch64_msvc"
3779
+ version = "0.42.2"
3780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3781
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3782
+
3783
+ [[package]]
3784
+ name = "windows_aarch64_msvc"
3785
+ version = "0.52.6"
3786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3787
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3788
+
3789
+ [[package]]
3790
+ name = "windows_aarch64_msvc"
3791
+ version = "0.53.1"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3794
+
3795
+ [[package]]
3796
+ name = "windows_i686_gnu"
3797
+ version = "0.42.2"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3800
+
3801
+ [[package]]
3802
+ name = "windows_i686_gnu"
3803
+ version = "0.52.6"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3806
+
3807
+ [[package]]
3808
+ name = "windows_i686_gnu"
3809
+ version = "0.53.1"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3812
+
3813
+ [[package]]
3814
+ name = "windows_i686_gnullvm"
3815
+ version = "0.52.6"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3818
+
3819
+ [[package]]
3820
+ name = "windows_i686_gnullvm"
3821
+ version = "0.53.1"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3824
+
3825
+ [[package]]
3826
+ name = "windows_i686_msvc"
3827
+ version = "0.42.2"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3830
+
3831
+ [[package]]
3832
+ name = "windows_i686_msvc"
3833
+ version = "0.52.6"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3836
+
3837
+ [[package]]
3838
+ name = "windows_i686_msvc"
3839
+ version = "0.53.1"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3842
+
3843
+ [[package]]
3844
+ name = "windows_x86_64_gnu"
3845
+ version = "0.42.2"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3848
+
3849
+ [[package]]
3850
+ name = "windows_x86_64_gnu"
3851
+ version = "0.52.6"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3854
+
3855
+ [[package]]
3856
+ name = "windows_x86_64_gnu"
3857
+ version = "0.53.1"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3860
+
3861
+ [[package]]
3862
+ name = "windows_x86_64_gnullvm"
3863
+ version = "0.42.2"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3866
+
3867
+ [[package]]
3868
+ name = "windows_x86_64_gnullvm"
3869
+ version = "0.52.6"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3872
+
3873
+ [[package]]
3874
+ name = "windows_x86_64_gnullvm"
3875
+ version = "0.53.1"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3878
+
3879
+ [[package]]
3880
+ name = "windows_x86_64_msvc"
3881
+ version = "0.42.2"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3884
+
3885
+ [[package]]
3886
+ name = "windows_x86_64_msvc"
3887
+ version = "0.52.6"
3888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3889
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3890
+
3891
+ [[package]]
3892
+ name = "windows_x86_64_msvc"
3893
+ version = "0.53.1"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3896
+
3897
+ [[package]]
3898
+ name = "winnow"
3899
+ version = "0.7.13"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
3902
+ dependencies = [
3903
+ "memchr",
3904
+ ]
3905
+
3906
+ [[package]]
3907
+ name = "wit-bindgen"
3908
+ version = "0.46.0"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3911
+
3912
+ [[package]]
3913
+ name = "wit-bindgen"
3914
+ version = "0.51.0"
3915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3916
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3917
+ dependencies = [
3918
+ "wit-bindgen-rust-macro",
3919
+ ]
3920
+
3921
+ [[package]]
3922
+ name = "wit-bindgen-core"
3923
+ version = "0.51.0"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3926
+ dependencies = [
3927
+ "anyhow",
3928
+ "heck",
3929
+ "wit-parser",
3930
+ ]
3931
+
3932
+ [[package]]
3933
+ name = "wit-bindgen-rust"
3934
+ version = "0.51.0"
3935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3936
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3937
+ dependencies = [
3938
+ "anyhow",
3939
+ "heck",
3940
+ "indexmap 2.12.0",
3941
+ "prettyplease",
3942
+ "syn",
3943
+ "wasm-metadata",
3944
+ "wit-bindgen-core",
3945
+ "wit-component",
3946
+ ]
3947
+
3948
+ [[package]]
3949
+ name = "wit-bindgen-rust-macro"
3950
+ version = "0.51.0"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3953
+ dependencies = [
3954
+ "anyhow",
3955
+ "prettyplease",
3956
+ "proc-macro2",
3957
+ "quote",
3958
+ "syn",
3959
+ "wit-bindgen-core",
3960
+ "wit-bindgen-rust",
3961
+ ]
3962
+
3963
+ [[package]]
3964
+ name = "wit-component"
3965
+ version = "0.244.0"
3966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3967
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3968
+ dependencies = [
3969
+ "anyhow",
3970
+ "bitflags 2.10.0",
3971
+ "indexmap 2.12.0",
3972
+ "log",
3973
+ "serde",
3974
+ "serde_derive",
3975
+ "serde_json",
3976
+ "wasm-encoder",
3977
+ "wasm-metadata",
3978
+ "wasmparser",
3979
+ "wit-parser",
3980
+ ]
3981
+
3982
+ [[package]]
3983
+ name = "wit-parser"
3984
+ version = "0.244.0"
3985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3986
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3987
+ dependencies = [
3988
+ "anyhow",
3989
+ "id-arena",
3990
+ "indexmap 2.12.0",
3991
+ "log",
3992
+ "semver",
3993
+ "serde",
3994
+ "serde_derive",
3995
+ "serde_json",
3996
+ "unicode-xid",
3997
+ "wasmparser",
3998
+ ]
3999
+
4000
+ [[package]]
4001
+ name = "writeable"
4002
+ version = "0.6.2"
4003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4004
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4005
+
4006
+ [[package]]
4007
+ name = "yoke"
4008
+ version = "0.8.1"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4011
+ dependencies = [
4012
+ "stable_deref_trait",
4013
+ "yoke-derive",
4014
+ "zerofrom",
4015
+ ]
4016
+
4017
+ [[package]]
4018
+ name = "yoke-derive"
4019
+ version = "0.8.1"
4020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4021
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4022
+ dependencies = [
4023
+ "proc-macro2",
4024
+ "quote",
4025
+ "syn",
4026
+ "synstructure",
4027
+ ]
4028
+
4029
+ [[package]]
4030
+ name = "zerocopy"
4031
+ version = "0.8.27"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
4034
+ dependencies = [
4035
+ "zerocopy-derive",
4036
+ ]
4037
+
4038
+ [[package]]
4039
+ name = "zerocopy-derive"
4040
+ version = "0.8.27"
4041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4042
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
4043
+ dependencies = [
4044
+ "proc-macro2",
4045
+ "quote",
4046
+ "syn",
4047
+ ]
4048
+
4049
+ [[package]]
4050
+ name = "zerofrom"
4051
+ version = "0.1.6"
4052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4053
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4054
+ dependencies = [
4055
+ "zerofrom-derive",
4056
+ ]
4057
+
4058
+ [[package]]
4059
+ name = "zerofrom-derive"
4060
+ version = "0.1.6"
4061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4062
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4063
+ dependencies = [
4064
+ "proc-macro2",
4065
+ "quote",
4066
+ "syn",
4067
+ "synstructure",
4068
+ ]
4069
+
4070
+ [[package]]
4071
+ name = "zeroize"
4072
+ version = "1.8.2"
4073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4074
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4075
+ dependencies = [
4076
+ "zeroize_derive",
4077
+ ]
4078
+
4079
+ [[package]]
4080
+ name = "zeroize_derive"
4081
+ version = "1.4.2"
4082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4083
+ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
4084
+ dependencies = [
4085
+ "proc-macro2",
4086
+ "quote",
4087
+ "syn",
4088
+ ]
4089
+
4090
+ [[package]]
4091
+ name = "zerotrie"
4092
+ version = "0.2.3"
4093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4094
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4095
+ dependencies = [
4096
+ "displaydoc",
4097
+ "yoke",
4098
+ "zerofrom",
4099
+ ]
4100
+
4101
+ [[package]]
4102
+ name = "zerovec"
4103
+ version = "0.11.5"
4104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4105
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4106
+ dependencies = [
4107
+ "yoke",
4108
+ "zerofrom",
4109
+ "zerovec-derive",
4110
+ ]
4111
+
4112
+ [[package]]
4113
+ name = "zerovec-derive"
4114
+ version = "0.11.2"
4115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4116
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4117
+ dependencies = [
4118
+ "proc-macro2",
4119
+ "quote",
4120
+ "syn",
4121
+ ]
4122
+
4123
+ [[package]]
4124
+ name = "zmij"
4125
+ version = "1.0.2"
4126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4127
+ checksum = "0f4a4e8e9dc5c62d159f04fcdbe07f4c3fb710415aab4754bf11505501e3251d"