magicmindnet 0.2.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 (140) hide show
  1. magicmindnet-0.2.0/Cargo.lock +1657 -0
  2. magicmindnet-0.2.0/Cargo.toml +31 -0
  3. magicmindnet-0.2.0/LICENSE +17 -0
  4. magicmindnet-0.2.0/PKG-INFO +483 -0
  5. magicmindnet-0.2.0/README.md +436 -0
  6. magicmindnet-0.2.0/crates/mmn-core/Cargo.toml +14 -0
  7. magicmindnet-0.2.0/crates/mmn-core/src/autograd.rs +122 -0
  8. magicmindnet-0.2.0/crates/mmn-core/src/device.rs +54 -0
  9. magicmindnet-0.2.0/crates/mmn-core/src/dtype.rs +17 -0
  10. magicmindnet-0.2.0/crates/mmn-core/src/elementwise.rs +385 -0
  11. magicmindnet-0.2.0/crates/mmn-core/src/error.rs +93 -0
  12. magicmindnet-0.2.0/crates/mmn-core/src/lib.rs +14 -0
  13. magicmindnet-0.2.0/crates/mmn-core/src/ops.rs +107 -0
  14. magicmindnet-0.2.0/crates/mmn-core/src/tensor.rs +384 -0
  15. magicmindnet-0.2.0/crates/mmn-cuda/Cargo.toml +19 -0
  16. magicmindnet-0.2.0/crates/mmn-cuda/src/lib.rs +79 -0
  17. magicmindnet-0.2.0/crates/mmn-data/Cargo.toml +15 -0
  18. magicmindnet-0.2.0/crates/mmn-data/src/bpe.rs +269 -0
  19. magicmindnet-0.2.0/crates/mmn-data/src/chatxml.rs +118 -0
  20. magicmindnet-0.2.0/crates/mmn-data/src/dataset.rs +662 -0
  21. magicmindnet-0.2.0/crates/mmn-data/src/encoder.rs +29 -0
  22. magicmindnet-0.2.0/crates/mmn-data/src/error.rs +17 -0
  23. magicmindnet-0.2.0/crates/mmn-data/src/gpt2_bpe.rs +278 -0
  24. magicmindnet-0.2.0/crates/mmn-data/src/lib.rs +23 -0
  25. magicmindnet-0.2.0/crates/mmn-data/src/unigram.rs +324 -0
  26. magicmindnet-0.2.0/crates/mmn-data/src/vision.rs +304 -0
  27. magicmindnet-0.2.0/crates/mmn-io/Cargo.toml +15 -0
  28. magicmindnet-0.2.0/crates/mmn-io/src/block_tensors.rs +123 -0
  29. magicmindnet-0.2.0/crates/mmn-io/src/chatbot_io.rs +781 -0
  30. magicmindnet-0.2.0/crates/mmn-io/src/checkpoint_util.rs +119 -0
  31. magicmindnet-0.2.0/crates/mmn-io/src/classifier_io.rs +111 -0
  32. magicmindnet-0.2.0/crates/mmn-io/src/detect.rs +439 -0
  33. magicmindnet-0.2.0/crates/mmn-io/src/diffusion_io.rs +142 -0
  34. magicmindnet-0.2.0/crates/mmn-io/src/hf_adapt.rs +510 -0
  35. magicmindnet-0.2.0/crates/mmn-io/src/hf_classifier_safetensors.rs +222 -0
  36. magicmindnet-0.2.0/crates/mmn-io/src/hf_safetensors.rs +854 -0
  37. magicmindnet-0.2.0/crates/mmn-io/src/hf_tensor_codec.rs +104 -0
  38. magicmindnet-0.2.0/crates/mmn-io/src/interop/arrays_auto.rs +373 -0
  39. magicmindnet-0.2.0/crates/mmn-io/src/interop/blosc.rs +268 -0
  40. magicmindnet-0.2.0/crates/mmn-io/src/interop/blosclz.rs +137 -0
  41. magicmindnet-0.2.0/crates/mmn-io/src/interop/deflate.rs +283 -0
  42. magicmindnet-0.2.0/crates/mmn-io/src/interop/flax.rs +382 -0
  43. magicmindnet-0.2.0/crates/mmn-io/src/interop/ggml_legacy.rs +583 -0
  44. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf.rs +822 -0
  45. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf_chatbot.rs +846 -0
  46. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf_info.rs +347 -0
  47. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf_iq_grids.rs +367 -0
  48. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf_quant.rs +1392 -0
  49. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf_quant_iq.rs +548 -0
  50. magicmindnet-0.2.0/crates/mmn-io/src/interop/gguf_quant_k_encode.rs +846 -0
  51. magicmindnet-0.2.0/crates/mmn-io/src/interop/hdf5.rs +855 -0
  52. magicmindnet-0.2.0/crates/mmn-io/src/interop/hdf5_write.rs +470 -0
  53. magicmindnet-0.2.0/crates/mmn-io/src/interop/inflate.rs +437 -0
  54. magicmindnet-0.2.0/crates/mmn-io/src/interop/lz4.rs +139 -0
  55. magicmindnet-0.2.0/crates/mmn-io/src/interop/mod.rs +43 -0
  56. magicmindnet-0.2.0/crates/mmn-io/src/interop/msgpack.rs +449 -0
  57. magicmindnet-0.2.0/crates/mmn-io/src/interop/npy.rs +415 -0
  58. magicmindnet-0.2.0/crates/mmn-io/src/interop/npz_chatbot.rs +200 -0
  59. magicmindnet-0.2.0/crates/mmn-io/src/interop/onnx.rs +305 -0
  60. magicmindnet-0.2.0/crates/mmn-io/src/interop/pickle.rs +716 -0
  61. magicmindnet-0.2.0/crates/mmn-io/src/interop/pickle_arrays.rs +473 -0
  62. magicmindnet-0.2.0/crates/mmn-io/src/interop/proto.rs +170 -0
  63. magicmindnet-0.2.0/crates/mmn-io/src/interop/sharded.rs +398 -0
  64. magicmindnet-0.2.0/crates/mmn-io/src/interop/snappy.rs +159 -0
  65. magicmindnet-0.2.0/crates/mmn-io/src/interop/st_arrays.rs +266 -0
  66. magicmindnet-0.2.0/crates/mmn-io/src/interop/tf_checkpoint.rs +574 -0
  67. magicmindnet-0.2.0/crates/mmn-io/src/interop/tflite.rs +422 -0
  68. magicmindnet-0.2.0/crates/mmn-io/src/interop/torch_pt.rs +832 -0
  69. magicmindnet-0.2.0/crates/mmn-io/src/interop/zarr.rs +865 -0
  70. magicmindnet-0.2.0/crates/mmn-io/src/interop/zip.rs +579 -0
  71. magicmindnet-0.2.0/crates/mmn-io/src/interop/zstd.rs +882 -0
  72. magicmindnet-0.2.0/crates/mmn-io/src/io_tests/chatbot_io_tests.rs +1628 -0
  73. magicmindnet-0.2.0/crates/mmn-io/src/io_tests/classifier_io_tests.rs +301 -0
  74. magicmindnet-0.2.0/crates/mmn-io/src/io_tests/diffusion_io_tests.rs +112 -0
  75. magicmindnet-0.2.0/crates/mmn-io/src/io_tests/helpers.rs +5 -0
  76. magicmindnet-0.2.0/crates/mmn-io/src/io_tests/mod.rs +4 -0
  77. magicmindnet-0.2.0/crates/mmn-io/src/lib.rs +99 -0
  78. magicmindnet-0.2.0/crates/mmn-io/src/mmn_json.rs +750 -0
  79. magicmindnet-0.2.0/crates/mmn-io/src/st_codec.rs +374 -0
  80. magicmindnet-0.2.0/crates/mmn-io/src/tensor_merge.rs +21 -0
  81. magicmindnet-0.2.0/crates/mmn-models/Cargo.toml +15 -0
  82. magicmindnet-0.2.0/crates/mmn-models/src/autoset.rs +189 -0
  83. magicmindnet-0.2.0/crates/mmn-models/src/chatbot.rs +3452 -0
  84. magicmindnet-0.2.0/crates/mmn-models/src/lib.rs +11 -0
  85. magicmindnet-0.2.0/crates/mmn-nn/Cargo.toml +11 -0
  86. magicmindnet-0.2.0/crates/mmn-nn/src/kv_cache.rs +568 -0
  87. magicmindnet-0.2.0/crates/mmn-nn/src/lib.rs +3084 -0
  88. magicmindnet-0.2.0/crates/mmn-ops/Cargo.toml +17 -0
  89. magicmindnet-0.2.0/crates/mmn-ops/src/lib.rs +17 -0
  90. magicmindnet-0.2.0/crates/mmn-optim/Cargo.toml +11 -0
  91. magicmindnet-0.2.0/crates/mmn-optim/src/lib.rs +386 -0
  92. magicmindnet-0.2.0/crates/mmn-py/Cargo.toml +31 -0
  93. magicmindnet-0.2.0/crates/mmn-py/src/datasets/classification.rs +105 -0
  94. magicmindnet-0.2.0/crates/mmn-py/src/datasets/corpus.rs +122 -0
  95. magicmindnet-0.2.0/crates/mmn-py/src/datasets/image.rs +152 -0
  96. magicmindnet-0.2.0/crates/mmn-py/src/datasets/mod.rs +9 -0
  97. magicmindnet-0.2.0/crates/mmn-py/src/datasets/qa.rs +185 -0
  98. magicmindnet-0.2.0/crates/mmn-py/src/encoder_util.rs +19 -0
  99. magicmindnet-0.2.0/crates/mmn-py/src/errors.rs +33 -0
  100. magicmindnet-0.2.0/crates/mmn-py/src/io/mod.rs +716 -0
  101. magicmindnet-0.2.0/crates/mmn-py/src/lib.rs +127 -0
  102. magicmindnet-0.2.0/crates/mmn-py/src/models/chatbot.rs +973 -0
  103. magicmindnet-0.2.0/crates/mmn-py/src/models/classifier.rs +176 -0
  104. magicmindnet-0.2.0/crates/mmn-py/src/models/diffusion.rs +226 -0
  105. magicmindnet-0.2.0/crates/mmn-py/src/models/mod.rs +7 -0
  106. magicmindnet-0.2.0/crates/mmn-py/src/resource.rs +13 -0
  107. magicmindnet-0.2.0/crates/mmn-py/src/tokenizer.rs +199 -0
  108. magicmindnet-0.2.0/crates/mmn-py/src/train/mod.rs +178 -0
  109. magicmindnet-0.2.0/crates/mmn-py/src/train_config.rs +158 -0
  110. magicmindnet-0.2.0/crates/mmn-py/src/vision.rs +15 -0
  111. magicmindnet-0.2.0/crates/mmn-resource/Cargo.toml +15 -0
  112. magicmindnet-0.2.0/crates/mmn-resource/src/lib.rs +99 -0
  113. magicmindnet-0.2.0/crates/mmn-train/Cargo.toml +19 -0
  114. magicmindnet-0.2.0/crates/mmn-train/src/generate.rs +1064 -0
  115. magicmindnet-0.2.0/crates/mmn-train/src/json_constrain.rs +509 -0
  116. magicmindnet-0.2.0/crates/mmn-train/src/lib.rs +2029 -0
  117. magicmindnet-0.2.0/pyproject.toml +85 -0
  118. magicmindnet-0.2.0/python/magicmindnet/__init__.py +248 -0
  119. magicmindnet-0.2.0/python/magicmindnet/_native.pyi +651 -0
  120. magicmindnet-0.2.0/python/magicmindnet/bpe_io.py +19 -0
  121. magicmindnet-0.2.0/python/magicmindnet/chat.py +119 -0
  122. magicmindnet-0.2.0/python/magicmindnet/eval/__init__.py +42 -0
  123. magicmindnet-0.2.0/python/magicmindnet/eval/__main__.py +103 -0
  124. magicmindnet-0.2.0/python/magicmindnet/eval/_util.py +85 -0
  125. magicmindnet-0.2.0/python/magicmindnet/eval/registry.py +99 -0
  126. magicmindnet-0.2.0/python/magicmindnet/eval/runner.py +123 -0
  127. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_cls.py +83 -0
  128. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_diffusion.py +75 -0
  129. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_extra.py +173 -0
  130. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_hub.py +153 -0
  131. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_io.py +55 -0
  132. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_lm.py +349 -0
  133. magicmindnet-0.2.0/python/magicmindnet/eval/tasks_rl.py +53 -0
  134. magicmindnet-0.2.0/python/magicmindnet/eval/types.py +97 -0
  135. magicmindnet-0.2.0/python/magicmindnet/hub.py +1522 -0
  136. magicmindnet-0.2.0/python/magicmindnet/interop.py +543 -0
  137. magicmindnet-0.2.0/python/magicmindnet/py.typed +0 -0
  138. magicmindnet-0.2.0/python/magicmindnet/serve.py +228 -0
  139. magicmindnet-0.2.0/python/magicmindnet/unigram_io.py +19 -0
  140. magicmindnet-0.2.0/python/magicmindnet/vision.py +45 -0
