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