minitensor 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. minitensor-0.1.0/Cargo.lock +2135 -0
  2. minitensor-0.1.0/Cargo.toml +49 -0
  3. minitensor-0.1.0/LICENSE +201 -0
  4. minitensor-0.1.0/PKG-INFO +308 -0
  5. minitensor-0.1.0/README.md +262 -0
  6. minitensor-0.1.0/bindings/Cargo.toml +28 -0
  7. minitensor-0.1.0/bindings/build.rs +16 -0
  8. minitensor-0.1.0/bindings/src/custom_ops.rs +106 -0
  9. minitensor-0.1.0/bindings/src/debug.rs +312 -0
  10. minitensor-0.1.0/bindings/src/device.rs +98 -0
  11. minitensor-0.1.0/bindings/src/error.rs +76 -0
  12. minitensor-0.1.0/bindings/src/lib.rs +69 -0
  13. minitensor-0.1.0/bindings/src/nn.rs +1388 -0
  14. minitensor-0.1.0/bindings/src/numpy_compat.rs +331 -0
  15. minitensor-0.1.0/bindings/src/optim.rs +392 -0
  16. minitensor-0.1.0/bindings/src/plugins.rs +534 -0
  17. minitensor-0.1.0/bindings/src/serialization.rs +508 -0
  18. minitensor-0.1.0/bindings/src/tensor.rs +1586 -0
  19. minitensor-0.1.0/engine/Cargo.toml +74 -0
  20. minitensor-0.1.0/engine/examples/hardware_detection.rs +48 -0
  21. minitensor-0.1.0/engine/examples/metal_demo.rs +236 -0
  22. minitensor-0.1.0/engine/examples/opencl_demo.rs +185 -0
  23. minitensor-0.1.0/engine/src/autograd/graph.rs +708 -0
  24. minitensor-0.1.0/engine/src/autograd/mod.rs +2335 -0
  25. minitensor-0.1.0/engine/src/backends/cpu.rs +300 -0
  26. minitensor-0.1.0/engine/src/backends/cuda/mod.rs +752 -0
  27. minitensor-0.1.0/engine/src/backends/cuda/stream.rs +230 -0
  28. minitensor-0.1.0/engine/src/backends/metal/README.md +282 -0
  29. minitensor-0.1.0/engine/src/backends/metal/integration_test.rs +479 -0
  30. minitensor-0.1.0/engine/src/backends/metal/mod.rs +977 -0
  31. minitensor-0.1.0/engine/src/backends/mod.rs +81 -0
  32. minitensor-0.1.0/engine/src/backends/opencl/README.md +222 -0
  33. minitensor-0.1.0/engine/src/backends/opencl/integration_test.rs +330 -0
  34. minitensor-0.1.0/engine/src/backends/opencl/mod.rs +1053 -0
  35. minitensor-0.1.0/engine/src/custom_ops/examples.rs +341 -0
  36. minitensor-0.1.0/engine/src/custom_ops.rs +532 -0
  37. minitensor-0.1.0/engine/src/debug.rs +468 -0
  38. minitensor-0.1.0/engine/src/device.rs +207 -0
  39. minitensor-0.1.0/engine/src/error.rs +647 -0
  40. minitensor-0.1.0/engine/src/hardware/cpu.rs +453 -0
  41. minitensor-0.1.0/engine/src/hardware/gpu.rs +448 -0
  42. minitensor-0.1.0/engine/src/hardware/memory.rs +625 -0
  43. minitensor-0.1.0/engine/src/hardware/mod.rs +233 -0
  44. minitensor-0.1.0/engine/src/hardware/optimizer.rs +850 -0
  45. minitensor-0.1.0/engine/src/hardware/profiler.rs +621 -0
  46. minitensor-0.1.0/engine/src/lib.rs +61 -0
  47. minitensor-0.1.0/engine/src/memory/allocator.rs +217 -0
  48. minitensor-0.1.0/engine/src/memory/manager.rs +198 -0
  49. minitensor-0.1.0/engine/src/memory/mod.rs +19 -0
  50. minitensor-0.1.0/engine/src/memory/pool.rs +284 -0
  51. minitensor-0.1.0/engine/src/nn/activation.rs +574 -0
  52. minitensor-0.1.0/engine/src/nn/conv.rs +478 -0
  53. minitensor-0.1.0/engine/src/nn/dense_layer.rs +325 -0
  54. minitensor-0.1.0/engine/src/nn/dropout.rs +488 -0
  55. minitensor-0.1.0/engine/src/nn/init.rs +468 -0
  56. minitensor-0.1.0/engine/src/nn/layer.rs +135 -0
  57. minitensor-0.1.0/engine/src/nn/loss.rs +542 -0
  58. minitensor-0.1.0/engine/src/nn/mod.rs +28 -0
  59. minitensor-0.1.0/engine/src/nn/normalization.rs +728 -0
  60. minitensor-0.1.0/engine/src/nn/sequential.rs +304 -0
  61. minitensor-0.1.0/engine/src/nn/utils.rs +397 -0
  62. minitensor-0.1.0/engine/src/operations/activation.rs +1854 -0
  63. minitensor-0.1.0/engine/src/operations/arithmetic.rs +1436 -0
  64. minitensor-0.1.0/engine/src/operations/comparison.rs +418 -0
  65. minitensor-0.1.0/engine/src/operations/conv.rs +259 -0
  66. minitensor-0.1.0/engine/src/operations/fusion.rs +627 -0
  67. minitensor-0.1.0/engine/src/operations/linalg.rs +905 -0
  68. minitensor-0.1.0/engine/src/operations/loss.rs +1553 -0
  69. minitensor-0.1.0/engine/src/operations/mod.rs +30 -0
  70. minitensor-0.1.0/engine/src/operations/normalization.rs +209 -0
  71. minitensor-0.1.0/engine/src/operations/reduction.rs +3375 -0
  72. minitensor-0.1.0/engine/src/operations/shape_ops.rs +905 -0
  73. minitensor-0.1.0/engine/src/operations/simd.rs +1189 -0
  74. minitensor-0.1.0/engine/src/optim/adam.rs +405 -0
  75. minitensor-0.1.0/engine/src/optim/mod.rs +26 -0
  76. minitensor-0.1.0/engine/src/optim/optimizer.rs +242 -0
  77. minitensor-0.1.0/engine/src/optim/rmsprop.rs +456 -0
  78. minitensor-0.1.0/engine/src/optim/sgd.rs +347 -0
  79. minitensor-0.1.0/engine/src/optim/tests.rs +615 -0
  80. minitensor-0.1.0/engine/src/optim/utils.rs +365 -0
  81. minitensor-0.1.0/engine/src/plugins.rs +471 -0
  82. minitensor-0.1.0/engine/src/serialization.rs +691 -0
  83. minitensor-0.1.0/engine/src/tensor/data.rs +884 -0
  84. minitensor-0.1.0/engine/src/tensor/dtype.rs +143 -0
  85. minitensor-0.1.0/engine/src/tensor/mod.rs +2348 -0
  86. minitensor-0.1.0/engine/src/tensor/shape.rs +323 -0
  87. minitensor-0.1.0/engine/tests/compatibility_tests.rs +24 -0
  88. minitensor-0.1.0/engine/tests/cumulative.rs +63 -0
  89. minitensor-0.1.0/engine/tests/expand.rs +46 -0
  90. minitensor-0.1.0/engine/tests/flatten.rs +68 -0
  91. minitensor-0.1.0/engine/tests/gradient_tests.rs +377 -0
  92. minitensor-0.1.0/engine/tests/integration_test.rs +380 -0
  93. minitensor-0.1.0/engine/tests/numerical_limits.rs +352 -0
  94. minitensor-0.1.0/engine/tests/performance_tests.rs +67 -0
  95. minitensor-0.1.0/engine/tests/training_workflow.rs +65 -0
  96. minitensor-0.1.0/minitensor/__init__.py +333 -0
  97. minitensor-0.1.0/minitensor/_version.py +5 -0
  98. minitensor-0.1.0/minitensor/functional.py +639 -0
  99. minitensor-0.1.0/minitensor/nn/__init__.py +293 -0
  100. minitensor-0.1.0/minitensor/numpy_compat.py +37 -0
  101. minitensor-0.1.0/minitensor/optim/__init__.py +136 -0
  102. minitensor-0.1.0/minitensor/py.typed +0 -0
  103. minitensor-0.1.0/minitensor/tensor.py +1435 -0
  104. minitensor-0.1.0/pyproject.toml +146 -0