@@ -0,0 +1,1657 @@
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 = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "arrow"
45
+ version = "54.3.1"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "b5ec52ba94edeed950e4a41f75d35376df196e8cb04437f7280a5aa49f20f796"
48
+ dependencies = [
49
+ "arrow-arith",
50
+ "arrow-array",
51
+ "arrow-buffer",
52
+ "arrow-cast",
53
+ "arrow-data",
54
+ "arrow-json",
55
+ "arrow-ord",
56
+ "arrow-row",
57
+ "arrow-schema",
58
+ "arrow-select",
59
+ "arrow-string",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "arrow-arith"
64
+ version = "54.3.1"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "8fc766fdacaf804cb10c7c70580254fcdb5d55cdfda2bc57b02baf5223a3af9e"
67
+ dependencies = [
68
+ "arrow-array",
69
+ "arrow-buffer",
70
+ "arrow-data",
71
+ "arrow-schema",
72
+ "chrono",
73
+ "num",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "arrow-array"
78
+ version = "54.3.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "a12fcdb3f1d03f69d3ec26ac67645a8fe3f878d77b5ebb0b15d64a116c212985"
81
+ dependencies = [
82
+ "ahash",
83
+ "arrow-buffer",
84
+ "arrow-data",
85
+ "arrow-schema",
86
+ "chrono",
87
+ "half",
88
+ "hashbrown 0.15.5",
89
+ "num",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "arrow-buffer"
94
+ version = "54.3.1"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "263f4801ff1839ef53ebd06f99a56cecd1dbaf314ec893d93168e2e860e0291c"
97
+ dependencies = [
98
+ "bytes",
99
+ "half",
100
+ "num",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "arrow-cast"
105
+ version = "54.3.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "ede6175fbc039dfc946a61c1b6d42fd682fcecf5ab5d148fbe7667705798cac9"
108
+ dependencies = [
109
+ "arrow-array",
110
+ "arrow-buffer",
111
+ "arrow-data",
112
+ "arrow-schema",
113
+ "arrow-select",
114
+ "atoi",
115
+ "base64",
116
+ "chrono",
117
+ "half",
118
+ "lexical-core",
119
+ "num",
120
+ "ryu",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "arrow-data"
125
+ version = "54.3.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "61cfdd7d99b4ff618f167e548b2411e5dd2c98c0ddebedd7df433d34c20a4429"
128
+ dependencies = [
129
+ "arrow-buffer",
130
+ "arrow-schema",
131
+ "half",
132
+ "num",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "arrow-ipc"
137
+ version = "54.3.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "62ff528658b521e33905334723b795ee56b393dbe9cf76c8b1f64b648c65a60c"
140
+ dependencies = [
141
+ "arrow-array",
142
+ "arrow-buffer",
143
+ "arrow-data",
144
+ "arrow-schema",
145
+ "flatbuffers",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "arrow-json"
150
+ version = "54.3.1"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "0ee5b4ca98a7fb2efb9ab3309a5d1c88b5116997ff93f3147efdc1062a6158e9"
153
+ dependencies = [
154
+ "arrow-array",
155
+ "arrow-buffer",
156
+ "arrow-cast",
157
+ "arrow-data",
158
+ "arrow-schema",
159
+ "chrono",
160
+ "half",
161
+ "indexmap",
162
+ "lexical-core",
163
+ "memchr",
164
+ "num",
165
+ "serde",
166
+ "serde_json",
167
+ "simdutf8",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "arrow-ord"
172
+ version = "54.3.1"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "f0a3334a743bd2a1479dbc635540617a3923b4b2f6870f37357339e6b5363c21"
175
+ dependencies = [
176
+ "arrow-array",
177
+ "arrow-buffer",
178
+ "arrow-data",
179
+ "arrow-schema",
180
+ "arrow-select",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "arrow-row"
185
+ version = "54.3.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "8d1d7a7291d2c5107e92140f75257a99343956871f3d3ab33a7b41532f79cb68"
188
+ dependencies = [
189
+ "arrow-array",
190
+ "arrow-buffer",
191
+ "arrow-data",
192
+ "arrow-schema",
193
+ "half",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "arrow-schema"
198
+ version = "54.3.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "39cfaf5e440be44db5413b75b72c2a87c1f8f0627117d110264048f2969b99e9"
201
+
202
+ [[package]]
203
+ name = "arrow-select"
204
+ version = "54.3.1"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "69efcd706420e52cd44f5c4358d279801993846d1c2a8e52111853d61d55a619"
207
+ dependencies = [
208
+ "ahash",
209
+ "arrow-array",
210
+ "arrow-buffer",
211
+ "arrow-data",
212
+ "arrow-schema",
213
+ "num",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "arrow-string"
218
+ version = "54.3.1"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "a21546b337ab304a32cfc0770f671db7411787586b45b78b4593ae78e64e2b03"
221
+ dependencies = [
222
+ "arrow-array",
223
+ "arrow-buffer",
224
+ "arrow-data",
225
+ "arrow-schema",
226
+ "arrow-select",
227
+ "memchr",
228
+ "num",
229
+ "regex",
230
+ "regex-syntax",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "atoi"
235
+ version = "2.0.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
238
+ dependencies = [
239
+ "num-traits",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "autocfg"
244
+ version = "1.5.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
247
+
248
+ [[package]]
249
+ name = "base64"
250
+ version = "0.22.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
253
+
254
+ [[package]]
255
+ name = "bitflags"
256
+ version = "1.3.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
259
+
260
+ [[package]]
261
+ name = "bitflags"
262
+ version = "2.11.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
265
+
266
+ [[package]]
267
+ name = "bumpalo"
268
+ version = "3.20.3"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
271
+
272
+ [[package]]
273
+ name = "bytemuck"
274
+ version = "1.25.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
277
+
278
+ [[package]]
279
+ name = "byteorder"
280
+ version = "1.5.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
283
+
284
+ [[package]]
285
+ name = "byteorder-lite"
286
+ version = "0.1.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
289
+
290
+ [[package]]
291
+ name = "bytes"
292
+ version = "1.11.1"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
295
+
296
+ [[package]]
297
+ name = "cc"
298
+ version = "1.2.63"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
301
+ dependencies = [
302
+ "find-msvc-tools",
303
+ "shlex",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "cfg-if"
308
+ version = "1.0.4"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
311
+
312
+ [[package]]
313
+ name = "chrono"
314
+ version = "0.4.44"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
317
+ dependencies = [
318
+ "iana-time-zone",
319
+ "num-traits",
320
+ "windows-link",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "const-random"
325
+ version = "0.1.18"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
328
+ dependencies = [
329
+ "const-random-macro",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "const-random-macro"
334
+ version = "0.1.16"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
337
+ dependencies = [
338
+ "getrandom 0.2.17",
339
+ "once_cell",
340
+ "tiny-keccak",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "core-foundation-sys"
345
+ version = "0.8.7"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
348
+
349
+ [[package]]
350
+ name = "crc32fast"
351
+ version = "1.5.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
354
+ dependencies = [
355
+ "cfg-if",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "crossbeam-deque"
360
+ version = "0.8.6"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
363
+ dependencies = [
364
+ "crossbeam-epoch",
365
+ "crossbeam-utils",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "crossbeam-epoch"
370
+ version = "0.9.18"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
373
+ dependencies = [
374
+ "crossbeam-utils",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "crossbeam-utils"
379
+ version = "0.8.21"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
382
+
383
+ [[package]]
384
+ name = "crunchy"
385
+ version = "0.2.4"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
388
+
389
+ [[package]]
390
+ name = "cudarc"
391
+ version = "0.12.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "38cd60a9a42ec83a2ed7effb0b1f073270264ea99da7acfc44f7e8d74dee0384"
394
+ dependencies = [
395
+ "libloading",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "either"
400
+ version = "1.16.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
403
+
404
+ [[package]]
405
+ name = "equivalent"
406
+ version = "1.0.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
409
+
410
+ [[package]]
411
+ name = "fdeflate"
412
+ version = "0.3.7"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
415
+ dependencies = [
416
+ "simd-adler32",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "find-msvc-tools"
421
+ version = "0.1.9"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
424
+
425
+ [[package]]
426
+ name = "flatbuffers"
427
+ version = "24.12.23"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
430
+ dependencies = [
431
+ "bitflags 1.3.2",
432
+ "rustc_version",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "flate2"
437
+ version = "1.1.9"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
440
+ dependencies = [
441
+ "crc32fast",
442
+ "miniz_oxide",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "futures-core"
447
+ version = "0.3.32"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
450
+
451
+ [[package]]
452
+ name = "futures-task"
453
+ version = "0.3.32"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
456
+
457
+ [[package]]
458
+ name = "futures-util"
459
+ version = "0.3.32"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
462
+ dependencies = [
463
+ "futures-core",
464
+ "futures-task",
465
+ "pin-project-lite",
466
+ "slab",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "getrandom"
471
+ version = "0.2.17"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
474
+ dependencies = [
475
+ "cfg-if",
476
+ "libc",
477
+ "wasi",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "getrandom"
482
+ version = "0.3.4"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
485
+ dependencies = [
486
+ "cfg-if",
487
+ "libc",
488
+ "r-efi",
489
+ "wasip2",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "half"
494
+ version = "2.7.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
497
+ dependencies = [
498
+ "cfg-if",
499
+ "crunchy",
500
+ "num-traits",
501
+ "zerocopy",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "hashbrown"
506
+ version = "0.15.5"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
509
+
510
+ [[package]]
511
+ name = "hashbrown"
512
+ version = "0.17.1"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
515
+
516
+ [[package]]
517
+ name = "heck"
518
+ version = "0.5.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
521
+
522
+ [[package]]
523
+ name = "iana-time-zone"
524
+ version = "0.1.65"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
527
+ dependencies = [
528
+ "android_system_properties",
529
+ "core-foundation-sys",
530
+ "iana-time-zone-haiku",
531
+ "js-sys",
532
+ "log",
533
+ "wasm-bindgen",
534
+ "windows-core",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "iana-time-zone-haiku"
539
+ version = "0.1.2"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
542
+ dependencies = [
543
+ "cc",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "image"
548
+ version = "0.25.10"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
551
+ dependencies = [
552
+ "bytemuck",
553
+ "byteorder-lite",
554
+ "moxcms",
555
+ "num-traits",
556
+ "png",
557
+ "zune-core",
558
+ "zune-jpeg",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "indexmap"
563
+ version = "2.14.0"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
566
+ dependencies = [
567
+ "equivalent",
568
+ "hashbrown 0.17.1",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "indoc"
573
+ version = "2.0.7"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
576
+ dependencies = [
577
+ "rustversion",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "integer-encoding"
582
+ version = "3.0.4"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
585
+
586
+ [[package]]
587
+ name = "itoa"
588
+ version = "1.0.18"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
591
+
592
+ [[package]]
593
+ name = "js-sys"
594
+ version = "0.3.99"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
597
+ dependencies = [
598
+ "cfg-if",
599
+ "futures-util",
600
+ "once_cell",
601
+ "wasm-bindgen",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "lexical-core"
606
+ version = "1.0.6"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
609
+ dependencies = [
610
+ "lexical-parse-float",
611
+ "lexical-parse-integer",
612
+ "lexical-util",
613
+ "lexical-write-float",
614
+ "lexical-write-integer",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "lexical-parse-float"
619
+ version = "1.0.6"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
622
+ dependencies = [
623
+ "lexical-parse-integer",
624
+ "lexical-util",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "lexical-parse-integer"
629
+ version = "1.0.6"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
632
+ dependencies = [
633
+ "lexical-util",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "lexical-util"
638
+ version = "1.0.7"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
641
+
642
+ [[package]]
643
+ name = "lexical-write-float"
644
+ version = "1.0.6"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
647
+ dependencies = [
648
+ "lexical-util",
649
+ "lexical-write-integer",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "lexical-write-integer"
654
+ version = "1.0.6"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
657
+ dependencies = [
658
+ "lexical-util",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "libc"
663
+ version = "0.2.186"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
666
+
667
+ [[package]]
668
+ name = "libloading"
669
+ version = "0.8.9"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
672
+ dependencies = [
673
+ "cfg-if",
674
+ "windows-link",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "libm"
679
+ version = "0.2.16"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
682
+
683
+ [[package]]
684
+ name = "log"
685
+ version = "0.4.30"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
688
+
689
+ [[package]]
690
+ name = "matrixmultiply"
691
+ version = "0.3.10"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
694
+ dependencies = [
695
+ "autocfg",
696
+ "rawpointer",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "memchr"
701
+ version = "2.8.1"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
704
+
705
+ [[package]]
706
+ name = "memoffset"
707
+ version = "0.9.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
710
+ dependencies = [
711
+ "autocfg",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "miniz_oxide"
716
+ version = "0.8.9"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
719
+ dependencies = [
720
+ "adler2",
721
+ "simd-adler32",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "mmn-core"
726
+ version = "0.2.0"
727
+ dependencies = [
728
+ "half",
729
+ "ndarray",
730
+ "rand",
731
+ "thiserror",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "mmn-cuda"
736
+ version = "0.2.0"
737
+ dependencies = [
738
+ "cudarc",
739
+ "mmn-core",
740
+ "ndarray",
741
+ "thiserror",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "mmn-data"
746
+ version = "0.2.0"
747
+ dependencies = [
748
+ "arrow",
749
+ "image",
750
+ "mmn-core",
751
+ "ndarray",
752
+ "parquet",
753
+ "serde",
754
+ "serde_json",
755
+ "thiserror",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "mmn-io"
760
+ version = "0.2.0"
761
+ dependencies = [
762
+ "half",
763
+ "mmn-core",
764
+ "mmn-data",
765
+ "mmn-models",
766
+ "ndarray",
767
+ "serde",
768
+ "serde_json",
769
+ "thiserror",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "mmn-models"
774
+ version = "0.2.0"
775
+ dependencies = [
776
+ "mmn-core",
777
+ "mmn-data",
778
+ "mmn-nn",
779
+ "mmn-ops",
780
+ "mmn-optim",
781
+ "ndarray",
782
+ "rand",
783
+ "serde",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "mmn-nn"
788
+ version = "0.2.0"
789
+ dependencies = [
790
+ "mmn-core",
791
+ "mmn-ops",
792
+ "ndarray",
793
+ "rand",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "mmn-ops"
798
+ version = "0.2.0"
799
+ dependencies = [
800
+ "mmn-core",
801
+ "mmn-cuda",
802
+ "ndarray",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "mmn-optim"
807
+ version = "0.2.0"
808
+ dependencies = [
809
+ "half",
810
+ "mmn-core",
811
+ "ndarray",
812
+ "rand",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "mmn-py"
817
+ version = "0.2.0"
818
+ dependencies = [
819
+ "mmn-core",
820
+ "mmn-cuda",
821
+ "mmn-data",
822
+ "mmn-io",
823
+ "mmn-models",
824
+ "mmn-nn",
825
+ "mmn-ops",
826
+ "mmn-optim",
827
+ "mmn-resource",
828
+ "mmn-train",
829
+ "ndarray",
830
+ "pyo3",
831
+ "serde_json",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "mmn-resource"
836
+ version = "0.2.0"
837
+ dependencies = [
838
+ "libc",
839
+ "mmn-core",
840
+ "thiserror",
841
+ "windows-sys",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "mmn-train"
846
+ version = "0.2.0"
847
+ dependencies = [
848
+ "image",
849
+ "mmn-core",
850
+ "mmn-cuda",
851
+ "mmn-data",
852
+ "mmn-io",
853
+ "mmn-models",
854
+ "mmn-ops",
855
+ "mmn-optim",
856
+ "ndarray",
857
+ "rand",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "moxcms"
862
+ version = "0.8.1"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
865
+ dependencies = [
866
+ "num-traits",
867
+ "pxfm",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "ndarray"
872
+ version = "0.16.1"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
875
+ dependencies = [
876
+ "matrixmultiply",
877
+ "num-complex",
878
+ "num-integer",
879
+ "num-traits",
880
+ "portable-atomic",
881
+ "portable-atomic-util",
882
+ "rawpointer",
883
+ "rayon",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "num"
888
+ version = "0.4.3"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
891
+ dependencies = [
892
+ "num-bigint",
893
+ "num-complex",
894
+ "num-integer",
895
+ "num-iter",
896
+ "num-rational",
897
+ "num-traits",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "num-bigint"
902
+ version = "0.4.6"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
905
+ dependencies = [
906
+ "num-integer",
907
+ "num-traits",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "num-complex"
912
+ version = "0.4.6"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
915
+ dependencies = [
916
+ "num-traits",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "num-integer"
921
+ version = "0.1.46"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
924
+ dependencies = [
925
+ "num-traits",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "num-iter"
930
+ version = "0.1.45"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
933
+ dependencies = [
934
+ "autocfg",
935
+ "num-integer",
936
+ "num-traits",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "num-rational"
941
+ version = "0.4.2"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
944
+ dependencies = [
945
+ "num-bigint",
946
+ "num-integer",
947
+ "num-traits",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "num-traits"
952
+ version = "0.2.19"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
955
+ dependencies = [
956
+ "autocfg",
957
+ "libm",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "once_cell"
962
+ version = "1.21.4"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
965
+
966
+ [[package]]
967
+ name = "ordered-float"
968
+ version = "2.10.1"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
971
+ dependencies = [
972
+ "num-traits",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "parquet"
977
+ version = "54.3.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "bfb15796ac6f56b429fd99e33ba133783ad75b27c36b4b5ce06f1f82cc97754e"
980
+ dependencies = [
981
+ "ahash",
982
+ "arrow-array",
983
+ "arrow-buffer",
984
+ "arrow-cast",
985
+ "arrow-data",
986
+ "arrow-ipc",
987
+ "arrow-schema",
988
+ "arrow-select",
989
+ "base64",
990
+ "bytes",
991
+ "chrono",
992
+ "half",
993
+ "hashbrown 0.15.5",
994
+ "num",
995
+ "num-bigint",
996
+ "paste",
997
+ "seq-macro",
998
+ "thrift",
999
+ "twox-hash",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "paste"
1004
+ version = "1.0.15"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1007
+
1008
+ [[package]]
1009
+ name = "pin-project-lite"
1010
+ version = "0.2.17"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1013
+
1014
+ [[package]]
1015
+ name = "png"
1016
+ version = "0.18.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1019
+ dependencies = [
1020
+ "bitflags 2.11.1",
1021
+ "crc32fast",
1022
+ "fdeflate",
1023
+ "flate2",
1024
+ "miniz_oxide",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "portable-atomic"
1029
+ version = "1.13.1"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1032
+
1033
+ [[package]]
1034
+ name = "portable-atomic-util"
1035
+ version = "0.2.7"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1038
+ dependencies = [
1039
+ "portable-atomic",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "ppv-lite86"
1044
+ version = "0.2.21"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1047
+ dependencies = [
1048
+ "zerocopy",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "proc-macro2"
1053
+ version = "1.0.106"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1056
+ dependencies = [
1057
+ "unicode-ident",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "pxfm"
1062
+ version = "0.1.29"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
1065
+
1066
+ [[package]]
1067
+ name = "pyo3"
1068
+ version = "0.23.5"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1071
+ dependencies = [
1072
+ "cfg-if",
1073
+ "indoc",
1074
+ "libc",
1075
+ "memoffset",
1076
+ "once_cell",
1077
+ "portable-atomic",
1078
+ "pyo3-build-config",
1079
+ "pyo3-ffi",
1080
+ "pyo3-macros",
1081
+ "unindent",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "pyo3-build-config"
1086
+ version = "0.23.5"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1089
+ dependencies = [
1090
+ "once_cell",
1091
+ "target-lexicon",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "pyo3-ffi"
1096
+ version = "0.23.5"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1099
+ dependencies = [
1100
+ "libc",
1101
+ "pyo3-build-config",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "pyo3-macros"
1106
+ version = "0.23.5"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1109
+ dependencies = [
1110
+ "proc-macro2",
1111
+ "pyo3-macros-backend",
1112
+ "quote",
1113
+ "syn",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "pyo3-macros-backend"
1118
+ version = "0.23.5"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1121
+ dependencies = [
1122
+ "heck",
1123
+ "proc-macro2",
1124
+ "pyo3-build-config",
1125
+ "quote",
1126
+ "syn",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "quote"
1131
+ version = "1.0.45"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1134
+ dependencies = [
1135
+ "proc-macro2",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "r-efi"
1140
+ version = "5.3.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1143
+
1144
+ [[package]]
1145
+ name = "rand"
1146
+ version = "0.8.6"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1149
+ dependencies = [
1150
+ "libc",
1151
+ "rand_chacha",
1152
+ "rand_core",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "rand_chacha"
1157
+ version = "0.3.1"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1160
+ dependencies = [
1161
+ "ppv-lite86",
1162
+ "rand_core",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "rand_core"
1167
+ version = "0.6.4"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1170
+ dependencies = [
1171
+ "getrandom 0.2.17",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "rawpointer"
1176
+ version = "0.2.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1179
+
1180
+ [[package]]
1181
+ name = "rayon"
1182
+ version = "1.12.0"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1185
+ dependencies = [
1186
+ "either",
1187
+ "rayon-core",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "rayon-core"
1192
+ version = "1.13.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1195
+ dependencies = [
1196
+ "crossbeam-deque",
1197
+ "crossbeam-utils",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "regex"
1202
+ version = "1.12.3"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1205
+ dependencies = [
1206
+ "aho-corasick",
1207
+ "memchr",
1208
+ "regex-automata",
1209
+ "regex-syntax",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "regex-automata"
1214
+ version = "0.4.14"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1217
+ dependencies = [
1218
+ "aho-corasick",
1219
+ "memchr",
1220
+ "regex-syntax",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "regex-syntax"
1225
+ version = "0.8.10"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1228
+
1229
+ [[package]]
1230
+ name = "rustc_version"
1231
+ version = "0.4.1"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1234
+ dependencies = [
1235
+ "semver",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "rustversion"
1240
+ version = "1.0.22"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1243
+
1244
+ [[package]]
1245
+ name = "ryu"
1246
+ version = "1.0.23"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1249
+
1250
+ [[package]]
1251
+ name = "semver"
1252
+ version = "1.0.28"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1255
+
1256
+ [[package]]
1257
+ name = "seq-macro"
1258
+ version = "0.3.6"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1261
+
1262
+ [[package]]
1263
+ name = "serde"
1264
+ version = "1.0.228"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1267
+ dependencies = [
1268
+ "serde_core",
1269
+ "serde_derive",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "serde_core"
1274
+ version = "1.0.228"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1277
+ dependencies = [
1278
+ "serde_derive",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "serde_derive"
1283
+ version = "1.0.228"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1286
+ dependencies = [
1287
+ "proc-macro2",
1288
+ "quote",
1289
+ "syn",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "serde_json"
1294
+ version = "1.0.150"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1297
+ dependencies = [
1298
+ "itoa",
1299
+ "memchr",
1300
+ "serde",
1301
+ "serde_core",
1302
+ "zmij",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "shlex"
1307
+ version = "2.0.1"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1310
+
1311
+ [[package]]
1312
+ name = "simd-adler32"
1313
+ version = "0.3.9"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1316
+
1317
+ [[package]]
1318
+ name = "simdutf8"
1319
+ version = "0.1.5"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1322
+
1323
+ [[package]]
1324
+ name = "slab"
1325
+ version = "0.4.12"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1328
+
1329
+ [[package]]
1330
+ name = "static_assertions"
1331
+ version = "1.1.0"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1334
+
1335
+ [[package]]
1336
+ name = "syn"
1337
+ version = "2.0.117"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1340
+ dependencies = [
1341
+ "proc-macro2",
1342
+ "quote",
1343
+ "unicode-ident",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "target-lexicon"
1348
+ version = "0.12.16"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1351
+
1352
+ [[package]]
1353
+ name = "thiserror"
1354
+ version = "2.0.18"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1357
+ dependencies = [
1358
+ "thiserror-impl",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "thiserror-impl"
1363
+ version = "2.0.18"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1366
+ dependencies = [
1367
+ "proc-macro2",
1368
+ "quote",
1369
+ "syn",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "thrift"
1374
+ version = "0.17.0"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
1377
+ dependencies = [
1378
+ "byteorder",
1379
+ "integer-encoding",
1380
+ "ordered-float",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "tiny-keccak"
1385
+ version = "2.0.2"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1388
+ dependencies = [
1389
+ "crunchy",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "twox-hash"
1394
+ version = "1.6.3"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
1397
+ dependencies = [
1398
+ "cfg-if",
1399
+ "static_assertions",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "unicode-ident"
1404
+ version = "1.0.24"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1407
+
1408
+ [[package]]
1409
+ name = "unindent"
1410
+ version = "0.2.4"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1413
+
1414
+ [[package]]
1415
+ name = "version_check"
1416
+ version = "0.9.5"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1419
+
1420
+ [[package]]
1421
+ name = "wasi"
1422
+ version = "0.11.1+wasi-snapshot-preview1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1425
+
1426
+ [[package]]
1427
+ name = "wasip2"
1428
+ version = "1.0.3+wasi-0.2.9"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1431
+ dependencies = [
1432
+ "wit-bindgen",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "wasm-bindgen"
1437
+ version = "0.2.122"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1440
+ dependencies = [
1441
+ "cfg-if",
1442
+ "once_cell",
1443
+ "rustversion",
1444
+ "wasm-bindgen-macro",
1445
+ "wasm-bindgen-shared",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "wasm-bindgen-macro"
1450
+ version = "0.2.122"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1453
+ dependencies = [
1454
+ "quote",
1455
+ "wasm-bindgen-macro-support",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "wasm-bindgen-macro-support"
1460
+ version = "0.2.122"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1463
+ dependencies = [
1464
+ "bumpalo",
1465
+ "proc-macro2",
1466
+ "quote",
1467
+ "syn",
1468
+ "wasm-bindgen-shared",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "wasm-bindgen-shared"
1473
+ version = "0.2.122"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1476
+ dependencies = [
1477
+ "unicode-ident",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "windows-core"
1482
+ version = "0.62.2"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1485
+ dependencies = [
1486
+ "windows-implement",
1487
+ "windows-interface",
1488
+ "windows-link",
1489
+ "windows-result",
1490
+ "windows-strings",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "windows-implement"
1495
+ version = "0.60.2"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1498
+ dependencies = [
1499
+ "proc-macro2",
1500
+ "quote",
1501
+ "syn",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "windows-interface"
1506
+ version = "0.59.3"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1509
+ dependencies = [
1510
+ "proc-macro2",
1511
+ "quote",
1512
+ "syn",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "windows-link"
1517
+ version = "0.2.1"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1520
+
1521
+ [[package]]
1522
+ name = "windows-result"
1523
+ version = "0.4.1"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1526
+ dependencies = [
1527
+ "windows-link",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "windows-strings"
1532
+ version = "0.5.1"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1535
+ dependencies = [
1536
+ "windows-link",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "windows-sys"
1541
+ version = "0.59.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1544
+ dependencies = [
1545
+ "windows-targets",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "windows-targets"
1550
+ version = "0.52.6"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1553
+ dependencies = [
1554
+ "windows_aarch64_gnullvm",
1555
+ "windows_aarch64_msvc",
1556
+ "windows_i686_gnu",
1557
+ "windows_i686_gnullvm",
1558
+ "windows_i686_msvc",
1559
+ "windows_x86_64_gnu",
1560
+ "windows_x86_64_gnullvm",
1561
+ "windows_x86_64_msvc",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "windows_aarch64_gnullvm"
1566
+ version = "0.52.6"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1569
+
1570
+ [[package]]
1571
+ name = "windows_aarch64_msvc"
1572
+ version = "0.52.6"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1575
+
1576
+ [[package]]
1577
+ name = "windows_i686_gnu"
1578
+ version = "0.52.6"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1581
+
1582
+ [[package]]
1583
+ name = "windows_i686_gnullvm"
1584
+ version = "0.52.6"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1587
+
1588
+ [[package]]
1589
+ name = "windows_i686_msvc"
1590
+ version = "0.52.6"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1593
+
1594
+ [[package]]
1595
+ name = "windows_x86_64_gnu"
1596
+ version = "0.52.6"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1599
+
1600
+ [[package]]
1601
+ name = "windows_x86_64_gnullvm"
1602
+ version = "0.52.6"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1605
+
1606
+ [[package]]
1607
+ name = "windows_x86_64_msvc"
1608
+ version = "0.52.6"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1611
+
1612
+ [[package]]
1613
+ name = "wit-bindgen"
1614
+ version = "0.57.1"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1617
+
1618
+ [[package]]
1619
+ name = "zerocopy"
1620
+ version = "0.8.50"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
1623
+ dependencies = [
1624
+ "zerocopy-derive",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "zerocopy-derive"
1629
+ version = "0.8.50"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
1632
+ dependencies = [
1633
+ "proc-macro2",
1634
+ "quote",
1635
+ "syn",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "zmij"
1640
+ version = "1.0.21"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1643
+
1644
+ [[package]]
1645
+ name = "zune-core"
1646
+ version = "0.5.1"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
1649
+
1650
+ [[package]]
1651
+ name = "zune-jpeg"
1652
+ version = "0.5.15"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
1655
+ dependencies = [
1656
+ "zune-core",
1657
+ ]