@@ -0,0 +1,2135 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.3"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.11"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
40
+
41
+ [[package]]
42
+ name = "anyhow"
43
+ version = "1.0.99"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
46
+
47
+ [[package]]
48
+ name = "approx"
49
+ version = "0.5.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
52
+ dependencies = [
53
+ "num-traits",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "arc-swap"
58
+ version = "1.7.1"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
61
+
62
+ [[package]]
63
+ name = "autocfg"
64
+ version = "1.5.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
67
+
68
+ [[package]]
69
+ name = "base64"
70
+ version = "0.22.1"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
73
+
74
+ [[package]]
75
+ name = "base64ct"
76
+ version = "1.8.0"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
79
+
80
+ [[package]]
81
+ name = "bincode"
82
+ version = "2.0.1"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
85
+ dependencies = [
86
+ "bincode_derive",
87
+ "serde",
88
+ "unty",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "bincode_derive"
93
+ version = "2.0.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
96
+ dependencies = [
97
+ "virtue",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "bindings"
102
+ version = "0.1.0"
103
+ dependencies = [
104
+ "anyhow",
105
+ "engine",
106
+ "numpy",
107
+ "pyo3",
108
+ "pyo3-build-config",
109
+ "rand",
110
+ "rand_distr",
111
+ "thiserror",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bit-set"
116
+ version = "0.8.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
119
+ dependencies = [
120
+ "bit-vec",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "bit-vec"
125
+ version = "0.8.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
128
+
129
+ [[package]]
130
+ name = "bitflags"
131
+ version = "2.9.4"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
134
+
135
+ [[package]]
136
+ name = "blas-src"
137
+ version = "0.12.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "9bae1f9c995f3deabb3eff7ed9272369a6f260e961c8723779b951c35056c45d"
140
+ dependencies = [
141
+ "openblas-src",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "block"
146
+ version = "0.1.6"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
149
+
150
+ [[package]]
151
+ name = "bumpalo"
152
+ version = "3.19.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
155
+
156
+ [[package]]
157
+ name = "bytemuck"
158
+ version = "1.23.2"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
161
+
162
+ [[package]]
163
+ name = "byteorder"
164
+ version = "1.5.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
167
+
168
+ [[package]]
169
+ name = "bytes"
170
+ version = "1.10.1"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
173
+
174
+ [[package]]
175
+ name = "cast"
176
+ version = "0.3.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
179
+
180
+ [[package]]
181
+ name = "cblas"
182
+ version = "0.5.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "c7c834e5b5c32a6dbcdb917788d0c38473e1ae7076ff2f4011eb96c5fec20eef"
185
+ dependencies = [
186
+ "cblas-sys",
187
+ "libc",
188
+ "num-complex",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "cblas-sys"
193
+ version = "0.2.0"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "8354a31ad0d37f735e74c1973343c99dde4461ea8626a2b8d4fea9e06b987255"
196
+ dependencies = [
197
+ "libc",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "cc"
202
+ version = "1.2.37"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
205
+ dependencies = [
206
+ "find-msvc-tools",
207
+ "shlex",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "cfg-if"
212
+ version = "1.0.3"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
215
+
216
+ [[package]]
217
+ name = "chrono"
218
+ version = "0.4.42"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
221
+ dependencies = [
222
+ "iana-time-zone",
223
+ "js-sys",
224
+ "num-traits",
225
+ "serde",
226
+ "wasm-bindgen",
227
+ "windows-link 0.2.0",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "ciborium"
232
+ version = "0.2.2"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
235
+ dependencies = [
236
+ "ciborium-io",
237
+ "ciborium-ll",
238
+ "serde",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "ciborium-io"
243
+ version = "0.2.2"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
246
+
247
+ [[package]]
248
+ name = "ciborium-ll"
249
+ version = "0.2.2"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
252
+ dependencies = [
253
+ "ciborium-io",
254
+ "half",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "cl3"
259
+ version = "0.13.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "0a50168bca6baeb04c8aec60adba5917221034d96275f6b199be66a3969519f1"
262
+ dependencies = [
263
+ "dlopen2",
264
+ "libc",
265
+ "opencl-sys",
266
+ "thiserror",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "clap"
271
+ version = "4.5.47"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
274
+ dependencies = [
275
+ "clap_builder",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "clap_builder"
280
+ version = "4.5.47"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
283
+ dependencies = [
284
+ "anstyle",
285
+ "clap_lex",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "clap_lex"
290
+ version = "0.7.5"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
293
+
294
+ [[package]]
295
+ name = "core-foundation"
296
+ version = "0.9.4"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
299
+ dependencies = [
300
+ "core-foundation-sys",
301
+ "libc",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "core-foundation"
306
+ version = "0.10.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
309
+ dependencies = [
310
+ "core-foundation-sys",
311
+ "libc",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "core-foundation-sys"
316
+ version = "0.8.7"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
319
+
320
+ [[package]]
321
+ name = "core-graphics-types"
322
+ version = "0.2.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
325
+ dependencies = [
326
+ "bitflags",
327
+ "core-foundation 0.10.1",
328
+ "libc",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "crc32fast"
333
+ version = "1.5.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
336
+ dependencies = [
337
+ "cfg-if",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "criterion"
342
+ version = "0.7.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
345
+ dependencies = [
346
+ "anes",
347
+ "cast",
348
+ "ciborium",
349
+ "clap",
350
+ "criterion-plot",
351
+ "itertools",
352
+ "num-traits",
353
+ "oorandom",
354
+ "plotters",
355
+ "rayon",
356
+ "regex",
357
+ "serde",
358
+ "serde_json",
359
+ "tinytemplate",
360
+ "walkdir",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "criterion-plot"
365
+ version = "0.6.0"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
368
+ dependencies = [
369
+ "cast",
370
+ "itertools",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "crossbeam-channel"
375
+ version = "0.5.15"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
378
+ dependencies = [
379
+ "crossbeam-utils",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "crossbeam-deque"
384
+ version = "0.8.6"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
387
+ dependencies = [
388
+ "crossbeam-epoch",
389
+ "crossbeam-utils",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "crossbeam-epoch"
394
+ version = "0.9.18"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
397
+ dependencies = [
398
+ "crossbeam-utils",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "crossbeam-utils"
403
+ version = "0.8.21"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
406
+
407
+ [[package]]
408
+ name = "crunchy"
409
+ version = "0.2.4"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
412
+
413
+ [[package]]
414
+ name = "cudarc"
415
+ version = "0.17.3"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "72ba848ae5c6f3cb36e71eab5f268763e3fabcabe3f7bc683e16f7fa3d46281e"
418
+ dependencies = [
419
+ "libloading",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "der"
424
+ version = "0.7.10"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
427
+ dependencies = [
428
+ "pem-rfc7468",
429
+ "zeroize",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "dirs"
434
+ version = "6.0.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
437
+ dependencies = [
438
+ "dirs-sys",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "dirs-sys"
443
+ version = "0.5.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
446
+ dependencies = [
447
+ "libc",
448
+ "option-ext",
449
+ "redox_users",
450
+ "windows-sys 0.61.0",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "dlopen2"
455
+ version = "0.7.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6"
458
+ dependencies = [
459
+ "dlopen2_derive",
460
+ "libc",
461
+ "once_cell",
462
+ "winapi",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "dlopen2_derive"
467
+ version = "0.4.1"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4"
470
+ dependencies = [
471
+ "proc-macro2",
472
+ "quote",
473
+ "syn",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "either"
478
+ version = "1.15.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
481
+
482
+ [[package]]
483
+ name = "engine"
484
+ version = "0.1.0"
485
+ dependencies = [
486
+ "anyhow",
487
+ "approx",
488
+ "arc-swap",
489
+ "bincode",
490
+ "blas-src",
491
+ "cblas",
492
+ "chrono",
493
+ "criterion",
494
+ "cudarc",
495
+ "libc",
496
+ "libloading",
497
+ "matrixmultiply",
498
+ "metal",
499
+ "ndarray",
500
+ "num-traits",
501
+ "num_cpus",
502
+ "opencl3",
503
+ "parking_lot",
504
+ "proptest",
505
+ "rand",
506
+ "rand_distr",
507
+ "rayon",
508
+ "rmp-serde",
509
+ "rustc-hash",
510
+ "serde",
511
+ "serde_json",
512
+ "smallvec",
513
+ "thiserror",
514
+ "wide",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "errno"
519
+ version = "0.3.14"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
522
+ dependencies = [
523
+ "libc",
524
+ "windows-sys 0.61.0",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "fastrand"
529
+ version = "2.3.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
532
+
533
+ [[package]]
534
+ name = "filetime"
535
+ version = "0.2.26"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
538
+ dependencies = [
539
+ "cfg-if",
540
+ "libc",
541
+ "libredox",
542
+ "windows-sys 0.60.2",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "find-msvc-tools"
547
+ version = "0.1.1"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
550
+
551
+ [[package]]
552
+ name = "flate2"
553
+ version = "1.1.2"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
556
+ dependencies = [
557
+ "crc32fast",
558
+ "miniz_oxide",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "fnv"
563
+ version = "1.0.7"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
566
+
567
+ [[package]]
568
+ name = "foreign-types"
569
+ version = "0.3.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
572
+ dependencies = [
573
+ "foreign-types-shared 0.1.1",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "foreign-types"
578
+ version = "0.5.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
581
+ dependencies = [
582
+ "foreign-types-macros",
583
+ "foreign-types-shared 0.3.1",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "foreign-types-macros"
588
+ version = "0.2.3"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
591
+ dependencies = [
592
+ "proc-macro2",
593
+ "quote",
594
+ "syn",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "foreign-types-shared"
599
+ version = "0.1.1"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
602
+
603
+ [[package]]
604
+ name = "foreign-types-shared"
605
+ version = "0.3.1"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
608
+
609
+ [[package]]
610
+ name = "getrandom"
611
+ version = "0.2.16"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
614
+ dependencies = [
615
+ "cfg-if",
616
+ "libc",
617
+ "wasi 0.11.1+wasi-snapshot-preview1",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "getrandom"
622
+ version = "0.3.3"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
625
+ dependencies = [
626
+ "cfg-if",
627
+ "libc",
628
+ "r-efi",
629
+ "wasi 0.14.5+wasi-0.2.4",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "half"
634
+ version = "2.6.0"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
637
+ dependencies = [
638
+ "cfg-if",
639
+ "crunchy",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "heck"
644
+ version = "0.5.0"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
647
+
648
+ [[package]]
649
+ name = "hermit-abi"
650
+ version = "0.5.2"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
653
+
654
+ [[package]]
655
+ name = "http"
656
+ version = "1.3.1"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
659
+ dependencies = [
660
+ "bytes",
661
+ "fnv",
662
+ "itoa",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "httparse"
667
+ version = "1.10.1"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
670
+
671
+ [[package]]
672
+ name = "iana-time-zone"
673
+ version = "0.1.63"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
676
+ dependencies = [
677
+ "android_system_properties",
678
+ "core-foundation-sys",
679
+ "iana-time-zone-haiku",
680
+ "js-sys",
681
+ "log",
682
+ "wasm-bindgen",
683
+ "windows-core",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "iana-time-zone-haiku"
688
+ version = "0.1.2"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
691
+ dependencies = [
692
+ "cc",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "indoc"
697
+ version = "2.0.6"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
700
+
701
+ [[package]]
702
+ name = "itertools"
703
+ version = "0.13.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
706
+ dependencies = [
707
+ "either",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "itoa"
712
+ version = "1.0.15"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
715
+
716
+ [[package]]
717
+ name = "js-sys"
718
+ version = "0.3.78"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738"
721
+ dependencies = [
722
+ "once_cell",
723
+ "wasm-bindgen",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "lazy_static"
728
+ version = "1.5.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
731
+
732
+ [[package]]
733
+ name = "libc"
734
+ version = "0.2.175"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
737
+
738
+ [[package]]
739
+ name = "libloading"
740
+ version = "0.8.8"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
743
+ dependencies = [
744
+ "cfg-if",
745
+ "windows-targets 0.53.3",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "libm"
750
+ version = "0.2.15"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
753
+
754
+ [[package]]
755
+ name = "libredox"
756
+ version = "0.1.9"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
759
+ dependencies = [
760
+ "bitflags",
761
+ "libc",
762
+ "redox_syscall",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "linux-raw-sys"
767
+ version = "0.11.0"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
770
+
771
+ [[package]]
772
+ name = "lock_api"
773
+ version = "0.4.13"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
776
+ dependencies = [
777
+ "autocfg",
778
+ "scopeguard",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "log"
783
+ version = "0.4.28"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
786
+
787
+ [[package]]
788
+ name = "malloc_buf"
789
+ version = "0.0.6"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
792
+ dependencies = [
793
+ "libc",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "matrixmultiply"
798
+ version = "0.3.10"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
801
+ dependencies = [
802
+ "autocfg",
803
+ "num_cpus",
804
+ "once_cell",
805
+ "rawpointer",
806
+ "thread-tree",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "memchr"
811
+ version = "2.7.5"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
814
+
815
+ [[package]]
816
+ name = "memoffset"
817
+ version = "0.9.1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
820
+ dependencies = [
821
+ "autocfg",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "metal"
826
+ version = "0.32.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "00c15a6f673ff72ddcc22394663290f870fb224c1bfce55734a75c414150e605"
829
+ dependencies = [
830
+ "bitflags",
831
+ "block",
832
+ "core-graphics-types",
833
+ "foreign-types 0.5.0",
834
+ "log",
835
+ "objc",
836
+ "paste",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "miniz_oxide"
841
+ version = "0.8.9"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
844
+ dependencies = [
845
+ "adler2",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "native-tls"
850
+ version = "0.2.14"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
853
+ dependencies = [
854
+ "libc",
855
+ "log",
856
+ "openssl",
857
+ "openssl-probe",
858
+ "openssl-sys",
859
+ "schannel",
860
+ "security-framework",
861
+ "security-framework-sys",
862
+ "tempfile",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "ndarray"
867
+ version = "0.16.1"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
870
+ dependencies = [
871
+ "matrixmultiply",
872
+ "num-complex",
873
+ "num-integer",
874
+ "num-traits",
875
+ "portable-atomic",
876
+ "portable-atomic-util",
877
+ "rawpointer",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "num-complex"
882
+ version = "0.4.6"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
885
+ dependencies = [
886
+ "num-traits",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "num-integer"
891
+ version = "0.1.46"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
894
+ dependencies = [
895
+ "num-traits",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "num-traits"
900
+ version = "0.2.19"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
903
+ dependencies = [
904
+ "autocfg",
905
+ "libm",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "num_cpus"
910
+ version = "1.17.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
913
+ dependencies = [
914
+ "hermit-abi",
915
+ "libc",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "numpy"
920
+ version = "0.26.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "9b2dba356160b54f5371b550575b78130a54718b4c6e46b3f33a6da74a27e78b"
923
+ dependencies = [
924
+ "libc",
925
+ "ndarray",
926
+ "num-complex",
927
+ "num-integer",
928
+ "num-traits",
929
+ "pyo3",
930
+ "pyo3-build-config",
931
+ "rustc-hash",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "objc"
936
+ version = "0.2.7"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
939
+ dependencies = [
940
+ "malloc_buf",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "once_cell"
945
+ version = "1.21.3"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
948
+
949
+ [[package]]
950
+ name = "oorandom"
951
+ version = "11.1.5"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
954
+
955
+ [[package]]
956
+ name = "openblas-build"
957
+ version = "0.10.13"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "9bc3f001b5b7e354f30da04b91978523092224e4f71d017a28fd0da9474449c6"
960
+ dependencies = [
961
+ "anyhow",
962
+ "cc",
963
+ "flate2",
964
+ "tar",
965
+ "thiserror",
966
+ "ureq",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "openblas-src"
971
+ version = "0.10.13"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "08d348e7a5bfbc68f6068d6c46543a2abcd8121e2925715a69000013aba8f29e"
974
+ dependencies = [
975
+ "dirs",
976
+ "openblas-build",
977
+ "pkg-config",
978
+ "vcpkg",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "opencl-sys"
983
+ version = "0.6.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "9bd005f352b2f05acd01d04122448e84f8bc66bdae49045927841bc63de62123"
986
+ dependencies = [
987
+ "libc",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "opencl3"
992
+ version = "0.12.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "aafde8b7b7c0c6a50baa7fe294eabce788d7a4977d461f93545eb0e6ecd34ab3"
995
+ dependencies = [
996
+ "cl3",
997
+ "libc",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "openssl"
1002
+ version = "0.10.73"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1005
+ dependencies = [
1006
+ "bitflags",
1007
+ "cfg-if",
1008
+ "foreign-types 0.3.2",
1009
+ "libc",
1010
+ "once_cell",
1011
+ "openssl-macros",
1012
+ "openssl-sys",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "openssl-macros"
1017
+ version = "0.1.1"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1020
+ dependencies = [
1021
+ "proc-macro2",
1022
+ "quote",
1023
+ "syn",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "openssl-probe"
1028
+ version = "0.1.6"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1031
+
1032
+ [[package]]
1033
+ name = "openssl-sys"
1034
+ version = "0.9.109"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1037
+ dependencies = [
1038
+ "cc",
1039
+ "libc",
1040
+ "pkg-config",
1041
+ "vcpkg",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "option-ext"
1046
+ version = "0.2.0"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1049
+
1050
+ [[package]]
1051
+ name = "parking_lot"
1052
+ version = "0.12.4"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1055
+ dependencies = [
1056
+ "lock_api",
1057
+ "parking_lot_core",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "parking_lot_core"
1062
+ version = "0.9.11"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1065
+ dependencies = [
1066
+ "cfg-if",
1067
+ "libc",
1068
+ "redox_syscall",
1069
+ "smallvec",
1070
+ "windows-targets 0.52.6",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "paste"
1075
+ version = "1.0.15"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1078
+
1079
+ [[package]]
1080
+ name = "pem-rfc7468"
1081
+ version = "0.7.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1084
+ dependencies = [
1085
+ "base64ct",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "percent-encoding"
1090
+ version = "2.3.2"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1093
+
1094
+ [[package]]
1095
+ name = "pkg-config"
1096
+ version = "0.3.32"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1099
+
1100
+ [[package]]
1101
+ name = "plotters"
1102
+ version = "0.3.7"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1105
+ dependencies = [
1106
+ "num-traits",
1107
+ "plotters-backend",
1108
+ "plotters-svg",
1109
+ "wasm-bindgen",
1110
+ "web-sys",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "plotters-backend"
1115
+ version = "0.3.7"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1118
+
1119
+ [[package]]
1120
+ name = "plotters-svg"
1121
+ version = "0.3.7"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1124
+ dependencies = [
1125
+ "plotters-backend",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "portable-atomic"
1130
+ version = "1.11.1"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1133
+
1134
+ [[package]]
1135
+ name = "portable-atomic-util"
1136
+ version = "0.2.4"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1139
+ dependencies = [
1140
+ "portable-atomic",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "ppv-lite86"
1145
+ version = "0.2.21"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1148
+ dependencies = [
1149
+ "zerocopy",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "proc-macro2"
1154
+ version = "1.0.101"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1157
+ dependencies = [
1158
+ "unicode-ident",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "proptest"
1163
+ version = "1.7.0"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f"
1166
+ dependencies = [
1167
+ "bit-set",
1168
+ "bit-vec",
1169
+ "bitflags",
1170
+ "lazy_static",
1171
+ "num-traits",
1172
+ "rand",
1173
+ "rand_chacha",
1174
+ "rand_xorshift",
1175
+ "regex-syntax",
1176
+ "rusty-fork",
1177
+ "tempfile",
1178
+ "unarray",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "pyo3"
1183
+ version = "0.26.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1186
+ dependencies = [
1187
+ "indoc",
1188
+ "libc",
1189
+ "memoffset",
1190
+ "once_cell",
1191
+ "portable-atomic",
1192
+ "pyo3-build-config",
1193
+ "pyo3-ffi",
1194
+ "pyo3-macros",
1195
+ "unindent",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "pyo3-build-config"
1200
+ version = "0.26.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1203
+ dependencies = [
1204
+ "target-lexicon",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "pyo3-ffi"
1209
+ version = "0.26.0"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1212
+ dependencies = [
1213
+ "libc",
1214
+ "pyo3-build-config",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "pyo3-macros"
1219
+ version = "0.26.0"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1222
+ dependencies = [
1223
+ "proc-macro2",
1224
+ "pyo3-macros-backend",
1225
+ "quote",
1226
+ "syn",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "pyo3-macros-backend"
1231
+ version = "0.26.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1234
+ dependencies = [
1235
+ "heck",
1236
+ "proc-macro2",
1237
+ "pyo3-build-config",
1238
+ "quote",
1239
+ "syn",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "quick-error"
1244
+ version = "1.2.3"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1247
+
1248
+ [[package]]
1249
+ name = "quote"
1250
+ version = "1.0.40"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1253
+ dependencies = [
1254
+ "proc-macro2",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "r-efi"
1259
+ version = "5.3.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1262
+
1263
+ [[package]]
1264
+ name = "rand"
1265
+ version = "0.9.2"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1268
+ dependencies = [
1269
+ "rand_chacha",
1270
+ "rand_core",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "rand_chacha"
1275
+ version = "0.9.0"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1278
+ dependencies = [
1279
+ "ppv-lite86",
1280
+ "rand_core",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "rand_core"
1285
+ version = "0.9.3"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1288
+ dependencies = [
1289
+ "getrandom 0.3.3",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "rand_distr"
1294
+ version = "0.5.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
1297
+ dependencies = [
1298
+ "num-traits",
1299
+ "rand",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "rand_xorshift"
1304
+ version = "0.4.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1307
+ dependencies = [
1308
+ "rand_core",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "rawpointer"
1313
+ version = "0.2.1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1316
+
1317
+ [[package]]
1318
+ name = "rayon"
1319
+ version = "1.11.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1322
+ dependencies = [
1323
+ "either",
1324
+ "rayon-core",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "rayon-core"
1329
+ version = "1.13.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1332
+ dependencies = [
1333
+ "crossbeam-deque",
1334
+ "crossbeam-utils",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "redox_syscall"
1339
+ version = "0.5.17"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1342
+ dependencies = [
1343
+ "bitflags",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "redox_users"
1348
+ version = "0.5.2"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1351
+ dependencies = [
1352
+ "getrandom 0.2.16",
1353
+ "libredox",
1354
+ "thiserror",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "regex"
1359
+ version = "1.11.2"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
1362
+ dependencies = [
1363
+ "aho-corasick",
1364
+ "memchr",
1365
+ "regex-automata",
1366
+ "regex-syntax",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "regex-automata"
1371
+ version = "0.4.10"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
1374
+ dependencies = [
1375
+ "aho-corasick",
1376
+ "memchr",
1377
+ "regex-syntax",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "regex-syntax"
1382
+ version = "0.8.6"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1385
+
1386
+ [[package]]
1387
+ name = "rmp"
1388
+ version = "0.8.14"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
1391
+ dependencies = [
1392
+ "byteorder",
1393
+ "num-traits",
1394
+ "paste",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "rmp-serde"
1399
+ version = "1.3.0"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
1402
+ dependencies = [
1403
+ "byteorder",
1404
+ "rmp",
1405
+ "serde",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "rustc-hash"
1410
+ version = "2.1.1"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1413
+
1414
+ [[package]]
1415
+ name = "rustix"
1416
+ version = "1.1.2"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1419
+ dependencies = [
1420
+ "bitflags",
1421
+ "errno",
1422
+ "libc",
1423
+ "linux-raw-sys",
1424
+ "windows-sys 0.61.0",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "rustls-pemfile"
1429
+ version = "2.2.0"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1432
+ dependencies = [
1433
+ "rustls-pki-types",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "rustls-pki-types"
1438
+ version = "1.12.0"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1441
+ dependencies = [
1442
+ "zeroize",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "rustversion"
1447
+ version = "1.0.22"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1450
+
1451
+ [[package]]
1452
+ name = "rusty-fork"
1453
+ version = "0.3.0"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
1456
+ dependencies = [
1457
+ "fnv",
1458
+ "quick-error",
1459
+ "tempfile",
1460
+ "wait-timeout",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "ryu"
1465
+ version = "1.0.20"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1468
+
1469
+ [[package]]
1470
+ name = "safe_arch"
1471
+ version = "0.7.4"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
1474
+ dependencies = [
1475
+ "bytemuck",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "same-file"
1480
+ version = "1.0.6"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1483
+ dependencies = [
1484
+ "winapi-util",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "schannel"
1489
+ version = "0.1.28"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1492
+ dependencies = [
1493
+ "windows-sys 0.61.0",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "scopeguard"
1498
+ version = "1.2.0"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1501
+
1502
+ [[package]]
1503
+ name = "security-framework"
1504
+ version = "2.11.1"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1507
+ dependencies = [
1508
+ "bitflags",
1509
+ "core-foundation 0.9.4",
1510
+ "core-foundation-sys",
1511
+ "libc",
1512
+ "security-framework-sys",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "security-framework-sys"
1517
+ version = "2.15.0"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1520
+ dependencies = [
1521
+ "core-foundation-sys",
1522
+ "libc",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "serde"
1527
+ version = "1.0.219"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1530
+ dependencies = [
1531
+ "serde_derive",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "serde_derive"
1536
+ version = "1.0.219"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1539
+ dependencies = [
1540
+ "proc-macro2",
1541
+ "quote",
1542
+ "syn",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "serde_json"
1547
+ version = "1.0.143"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
1550
+ dependencies = [
1551
+ "itoa",
1552
+ "memchr",
1553
+ "ryu",
1554
+ "serde",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "shlex"
1559
+ version = "1.3.0"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1562
+
1563
+ [[package]]
1564
+ name = "smallvec"
1565
+ version = "1.15.1"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1568
+
1569
+ [[package]]
1570
+ name = "syn"
1571
+ version = "2.0.106"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1574
+ dependencies = [
1575
+ "proc-macro2",
1576
+ "quote",
1577
+ "unicode-ident",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "tar"
1582
+ version = "0.4.44"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
1585
+ dependencies = [
1586
+ "filetime",
1587
+ "libc",
1588
+ "xattr",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "target-lexicon"
1593
+ version = "0.13.3"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1596
+
1597
+ [[package]]
1598
+ name = "tempfile"
1599
+ version = "3.22.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53"
1602
+ dependencies = [
1603
+ "fastrand",
1604
+ "getrandom 0.3.3",
1605
+ "once_cell",
1606
+ "rustix",
1607
+ "windows-sys 0.61.0",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "thiserror"
1612
+ version = "2.0.16"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
1615
+ dependencies = [
1616
+ "thiserror-impl",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "thiserror-impl"
1621
+ version = "2.0.16"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
1624
+ dependencies = [
1625
+ "proc-macro2",
1626
+ "quote",
1627
+ "syn",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "thread-tree"
1632
+ version = "0.3.3"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "ffbd370cb847953a25954d9f63e14824a36113f8c72eecf6eccef5dc4b45d630"
1635
+ dependencies = [
1636
+ "crossbeam-channel",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "tinytemplate"
1641
+ version = "1.2.1"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1644
+ dependencies = [
1645
+ "serde",
1646
+ "serde_json",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "unarray"
1651
+ version = "0.1.4"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1654
+
1655
+ [[package]]
1656
+ name = "unicode-ident"
1657
+ version = "1.0.19"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
1660
+
1661
+ [[package]]
1662
+ name = "unindent"
1663
+ version = "0.2.4"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1666
+
1667
+ [[package]]
1668
+ name = "unty"
1669
+ version = "0.0.4"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
1672
+
1673
+ [[package]]
1674
+ name = "ureq"
1675
+ version = "3.1.2"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "99ba1025f18a4a3fc3e9b48c868e9beb4f24f4b4b1a325bada26bd4119f46537"
1678
+ dependencies = [
1679
+ "base64",
1680
+ "der",
1681
+ "log",
1682
+ "native-tls",
1683
+ "percent-encoding",
1684
+ "rustls-pemfile",
1685
+ "rustls-pki-types",
1686
+ "ureq-proto",
1687
+ "utf-8",
1688
+ "webpki-root-certs",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "ureq-proto"
1693
+ version = "0.5.2"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "60b4531c118335662134346048ddb0e54cc86bd7e81866757873055f0e38f5d2"
1696
+ dependencies = [
1697
+ "base64",
1698
+ "http",
1699
+ "httparse",
1700
+ "log",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "utf-8"
1705
+ version = "0.7.6"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1708
+
1709
+ [[package]]
1710
+ name = "vcpkg"
1711
+ version = "0.2.15"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1714
+
1715
+ [[package]]
1716
+ name = "virtue"
1717
+ version = "0.0.18"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
1720
+
1721
+ [[package]]
1722
+ name = "wait-timeout"
1723
+ version = "0.2.1"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1726
+ dependencies = [
1727
+ "libc",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "walkdir"
1732
+ version = "2.5.0"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1735
+ dependencies = [
1736
+ "same-file",
1737
+ "winapi-util",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "wasi"
1742
+ version = "0.11.1+wasi-snapshot-preview1"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1745
+
1746
+ [[package]]
1747
+ name = "wasi"
1748
+ version = "0.14.5+wasi-0.2.4"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4"
1751
+ dependencies = [
1752
+ "wasip2",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "wasip2"
1757
+ version = "1.0.0+wasi-0.2.4"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24"
1760
+ dependencies = [
1761
+ "wit-bindgen",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "wasm-bindgen"
1766
+ version = "0.2.101"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
1769
+ dependencies = [
1770
+ "cfg-if",
1771
+ "once_cell",
1772
+ "rustversion",
1773
+ "wasm-bindgen-macro",
1774
+ "wasm-bindgen-shared",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "wasm-bindgen-backend"
1779
+ version = "0.2.101"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
1782
+ dependencies = [
1783
+ "bumpalo",
1784
+ "log",
1785
+ "proc-macro2",
1786
+ "quote",
1787
+ "syn",
1788
+ "wasm-bindgen-shared",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "wasm-bindgen-macro"
1793
+ version = "0.2.101"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
1796
+ dependencies = [
1797
+ "quote",
1798
+ "wasm-bindgen-macro-support",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "wasm-bindgen-macro-support"
1803
+ version = "0.2.101"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
1806
+ dependencies = [
1807
+ "proc-macro2",
1808
+ "quote",
1809
+ "syn",
1810
+ "wasm-bindgen-backend",
1811
+ "wasm-bindgen-shared",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "wasm-bindgen-shared"
1816
+ version = "0.2.101"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
1819
+ dependencies = [
1820
+ "unicode-ident",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "web-sys"
1825
+ version = "0.3.78"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12"
1828
+ dependencies = [
1829
+ "js-sys",
1830
+ "wasm-bindgen",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "webpki-root-certs"
1835
+ version = "1.0.2"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "4e4ffd8df1c57e87c325000a3d6ef93db75279dc3a231125aac571650f22b12a"
1838
+ dependencies = [
1839
+ "rustls-pki-types",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "wide"
1844
+ version = "0.7.33"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
1847
+ dependencies = [
1848
+ "bytemuck",
1849
+ "safe_arch",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "winapi"
1854
+ version = "0.3.9"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1857
+ dependencies = [
1858
+ "winapi-i686-pc-windows-gnu",
1859
+ "winapi-x86_64-pc-windows-gnu",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "winapi-i686-pc-windows-gnu"
1864
+ version = "0.4.0"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1867
+
1868
+ [[package]]
1869
+ name = "winapi-util"
1870
+ version = "0.1.11"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1873
+ dependencies = [
1874
+ "windows-sys 0.61.0",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "winapi-x86_64-pc-windows-gnu"
1879
+ version = "0.4.0"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1882
+
1883
+ [[package]]
1884
+ name = "windows-core"
1885
+ version = "0.61.2"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
1888
+ dependencies = [
1889
+ "windows-implement",
1890
+ "windows-interface",
1891
+ "windows-link 0.1.3",
1892
+ "windows-result",
1893
+ "windows-strings",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "windows-implement"
1898
+ version = "0.60.0"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
1901
+ dependencies = [
1902
+ "proc-macro2",
1903
+ "quote",
1904
+ "syn",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "windows-interface"
1909
+ version = "0.59.1"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
1912
+ dependencies = [
1913
+ "proc-macro2",
1914
+ "quote",
1915
+ "syn",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "windows-link"
1920
+ version = "0.1.3"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1923
+
1924
+ [[package]]
1925
+ name = "windows-link"
1926
+ version = "0.2.0"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
1929
+
1930
+ [[package]]
1931
+ name = "windows-result"
1932
+ version = "0.3.4"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
1935
+ dependencies = [
1936
+ "windows-link 0.1.3",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "windows-strings"
1941
+ version = "0.4.2"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
1944
+ dependencies = [
1945
+ "windows-link 0.1.3",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "windows-sys"
1950
+ version = "0.60.2"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1953
+ dependencies = [
1954
+ "windows-targets 0.53.3",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "windows-sys"
1959
+ version = "0.61.0"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
1962
+ dependencies = [
1963
+ "windows-link 0.2.0",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "windows-targets"
1968
+ version = "0.52.6"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1971
+ dependencies = [
1972
+ "windows_aarch64_gnullvm 0.52.6",
1973
+ "windows_aarch64_msvc 0.52.6",
1974
+ "windows_i686_gnu 0.52.6",
1975
+ "windows_i686_gnullvm 0.52.6",
1976
+ "windows_i686_msvc 0.52.6",
1977
+ "windows_x86_64_gnu 0.52.6",
1978
+ "windows_x86_64_gnullvm 0.52.6",
1979
+ "windows_x86_64_msvc 0.52.6",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "windows-targets"
1984
+ version = "0.53.3"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
1987
+ dependencies = [
1988
+ "windows-link 0.1.3",
1989
+ "windows_aarch64_gnullvm 0.53.0",
1990
+ "windows_aarch64_msvc 0.53.0",
1991
+ "windows_i686_gnu 0.53.0",
1992
+ "windows_i686_gnullvm 0.53.0",
1993
+ "windows_i686_msvc 0.53.0",
1994
+ "windows_x86_64_gnu 0.53.0",
1995
+ "windows_x86_64_gnullvm 0.53.0",
1996
+ "windows_x86_64_msvc 0.53.0",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "windows_aarch64_gnullvm"
2001
+ version = "0.52.6"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2004
+
2005
+ [[package]]
2006
+ name = "windows_aarch64_gnullvm"
2007
+ version = "0.53.0"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2010
+
2011
+ [[package]]
2012
+ name = "windows_aarch64_msvc"
2013
+ version = "0.52.6"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2016
+
2017
+ [[package]]
2018
+ name = "windows_aarch64_msvc"
2019
+ version = "0.53.0"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2022
+
2023
+ [[package]]
2024
+ name = "windows_i686_gnu"
2025
+ version = "0.52.6"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2028
+
2029
+ [[package]]
2030
+ name = "windows_i686_gnu"
2031
+ version = "0.53.0"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2034
+
2035
+ [[package]]
2036
+ name = "windows_i686_gnullvm"
2037
+ version = "0.52.6"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2040
+
2041
+ [[package]]
2042
+ name = "windows_i686_gnullvm"
2043
+ version = "0.53.0"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2046
+
2047
+ [[package]]
2048
+ name = "windows_i686_msvc"
2049
+ version = "0.52.6"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2052
+
2053
+ [[package]]
2054
+ name = "windows_i686_msvc"
2055
+ version = "0.53.0"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2058
+
2059
+ [[package]]
2060
+ name = "windows_x86_64_gnu"
2061
+ version = "0.52.6"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2064
+
2065
+ [[package]]
2066
+ name = "windows_x86_64_gnu"
2067
+ version = "0.53.0"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2070
+
2071
+ [[package]]
2072
+ name = "windows_x86_64_gnullvm"
2073
+ version = "0.52.6"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2076
+
2077
+ [[package]]
2078
+ name = "windows_x86_64_gnullvm"
2079
+ version = "0.53.0"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2082
+
2083
+ [[package]]
2084
+ name = "windows_x86_64_msvc"
2085
+ version = "0.52.6"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2088
+
2089
+ [[package]]
2090
+ name = "windows_x86_64_msvc"
2091
+ version = "0.53.0"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2094
+
2095
+ [[package]]
2096
+ name = "wit-bindgen"
2097
+ version = "0.45.1"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36"
2100
+
2101
+ [[package]]
2102
+ name = "xattr"
2103
+ version = "1.5.1"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
2106
+ dependencies = [
2107
+ "libc",
2108
+ "rustix",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "zerocopy"
2113
+ version = "0.8.27"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2116
+ dependencies = [
2117
+ "zerocopy-derive",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "zerocopy-derive"
2122
+ version = "0.8.27"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2125
+ dependencies = [
2126
+ "proc-macro2",
2127
+ "quote",
2128
+ "syn",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "zeroize"
2133
+ version = "1.8.1"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"