red-candle 0.0.6 → 1.0.0.pre.2
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.
- checksums.yaml +4 -4
- data/Cargo.lock +1667 -517
- data/Cargo.toml +4 -0
- data/README.md +224 -6
- data/ext/candle/Cargo.toml +19 -8
- data/ext/candle/build.rs +116 -0
- data/ext/candle/extconf.rb +77 -1
- data/ext/candle/src/lib.rs +44 -95
- data/ext/candle/src/llm/generation_config.rs +49 -0
- data/ext/candle/src/llm/mistral.rs +325 -0
- data/ext/candle/src/llm/mod.rs +68 -0
- data/ext/candle/src/llm/text_generation.rs +141 -0
- data/ext/candle/src/reranker.rs +267 -0
- data/ext/candle/src/ruby/device.rs +197 -0
- data/ext/candle/src/ruby/dtype.rs +37 -0
- data/ext/candle/src/ruby/embedding_model.rs +410 -0
- data/ext/candle/src/ruby/errors.rs +13 -0
- data/ext/candle/src/ruby/llm.rs +295 -0
- data/ext/candle/src/ruby/mod.rs +21 -0
- data/ext/candle/src/ruby/qtensor.rs +69 -0
- data/ext/candle/src/ruby/result.rs +3 -0
- data/ext/candle/src/ruby/tensor.rs +654 -0
- data/ext/candle/src/ruby/utils.rs +88 -0
- data/lib/candle/build_info.rb +66 -0
- data/lib/candle/device_utils.rb +20 -0
- data/lib/candle/embedding_model.rb +32 -0
- data/lib/candle/embedding_model_type.rb +31 -0
- data/lib/candle/llm.rb +107 -0
- data/lib/candle/reranker.rb +24 -0
- data/lib/candle/tensor.rb +68 -3
- data/lib/candle/version.rb +2 -2
- data/lib/candle.rb +6 -0
- metadata +25 -3
data/Cargo.lock
CHANGED
@@ -2,76 +2,78 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 3
|
4
4
|
|
5
|
+
[[package]]
|
6
|
+
name = "accelerate-src"
|
7
|
+
version = "0.3.2"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "415ed64958754dbe991900f3940677e6a7eefb4d7367afd70d642677b0c7d19d"
|
10
|
+
|
5
11
|
[[package]]
|
6
12
|
name = "addr2line"
|
7
|
-
version = "0.
|
13
|
+
version = "0.24.2"
|
8
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
15
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
10
16
|
dependencies = [
|
11
17
|
"gimli",
|
12
18
|
]
|
13
19
|
|
14
20
|
[[package]]
|
15
|
-
name = "
|
16
|
-
version = "
|
21
|
+
name = "adler2"
|
22
|
+
version = "2.0.1"
|
17
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
24
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
19
25
|
|
20
26
|
[[package]]
|
21
|
-
name = "
|
22
|
-
version = "
|
27
|
+
name = "ahash"
|
28
|
+
version = "0.8.12"
|
23
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
30
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
25
31
|
dependencies = [
|
26
|
-
"
|
32
|
+
"cfg-if",
|
33
|
+
"getrandom 0.3.3",
|
34
|
+
"once_cell",
|
35
|
+
"serde",
|
36
|
+
"version_check",
|
37
|
+
"zerocopy",
|
27
38
|
]
|
28
39
|
|
29
40
|
[[package]]
|
30
|
-
name = "
|
31
|
-
version = "
|
41
|
+
name = "aho-corasick"
|
42
|
+
version = "1.1.3"
|
32
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "
|
44
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
34
45
|
dependencies = [
|
35
|
-
"
|
36
|
-
"anstyle-parse",
|
37
|
-
"anstyle-query",
|
38
|
-
"anstyle-wincon",
|
39
|
-
"colorchoice",
|
40
|
-
"utf8parse",
|
46
|
+
"memchr",
|
41
47
|
]
|
42
48
|
|
43
49
|
[[package]]
|
44
|
-
name = "
|
45
|
-
version = "1.
|
50
|
+
name = "android-tzdata"
|
51
|
+
version = "0.1.1"
|
46
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "
|
53
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
48
54
|
|
49
55
|
[[package]]
|
50
|
-
name = "
|
51
|
-
version = "0.
|
56
|
+
name = "android_system_properties"
|
57
|
+
version = "0.1.5"
|
52
58
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
-
checksum = "
|
59
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
54
60
|
dependencies = [
|
55
|
-
"
|
61
|
+
"libc",
|
56
62
|
]
|
57
63
|
|
58
64
|
[[package]]
|
59
|
-
name = "
|
60
|
-
version = "1.0.
|
65
|
+
name = "anyhow"
|
66
|
+
version = "1.0.98"
|
61
67
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
-
checksum = "
|
63
|
-
dependencies = [
|
64
|
-
"windows-sys 0.52.0",
|
65
|
-
]
|
68
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
66
69
|
|
67
70
|
[[package]]
|
68
|
-
name = "
|
69
|
-
version = "
|
71
|
+
name = "arbitrary"
|
72
|
+
version = "1.4.1"
|
70
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
71
|
-
checksum = "
|
74
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
72
75
|
dependencies = [
|
73
|
-
"
|
74
|
-
"windows-sys 0.52.0",
|
76
|
+
"derive_arbitrary",
|
75
77
|
]
|
76
78
|
|
77
79
|
[[package]]
|
@@ -82,36 +84,36 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
82
84
|
|
83
85
|
[[package]]
|
84
86
|
name = "autocfg"
|
85
|
-
version = "1.
|
87
|
+
version = "1.5.0"
|
86
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
87
|
-
checksum = "
|
89
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
88
90
|
|
89
91
|
[[package]]
|
90
92
|
name = "backtrace"
|
91
|
-
version = "0.3.
|
93
|
+
version = "0.3.75"
|
92
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
93
|
-
checksum = "
|
95
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
94
96
|
dependencies = [
|
95
97
|
"addr2line",
|
96
|
-
"cc",
|
97
98
|
"cfg-if",
|
98
99
|
"libc",
|
99
100
|
"miniz_oxide",
|
100
101
|
"object",
|
101
102
|
"rustc-demangle",
|
103
|
+
"windows-targets 0.52.6",
|
102
104
|
]
|
103
105
|
|
104
106
|
[[package]]
|
105
|
-
name = "
|
106
|
-
version = "0.
|
107
|
+
name = "base16ct"
|
108
|
+
version = "0.2.0"
|
107
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
108
|
-
checksum = "
|
110
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
109
111
|
|
110
112
|
[[package]]
|
111
113
|
name = "base64"
|
112
|
-
version = "0.
|
114
|
+
version = "0.13.1"
|
113
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
114
|
-
checksum = "
|
116
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
115
117
|
|
116
118
|
[[package]]
|
117
119
|
name = "base64"
|
@@ -121,11 +123,11 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
121
123
|
|
122
124
|
[[package]]
|
123
125
|
name = "bindgen"
|
124
|
-
version = "0.69.
|
126
|
+
version = "0.69.5"
|
125
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
126
|
-
checksum = "
|
128
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
127
129
|
dependencies = [
|
128
|
-
"bitflags 2.
|
130
|
+
"bitflags 2.9.1",
|
129
131
|
"cexpr",
|
130
132
|
"clang-sys",
|
131
133
|
"itertools 0.12.1",
|
@@ -136,7 +138,18 @@ dependencies = [
|
|
136
138
|
"regex",
|
137
139
|
"rustc-hash",
|
138
140
|
"shlex",
|
139
|
-
"syn
|
141
|
+
"syn",
|
142
|
+
]
|
143
|
+
|
144
|
+
[[package]]
|
145
|
+
name = "bindgen_cuda"
|
146
|
+
version = "0.1.5"
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
148
|
+
checksum = "1f8489af5b7d17a81bffe37e0f4d6e1e4de87c87329d05447f22c35d95a1227d"
|
149
|
+
dependencies = [
|
150
|
+
"glob",
|
151
|
+
"num_cpus",
|
152
|
+
"rayon",
|
140
153
|
]
|
141
154
|
|
142
155
|
[[package]]
|
@@ -145,7 +158,16 @@ version = "0.5.3"
|
|
145
158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
159
|
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
147
160
|
dependencies = [
|
148
|
-
"bit-vec",
|
161
|
+
"bit-vec 0.6.3",
|
162
|
+
]
|
163
|
+
|
164
|
+
[[package]]
|
165
|
+
name = "bit-set"
|
166
|
+
version = "0.8.0"
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
168
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
169
|
+
dependencies = [
|
170
|
+
"bit-vec 0.8.0",
|
149
171
|
]
|
150
172
|
|
151
173
|
[[package]]
|
@@ -154,6 +176,12 @@ version = "0.6.3"
|
|
154
176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
177
|
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
156
178
|
|
179
|
+
[[package]]
|
180
|
+
name = "bit-vec"
|
181
|
+
version = "0.8.0"
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
184
|
+
|
157
185
|
[[package]]
|
158
186
|
name = "bitflags"
|
159
187
|
version = "1.3.2"
|
@@ -162,9 +190,24 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
162
190
|
|
163
191
|
[[package]]
|
164
192
|
name = "bitflags"
|
165
|
-
version = "2.
|
193
|
+
version = "2.9.1"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
196
|
+
|
197
|
+
[[package]]
|
198
|
+
name = "block"
|
199
|
+
version = "0.1.6"
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
201
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
202
|
+
|
203
|
+
[[package]]
|
204
|
+
name = "block-buffer"
|
205
|
+
version = "0.10.4"
|
166
206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
167
|
-
checksum = "
|
207
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
208
|
+
dependencies = [
|
209
|
+
"generic-array",
|
210
|
+
]
|
168
211
|
|
169
212
|
[[package]]
|
170
213
|
name = "bumpalo"
|
@@ -174,22 +217,22 @@ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
174
217
|
|
175
218
|
[[package]]
|
176
219
|
name = "bytemuck"
|
177
|
-
version = "1.
|
220
|
+
version = "1.23.1"
|
178
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
179
|
-
checksum = "
|
222
|
+
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
|
180
223
|
dependencies = [
|
181
224
|
"bytemuck_derive",
|
182
225
|
]
|
183
226
|
|
184
227
|
[[package]]
|
185
228
|
name = "bytemuck_derive"
|
186
|
-
version = "1.
|
229
|
+
version = "1.9.3"
|
187
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
188
|
-
checksum = "
|
231
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
189
232
|
dependencies = [
|
190
233
|
"proc-macro2",
|
191
234
|
"quote",
|
192
|
-
"syn
|
235
|
+
"syn",
|
193
236
|
]
|
194
237
|
|
195
238
|
[[package]]
|
@@ -214,56 +257,96 @@ dependencies = [
|
|
214
257
|
"half",
|
215
258
|
"hf-hub",
|
216
259
|
"magnus",
|
260
|
+
"rand 0.8.5",
|
261
|
+
"safetensors 0.3.3",
|
262
|
+
"serde",
|
263
|
+
"serde_json",
|
217
264
|
"tokenizers",
|
265
|
+
"tokio",
|
218
266
|
]
|
219
267
|
|
220
268
|
[[package]]
|
221
269
|
name = "candle-core"
|
222
|
-
version = "0.
|
270
|
+
version = "0.9.1"
|
223
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
224
|
-
checksum = "
|
272
|
+
checksum = "a9f51e2ecf6efe9737af8f993433c839f956d2b6ed4fd2dd4a7c6d8b0fa667ff"
|
225
273
|
dependencies = [
|
274
|
+
"accelerate-src",
|
226
275
|
"byteorder",
|
227
|
-
"
|
276
|
+
"candle-kernels",
|
277
|
+
"candle-metal-kernels",
|
278
|
+
"cudarc",
|
279
|
+
"gemm 0.17.1",
|
228
280
|
"half",
|
281
|
+
"intel-mkl-src",
|
282
|
+
"libc",
|
229
283
|
"memmap2",
|
284
|
+
"metal 0.27.0",
|
230
285
|
"num-traits",
|
231
286
|
"num_cpus",
|
232
|
-
"rand 0.
|
287
|
+
"rand 0.9.1",
|
233
288
|
"rand_distr",
|
234
289
|
"rayon",
|
235
|
-
"safetensors",
|
236
|
-
"thiserror 1.0.
|
237
|
-
"
|
290
|
+
"safetensors 0.4.5",
|
291
|
+
"thiserror 1.0.69",
|
292
|
+
"ug",
|
293
|
+
"ug-cuda",
|
294
|
+
"ug-metal",
|
295
|
+
"yoke 0.7.5",
|
238
296
|
"zip",
|
239
297
|
]
|
240
298
|
|
299
|
+
[[package]]
|
300
|
+
name = "candle-kernels"
|
301
|
+
version = "0.9.1"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
checksum = "9fcd989c2143aa754370b5bfee309e35fbd259e83d9ecf7a73d23d8508430775"
|
304
|
+
dependencies = [
|
305
|
+
"bindgen_cuda",
|
306
|
+
]
|
307
|
+
|
308
|
+
[[package]]
|
309
|
+
name = "candle-metal-kernels"
|
310
|
+
version = "0.9.1"
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
+
checksum = "9a323ee9c813707f73b6e59300661b354a70410f31fe4135170c4eda8a061534"
|
313
|
+
dependencies = [
|
314
|
+
"half",
|
315
|
+
"metal 0.27.0",
|
316
|
+
"once_cell",
|
317
|
+
"thiserror 1.0.69",
|
318
|
+
"tracing",
|
319
|
+
]
|
320
|
+
|
241
321
|
[[package]]
|
242
322
|
name = "candle-nn"
|
243
|
-
version = "0.
|
323
|
+
version = "0.9.1"
|
244
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
245
|
-
checksum = "
|
325
|
+
checksum = "c1980d53280c8f9e2c6cbe1785855d7ff8010208b46e21252b978badf13ad69d"
|
246
326
|
dependencies = [
|
247
327
|
"candle-core",
|
328
|
+
"candle-metal-kernels",
|
248
329
|
"half",
|
330
|
+
"metal 0.27.0",
|
249
331
|
"num-traits",
|
250
332
|
"rayon",
|
251
|
-
"safetensors",
|
333
|
+
"safetensors 0.4.5",
|
252
334
|
"serde",
|
253
|
-
"thiserror 1.0.
|
335
|
+
"thiserror 1.0.69",
|
254
336
|
]
|
255
337
|
|
256
338
|
[[package]]
|
257
339
|
name = "candle-transformers"
|
258
|
-
version = "0.
|
340
|
+
version = "0.9.1"
|
259
341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
-
checksum = "
|
342
|
+
checksum = "186cb80045dbe47e0b387ea6d3e906f02fb3056297080d9922984c90e90a72b0"
|
261
343
|
dependencies = [
|
262
344
|
"byteorder",
|
263
345
|
"candle-core",
|
264
346
|
"candle-nn",
|
347
|
+
"fancy-regex 0.13.0",
|
265
348
|
"num-traits",
|
266
|
-
"rand 0.
|
349
|
+
"rand 0.9.1",
|
267
350
|
"rayon",
|
268
351
|
"serde",
|
269
352
|
"serde_json",
|
@@ -271,6 +354,15 @@ dependencies = [
|
|
271
354
|
"tracing",
|
272
355
|
]
|
273
356
|
|
357
|
+
[[package]]
|
358
|
+
name = "castaway"
|
359
|
+
version = "0.2.3"
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
+
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
|
362
|
+
dependencies = [
|
363
|
+
"rustversion",
|
364
|
+
]
|
365
|
+
|
274
366
|
[[package]]
|
275
367
|
name = "cc"
|
276
368
|
version = "1.2.29"
|
@@ -291,15 +383,29 @@ dependencies = [
|
|
291
383
|
|
292
384
|
[[package]]
|
293
385
|
name = "cfg-if"
|
294
|
-
version = "1.0.
|
386
|
+
version = "1.0.1"
|
295
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
296
|
-
checksum = "
|
388
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
389
|
+
|
390
|
+
[[package]]
|
391
|
+
name = "chrono"
|
392
|
+
version = "0.4.41"
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
394
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
395
|
+
dependencies = [
|
396
|
+
"android-tzdata",
|
397
|
+
"iana-time-zone",
|
398
|
+
"js-sys",
|
399
|
+
"num-traits",
|
400
|
+
"wasm-bindgen",
|
401
|
+
"windows-link",
|
402
|
+
]
|
297
403
|
|
298
404
|
[[package]]
|
299
405
|
name = "clang-sys"
|
300
|
-
version = "1.
|
406
|
+
version = "1.8.1"
|
301
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
-
checksum = "
|
408
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
303
409
|
dependencies = [
|
304
410
|
"glob",
|
305
411
|
"libc",
|
@@ -307,94 +413,83 @@ dependencies = [
|
|
307
413
|
]
|
308
414
|
|
309
415
|
[[package]]
|
310
|
-
name = "
|
311
|
-
version = "
|
416
|
+
name = "compact_str"
|
417
|
+
version = "0.9.0"
|
312
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
313
|
-
checksum = "
|
419
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
314
420
|
dependencies = [
|
315
|
-
"
|
316
|
-
"
|
421
|
+
"castaway",
|
422
|
+
"cfg-if",
|
423
|
+
"itoa",
|
424
|
+
"rustversion",
|
425
|
+
"ryu",
|
426
|
+
"serde",
|
427
|
+
"static_assertions",
|
317
428
|
]
|
318
429
|
|
319
430
|
[[package]]
|
320
|
-
name = "
|
321
|
-
version = "
|
431
|
+
name = "console"
|
432
|
+
version = "0.15.11"
|
322
433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
-
checksum = "
|
434
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
324
435
|
dependencies = [
|
325
|
-
"
|
326
|
-
"
|
327
|
-
"
|
328
|
-
"
|
436
|
+
"encode_unicode",
|
437
|
+
"libc",
|
438
|
+
"once_cell",
|
439
|
+
"unicode-width",
|
440
|
+
"windows-sys 0.59.0",
|
329
441
|
]
|
330
442
|
|
331
443
|
[[package]]
|
332
|
-
name = "
|
333
|
-
version = "
|
444
|
+
name = "core-foundation"
|
445
|
+
version = "0.9.4"
|
334
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
-
checksum = "
|
447
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
336
448
|
dependencies = [
|
337
|
-
"
|
338
|
-
"
|
339
|
-
"quote",
|
340
|
-
"syn 2.0.104",
|
449
|
+
"core-foundation-sys",
|
450
|
+
"libc",
|
341
451
|
]
|
342
452
|
|
343
453
|
[[package]]
|
344
|
-
name = "
|
345
|
-
version = "0.7
|
346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
347
|
-
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
348
|
-
|
349
|
-
[[package]]
|
350
|
-
name = "colorchoice"
|
351
|
-
version = "1.0.0"
|
454
|
+
name = "core-foundation-sys"
|
455
|
+
version = "0.8.7"
|
352
456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
353
|
-
checksum = "
|
457
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
354
458
|
|
355
459
|
[[package]]
|
356
|
-
name = "
|
357
|
-
version = "0.
|
460
|
+
name = "core-graphics-types"
|
461
|
+
version = "0.1.3"
|
358
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
359
|
-
checksum = "
|
463
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
360
464
|
dependencies = [
|
361
|
-
"
|
362
|
-
"
|
465
|
+
"bitflags 1.3.2",
|
466
|
+
"core-foundation",
|
363
467
|
"libc",
|
364
|
-
"unicode-width",
|
365
|
-
"windows-sys 0.52.0",
|
366
468
|
]
|
367
469
|
|
368
470
|
[[package]]
|
369
|
-
name = "
|
370
|
-
version = "0.
|
471
|
+
name = "cpufeatures"
|
472
|
+
version = "0.2.17"
|
371
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
372
|
-
checksum = "
|
474
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
373
475
|
dependencies = [
|
374
|
-
"core-foundation-sys",
|
375
476
|
"libc",
|
376
477
|
]
|
377
478
|
|
378
|
-
[[package]]
|
379
|
-
name = "core-foundation-sys"
|
380
|
-
version = "0.8.6"
|
381
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
382
|
-
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
383
|
-
|
384
479
|
[[package]]
|
385
480
|
name = "crc32fast"
|
386
|
-
version = "1.4.
|
481
|
+
version = "1.4.2"
|
387
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
-
checksum = "
|
483
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
389
484
|
dependencies = [
|
390
485
|
"cfg-if",
|
391
486
|
]
|
392
487
|
|
393
488
|
[[package]]
|
394
489
|
name = "crossbeam-deque"
|
395
|
-
version = "0.8.
|
490
|
+
version = "0.8.6"
|
396
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
397
|
-
checksum = "
|
492
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
398
493
|
dependencies = [
|
399
494
|
"crossbeam-epoch",
|
400
495
|
"crossbeam-utils",
|
@@ -411,21 +506,41 @@ dependencies = [
|
|
411
506
|
|
412
507
|
[[package]]
|
413
508
|
name = "crossbeam-utils"
|
414
|
-
version = "0.8.
|
509
|
+
version = "0.8.21"
|
415
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
-
checksum = "
|
511
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
417
512
|
|
418
513
|
[[package]]
|
419
514
|
name = "crunchy"
|
420
|
-
version = "0.2.
|
515
|
+
version = "0.2.4"
|
421
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
422
|
-
checksum = "
|
517
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
518
|
+
|
519
|
+
[[package]]
|
520
|
+
name = "crypto-common"
|
521
|
+
version = "0.1.6"
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
524
|
+
dependencies = [
|
525
|
+
"generic-array",
|
526
|
+
"typenum",
|
527
|
+
]
|
528
|
+
|
529
|
+
[[package]]
|
530
|
+
name = "cudarc"
|
531
|
+
version = "0.16.6"
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
+
checksum = "17200eb07e7d85a243aa1bf4569a7aa998385ba98d14833973a817a63cc86e92"
|
534
|
+
dependencies = [
|
535
|
+
"half",
|
536
|
+
"libloading",
|
537
|
+
]
|
423
538
|
|
424
539
|
[[package]]
|
425
540
|
name = "darling"
|
426
|
-
version = "0.
|
541
|
+
version = "0.20.11"
|
427
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
-
checksum = "
|
543
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
429
544
|
dependencies = [
|
430
545
|
"darling_core",
|
431
546
|
"darling_macro",
|
@@ -433,58 +548,97 @@ dependencies = [
|
|
433
548
|
|
434
549
|
[[package]]
|
435
550
|
name = "darling_core"
|
436
|
-
version = "0.
|
551
|
+
version = "0.20.11"
|
437
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
-
checksum = "
|
553
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
439
554
|
dependencies = [
|
440
555
|
"fnv",
|
441
556
|
"ident_case",
|
442
557
|
"proc-macro2",
|
443
558
|
"quote",
|
444
|
-
"strsim
|
445
|
-
"syn
|
559
|
+
"strsim",
|
560
|
+
"syn",
|
446
561
|
]
|
447
562
|
|
448
563
|
[[package]]
|
449
564
|
name = "darling_macro"
|
450
|
-
version = "0.
|
565
|
+
version = "0.20.11"
|
451
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
-
checksum = "
|
567
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
453
568
|
dependencies = [
|
454
569
|
"darling_core",
|
455
570
|
"quote",
|
456
|
-
"syn
|
571
|
+
"syn",
|
572
|
+
]
|
573
|
+
|
574
|
+
[[package]]
|
575
|
+
name = "dary_heap"
|
576
|
+
version = "0.3.7"
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
578
|
+
checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
|
579
|
+
dependencies = [
|
580
|
+
"serde",
|
581
|
+
]
|
582
|
+
|
583
|
+
[[package]]
|
584
|
+
name = "derive_arbitrary"
|
585
|
+
version = "1.4.1"
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
587
|
+
checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
588
|
+
dependencies = [
|
589
|
+
"proc-macro2",
|
590
|
+
"quote",
|
591
|
+
"syn",
|
457
592
|
]
|
458
593
|
|
459
594
|
[[package]]
|
460
595
|
name = "derive_builder"
|
461
|
-
version = "0.
|
596
|
+
version = "0.20.2"
|
462
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
463
|
-
checksum = "
|
598
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
464
599
|
dependencies = [
|
465
600
|
"derive_builder_macro",
|
466
601
|
]
|
467
602
|
|
468
603
|
[[package]]
|
469
604
|
name = "derive_builder_core"
|
470
|
-
version = "0.
|
605
|
+
version = "0.20.2"
|
471
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
472
|
-
checksum = "
|
607
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
473
608
|
dependencies = [
|
474
609
|
"darling",
|
475
610
|
"proc-macro2",
|
476
611
|
"quote",
|
477
|
-
"syn
|
612
|
+
"syn",
|
478
613
|
]
|
479
614
|
|
480
615
|
[[package]]
|
481
616
|
name = "derive_builder_macro"
|
482
|
-
version = "0.
|
617
|
+
version = "0.20.2"
|
483
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
484
|
-
checksum = "
|
619
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
485
620
|
dependencies = [
|
486
621
|
"derive_builder_core",
|
487
|
-
"syn
|
622
|
+
"syn",
|
623
|
+
]
|
624
|
+
|
625
|
+
[[package]]
|
626
|
+
name = "digest"
|
627
|
+
version = "0.10.7"
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
630
|
+
dependencies = [
|
631
|
+
"block-buffer",
|
632
|
+
"crypto-common",
|
633
|
+
]
|
634
|
+
|
635
|
+
[[package]]
|
636
|
+
name = "directories"
|
637
|
+
version = "5.0.1"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
|
640
|
+
dependencies = [
|
641
|
+
"dirs-sys 0.4.1",
|
488
642
|
]
|
489
643
|
|
490
644
|
[[package]]
|
@@ -493,7 +647,19 @@ version = "6.0.0"
|
|
493
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
648
|
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
495
649
|
dependencies = [
|
496
|
-
"dirs-sys",
|
650
|
+
"dirs-sys 0.5.0",
|
651
|
+
]
|
652
|
+
|
653
|
+
[[package]]
|
654
|
+
name = "dirs-sys"
|
655
|
+
version = "0.4.1"
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
658
|
+
dependencies = [
|
659
|
+
"libc",
|
660
|
+
"option-ext",
|
661
|
+
"redox_users 0.4.6",
|
662
|
+
"windows-sys 0.48.0",
|
497
663
|
]
|
498
664
|
|
499
665
|
[[package]]
|
@@ -504,10 +670,21 @@ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
504
670
|
dependencies = [
|
505
671
|
"libc",
|
506
672
|
"option-ext",
|
507
|
-
"redox_users",
|
673
|
+
"redox_users 0.5.0",
|
508
674
|
"windows-sys 0.60.2",
|
509
675
|
]
|
510
676
|
|
677
|
+
[[package]]
|
678
|
+
name = "displaydoc"
|
679
|
+
version = "0.2.5"
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
682
|
+
dependencies = [
|
683
|
+
"proc-macro2",
|
684
|
+
"quote",
|
685
|
+
"syn",
|
686
|
+
]
|
687
|
+
|
511
688
|
[[package]]
|
512
689
|
name = "dyn-stack"
|
513
690
|
version = "0.10.0"
|
@@ -518,17 +695,26 @@ dependencies = [
|
|
518
695
|
"reborrow",
|
519
696
|
]
|
520
697
|
|
698
|
+
[[package]]
|
699
|
+
name = "dyn-stack"
|
700
|
+
version = "0.13.0"
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
+
checksum = "490bd48eb68fffcfed519b4edbfd82c69cbe741d175b84f0e0cbe8c57cbe0bdd"
|
703
|
+
dependencies = [
|
704
|
+
"bytemuck",
|
705
|
+
]
|
706
|
+
|
521
707
|
[[package]]
|
522
708
|
name = "either"
|
523
|
-
version = "1.
|
709
|
+
version = "1.15.0"
|
524
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
525
|
-
checksum = "
|
711
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
526
712
|
|
527
713
|
[[package]]
|
528
714
|
name = "encode_unicode"
|
529
|
-
version = "0.
|
715
|
+
version = "1.0.0"
|
530
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
531
|
-
checksum = "
|
717
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
532
718
|
|
533
719
|
[[package]]
|
534
720
|
name = "encoding_rs"
|
@@ -541,14 +727,14 @@ dependencies = [
|
|
541
727
|
|
542
728
|
[[package]]
|
543
729
|
name = "enum-as-inner"
|
544
|
-
version = "0.6.
|
730
|
+
version = "0.6.1"
|
545
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
-
checksum = "
|
732
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
547
733
|
dependencies = [
|
548
734
|
"heck",
|
549
735
|
"proc-macro2",
|
550
736
|
"quote",
|
551
|
-
"syn
|
737
|
+
"syn",
|
552
738
|
]
|
553
739
|
|
554
740
|
[[package]]
|
@@ -559,12 +745,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
559
745
|
|
560
746
|
[[package]]
|
561
747
|
name = "errno"
|
562
|
-
version = "0.3.
|
748
|
+
version = "0.3.13"
|
563
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
-
checksum = "
|
750
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
565
751
|
dependencies = [
|
566
752
|
"libc",
|
567
|
-
"windows-sys 0.
|
753
|
+
"windows-sys 0.60.2",
|
568
754
|
]
|
569
755
|
|
570
756
|
[[package]]
|
@@ -582,22 +768,45 @@ version = "0.13.0"
|
|
582
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
769
|
checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
|
584
770
|
dependencies = [
|
585
|
-
"bit-set",
|
771
|
+
"bit-set 0.5.3",
|
772
|
+
"regex-automata",
|
773
|
+
"regex-syntax",
|
774
|
+
]
|
775
|
+
|
776
|
+
[[package]]
|
777
|
+
name = "fancy-regex"
|
778
|
+
version = "0.14.0"
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
781
|
+
dependencies = [
|
782
|
+
"bit-set 0.8.0",
|
586
783
|
"regex-automata",
|
587
784
|
"regex-syntax",
|
588
785
|
]
|
589
786
|
|
590
787
|
[[package]]
|
591
788
|
name = "fastrand"
|
592
|
-
version = "2.0
|
789
|
+
version = "2.3.0"
|
593
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
-
checksum = "
|
791
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "filetime"
|
795
|
+
version = "0.2.25"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
798
|
+
dependencies = [
|
799
|
+
"cfg-if",
|
800
|
+
"libc",
|
801
|
+
"libredox",
|
802
|
+
"windows-sys 0.59.0",
|
803
|
+
]
|
595
804
|
|
596
805
|
[[package]]
|
597
806
|
name = "flate2"
|
598
|
-
version = "1.
|
807
|
+
version = "1.1.2"
|
599
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
809
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
601
810
|
dependencies = [
|
602
811
|
"crc32fast",
|
603
812
|
"miniz_oxide",
|
@@ -615,7 +824,28 @@ version = "0.3.2"
|
|
615
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
825
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
617
826
|
dependencies = [
|
618
|
-
"foreign-types-shared",
|
827
|
+
"foreign-types-shared 0.1.1",
|
828
|
+
]
|
829
|
+
|
830
|
+
[[package]]
|
831
|
+
name = "foreign-types"
|
832
|
+
version = "0.5.0"
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
835
|
+
dependencies = [
|
836
|
+
"foreign-types-macros",
|
837
|
+
"foreign-types-shared 0.3.1",
|
838
|
+
]
|
839
|
+
|
840
|
+
[[package]]
|
841
|
+
name = "foreign-types-macros"
|
842
|
+
version = "0.2.3"
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
845
|
+
dependencies = [
|
846
|
+
"proc-macro2",
|
847
|
+
"quote",
|
848
|
+
"syn",
|
619
849
|
]
|
620
850
|
|
621
851
|
[[package]]
|
@@ -624,6 +854,12 @@ version = "0.1.1"
|
|
624
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
855
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
626
856
|
|
857
|
+
[[package]]
|
858
|
+
name = "foreign-types-shared"
|
859
|
+
version = "0.3.1"
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
862
|
+
|
627
863
|
[[package]]
|
628
864
|
name = "form_urlencoded"
|
629
865
|
version = "1.2.1"
|
@@ -689,7 +925,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
689
925
|
dependencies = [
|
690
926
|
"proc-macro2",
|
691
927
|
"quote",
|
692
|
-
"syn
|
928
|
+
"syn",
|
693
929
|
]
|
694
930
|
|
695
931
|
[[package]]
|
@@ -728,17 +964,37 @@ version = "0.17.1"
|
|
728
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
729
965
|
checksum = "6ab24cc62135b40090e31a76a9b2766a501979f3070fa27f689c27ec04377d32"
|
730
966
|
dependencies = [
|
731
|
-
"dyn-stack",
|
732
|
-
"gemm-c32",
|
733
|
-
"gemm-c64",
|
734
|
-
"gemm-common",
|
735
|
-
"gemm-f16",
|
736
|
-
"gemm-f32",
|
737
|
-
"gemm-f64",
|
967
|
+
"dyn-stack 0.10.0",
|
968
|
+
"gemm-c32 0.17.1",
|
969
|
+
"gemm-c64 0.17.1",
|
970
|
+
"gemm-common 0.17.1",
|
971
|
+
"gemm-f16 0.17.1",
|
972
|
+
"gemm-f32 0.17.1",
|
973
|
+
"gemm-f64 0.17.1",
|
974
|
+
"num-complex",
|
975
|
+
"num-traits",
|
976
|
+
"paste",
|
977
|
+
"raw-cpuid 10.7.0",
|
978
|
+
"seq-macro",
|
979
|
+
]
|
980
|
+
|
981
|
+
[[package]]
|
982
|
+
name = "gemm"
|
983
|
+
version = "0.18.2"
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
+
checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
|
986
|
+
dependencies = [
|
987
|
+
"dyn-stack 0.13.0",
|
988
|
+
"gemm-c32 0.18.2",
|
989
|
+
"gemm-c64 0.18.2",
|
990
|
+
"gemm-common 0.18.2",
|
991
|
+
"gemm-f16 0.18.2",
|
992
|
+
"gemm-f32 0.18.2",
|
993
|
+
"gemm-f64 0.18.2",
|
738
994
|
"num-complex",
|
739
995
|
"num-traits",
|
740
996
|
"paste",
|
741
|
-
"raw-cpuid",
|
997
|
+
"raw-cpuid 11.5.0",
|
742
998
|
"seq-macro",
|
743
999
|
]
|
744
1000
|
|
@@ -748,12 +1004,27 @@ version = "0.17.1"
|
|
748
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
1005
|
checksum = "b9c030d0b983d1e34a546b86e08f600c11696fde16199f971cd46c12e67512c0"
|
750
1006
|
dependencies = [
|
751
|
-
"dyn-stack",
|
752
|
-
"gemm-common",
|
1007
|
+
"dyn-stack 0.10.0",
|
1008
|
+
"gemm-common 0.17.1",
|
1009
|
+
"num-complex",
|
1010
|
+
"num-traits",
|
1011
|
+
"paste",
|
1012
|
+
"raw-cpuid 10.7.0",
|
1013
|
+
"seq-macro",
|
1014
|
+
]
|
1015
|
+
|
1016
|
+
[[package]]
|
1017
|
+
name = "gemm-c32"
|
1018
|
+
version = "0.18.2"
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
+
checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
|
1021
|
+
dependencies = [
|
1022
|
+
"dyn-stack 0.13.0",
|
1023
|
+
"gemm-common 0.18.2",
|
753
1024
|
"num-complex",
|
754
1025
|
"num-traits",
|
755
1026
|
"paste",
|
756
|
-
"raw-cpuid",
|
1027
|
+
"raw-cpuid 11.5.0",
|
757
1028
|
"seq-macro",
|
758
1029
|
]
|
759
1030
|
|
@@ -763,12 +1034,27 @@ version = "0.17.1"
|
|
763
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
764
1035
|
checksum = "fbb5f2e79fefb9693d18e1066a557b4546cd334b226beadc68b11a8f9431852a"
|
765
1036
|
dependencies = [
|
766
|
-
"dyn-stack",
|
767
|
-
"gemm-common",
|
1037
|
+
"dyn-stack 0.10.0",
|
1038
|
+
"gemm-common 0.17.1",
|
1039
|
+
"num-complex",
|
1040
|
+
"num-traits",
|
1041
|
+
"paste",
|
1042
|
+
"raw-cpuid 10.7.0",
|
1043
|
+
"seq-macro",
|
1044
|
+
]
|
1045
|
+
|
1046
|
+
[[package]]
|
1047
|
+
name = "gemm-c64"
|
1048
|
+
version = "0.18.2"
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1050
|
+
checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
|
1051
|
+
dependencies = [
|
1052
|
+
"dyn-stack 0.13.0",
|
1053
|
+
"gemm-common 0.18.2",
|
768
1054
|
"num-complex",
|
769
1055
|
"num-traits",
|
770
1056
|
"paste",
|
771
|
-
"raw-cpuid",
|
1057
|
+
"raw-cpuid 11.5.0",
|
772
1058
|
"seq-macro",
|
773
1059
|
]
|
774
1060
|
|
@@ -779,17 +1065,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
1065
|
checksum = "a2e7ea062c987abcd8db95db917b4ffb4ecdfd0668471d8dc54734fdff2354e8"
|
780
1066
|
dependencies = [
|
781
1067
|
"bytemuck",
|
782
|
-
"dyn-stack",
|
1068
|
+
"dyn-stack 0.10.0",
|
783
1069
|
"half",
|
784
1070
|
"num-complex",
|
785
1071
|
"num-traits",
|
786
1072
|
"once_cell",
|
787
1073
|
"paste",
|
788
|
-
"pulp",
|
789
|
-
"raw-cpuid",
|
1074
|
+
"pulp 0.18.22",
|
1075
|
+
"raw-cpuid 10.7.0",
|
790
1076
|
"rayon",
|
791
1077
|
"seq-macro",
|
792
|
-
"sysctl",
|
1078
|
+
"sysctl 0.5.5",
|
1079
|
+
]
|
1080
|
+
|
1081
|
+
[[package]]
|
1082
|
+
name = "gemm-common"
|
1083
|
+
version = "0.18.2"
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
+
checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
|
1086
|
+
dependencies = [
|
1087
|
+
"bytemuck",
|
1088
|
+
"dyn-stack 0.13.0",
|
1089
|
+
"half",
|
1090
|
+
"libm",
|
1091
|
+
"num-complex",
|
1092
|
+
"num-traits",
|
1093
|
+
"once_cell",
|
1094
|
+
"paste",
|
1095
|
+
"pulp 0.21.5",
|
1096
|
+
"raw-cpuid 11.5.0",
|
1097
|
+
"rayon",
|
1098
|
+
"seq-macro",
|
1099
|
+
"sysctl 0.6.0",
|
793
1100
|
]
|
794
1101
|
|
795
1102
|
[[package]]
|
@@ -798,14 +1105,32 @@ version = "0.17.1"
|
|
798
1105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
799
1106
|
checksum = "7ca4c06b9b11952071d317604acb332e924e817bd891bec8dfb494168c7cedd4"
|
800
1107
|
dependencies = [
|
801
|
-
"dyn-stack",
|
802
|
-
"gemm-common",
|
803
|
-
"gemm-f32",
|
1108
|
+
"dyn-stack 0.10.0",
|
1109
|
+
"gemm-common 0.17.1",
|
1110
|
+
"gemm-f32 0.17.1",
|
804
1111
|
"half",
|
805
1112
|
"num-complex",
|
806
1113
|
"num-traits",
|
807
1114
|
"paste",
|
808
|
-
"raw-cpuid",
|
1115
|
+
"raw-cpuid 10.7.0",
|
1116
|
+
"rayon",
|
1117
|
+
"seq-macro",
|
1118
|
+
]
|
1119
|
+
|
1120
|
+
[[package]]
|
1121
|
+
name = "gemm-f16"
|
1122
|
+
version = "0.18.2"
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1124
|
+
checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
|
1125
|
+
dependencies = [
|
1126
|
+
"dyn-stack 0.13.0",
|
1127
|
+
"gemm-common 0.18.2",
|
1128
|
+
"gemm-f32 0.18.2",
|
1129
|
+
"half",
|
1130
|
+
"num-complex",
|
1131
|
+
"num-traits",
|
1132
|
+
"paste",
|
1133
|
+
"raw-cpuid 11.5.0",
|
809
1134
|
"rayon",
|
810
1135
|
"seq-macro",
|
811
1136
|
]
|
@@ -816,12 +1141,27 @@ version = "0.17.1"
|
|
816
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
1142
|
checksum = "e9a69f51aaefbd9cf12d18faf273d3e982d9d711f60775645ed5c8047b4ae113"
|
818
1143
|
dependencies = [
|
819
|
-
"dyn-stack",
|
820
|
-
"gemm-common",
|
1144
|
+
"dyn-stack 0.10.0",
|
1145
|
+
"gemm-common 0.17.1",
|
1146
|
+
"num-complex",
|
1147
|
+
"num-traits",
|
1148
|
+
"paste",
|
1149
|
+
"raw-cpuid 10.7.0",
|
1150
|
+
"seq-macro",
|
1151
|
+
]
|
1152
|
+
|
1153
|
+
[[package]]
|
1154
|
+
name = "gemm-f32"
|
1155
|
+
version = "0.18.2"
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
+
checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
|
1158
|
+
dependencies = [
|
1159
|
+
"dyn-stack 0.13.0",
|
1160
|
+
"gemm-common 0.18.2",
|
821
1161
|
"num-complex",
|
822
1162
|
"num-traits",
|
823
1163
|
"paste",
|
824
|
-
"raw-cpuid",
|
1164
|
+
"raw-cpuid 11.5.0",
|
825
1165
|
"seq-macro",
|
826
1166
|
]
|
827
1167
|
|
@@ -831,24 +1171,49 @@ version = "0.17.1"
|
|
831
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
832
1172
|
checksum = "aa397a48544fadf0b81ec8741e5c0fba0043008113f71f2034def1935645d2b0"
|
833
1173
|
dependencies = [
|
834
|
-
"dyn-stack",
|
835
|
-
"gemm-common",
|
1174
|
+
"dyn-stack 0.10.0",
|
1175
|
+
"gemm-common 0.17.1",
|
1176
|
+
"num-complex",
|
1177
|
+
"num-traits",
|
1178
|
+
"paste",
|
1179
|
+
"raw-cpuid 10.7.0",
|
1180
|
+
"seq-macro",
|
1181
|
+
]
|
1182
|
+
|
1183
|
+
[[package]]
|
1184
|
+
name = "gemm-f64"
|
1185
|
+
version = "0.18.2"
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
+
checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
|
1188
|
+
dependencies = [
|
1189
|
+
"dyn-stack 0.13.0",
|
1190
|
+
"gemm-common 0.18.2",
|
836
1191
|
"num-complex",
|
837
1192
|
"num-traits",
|
838
1193
|
"paste",
|
839
|
-
"raw-cpuid",
|
1194
|
+
"raw-cpuid 11.5.0",
|
840
1195
|
"seq-macro",
|
841
1196
|
]
|
842
1197
|
|
1198
|
+
[[package]]
|
1199
|
+
name = "generic-array"
|
1200
|
+
version = "0.14.7"
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1203
|
+
dependencies = [
|
1204
|
+
"typenum",
|
1205
|
+
"version_check",
|
1206
|
+
]
|
1207
|
+
|
843
1208
|
[[package]]
|
844
1209
|
name = "getrandom"
|
845
|
-
version = "0.2.
|
1210
|
+
version = "0.2.16"
|
846
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "
|
1212
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
848
1213
|
dependencies = [
|
849
1214
|
"cfg-if",
|
850
1215
|
"libc",
|
851
|
-
"wasi 0.11.
|
1216
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
852
1217
|
]
|
853
1218
|
|
854
1219
|
[[package]]
|
@@ -863,17 +1228,29 @@ dependencies = [
|
|
863
1228
|
"wasi 0.14.2+wasi-0.2.4",
|
864
1229
|
]
|
865
1230
|
|
1231
|
+
[[package]]
|
1232
|
+
name = "getset"
|
1233
|
+
version = "0.1.6"
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1235
|
+
checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
|
1236
|
+
dependencies = [
|
1237
|
+
"proc-macro-error2",
|
1238
|
+
"proc-macro2",
|
1239
|
+
"quote",
|
1240
|
+
"syn",
|
1241
|
+
]
|
1242
|
+
|
866
1243
|
[[package]]
|
867
1244
|
name = "gimli"
|
868
|
-
version = "0.
|
1245
|
+
version = "0.31.1"
|
869
1246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
-
checksum = "
|
1247
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
871
1248
|
|
872
1249
|
[[package]]
|
873
1250
|
name = "glob"
|
874
|
-
version = "0.3.
|
1251
|
+
version = "0.3.2"
|
875
1252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
|
-
checksum = "
|
1253
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
877
1254
|
|
878
1255
|
[[package]]
|
879
1256
|
name = "h2"
|
@@ -896,15 +1273,15 @@ dependencies = [
|
|
896
1273
|
|
897
1274
|
[[package]]
|
898
1275
|
name = "half"
|
899
|
-
version = "2.
|
1276
|
+
version = "2.6.0"
|
900
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
901
|
-
checksum = "
|
1278
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
902
1279
|
dependencies = [
|
903
1280
|
"bytemuck",
|
904
1281
|
"cfg-if",
|
905
1282
|
"crunchy",
|
906
1283
|
"num-traits",
|
907
|
-
"rand 0.
|
1284
|
+
"rand 0.9.1",
|
908
1285
|
"rand_distr",
|
909
1286
|
]
|
910
1287
|
|
@@ -916,15 +1293,15 @@ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
916
1293
|
|
917
1294
|
[[package]]
|
918
1295
|
name = "heck"
|
919
|
-
version = "0.
|
1296
|
+
version = "0.5.0"
|
920
1297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
-
checksum = "
|
1298
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
922
1299
|
|
923
1300
|
[[package]]
|
924
1301
|
name = "hermit-abi"
|
925
|
-
version = "0.
|
1302
|
+
version = "0.5.2"
|
926
1303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
-
checksum = "
|
1304
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
928
1305
|
|
929
1306
|
[[package]]
|
930
1307
|
name = "hf-hub"
|
@@ -1019,7 +1396,7 @@ dependencies = [
|
|
1019
1396
|
"http",
|
1020
1397
|
"hyper",
|
1021
1398
|
"hyper-util",
|
1022
|
-
"rustls
|
1399
|
+
"rustls",
|
1023
1400
|
"rustls-pki-types",
|
1024
1401
|
"tokio",
|
1025
1402
|
"tokio-rustls",
|
@@ -1044,9 +1421,9 @@ dependencies = [
|
|
1044
1421
|
|
1045
1422
|
[[package]]
|
1046
1423
|
name = "hyper-util"
|
1047
|
-
version = "0.1.
|
1424
|
+
version = "0.1.14"
|
1048
1425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
-
checksum = "
|
1426
|
+
checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
|
1050
1427
|
dependencies = [
|
1051
1428
|
"base64 0.22.1",
|
1052
1429
|
"bytes",
|
@@ -1068,6 +1445,116 @@ dependencies = [
|
|
1068
1445
|
"windows-registry",
|
1069
1446
|
]
|
1070
1447
|
|
1448
|
+
[[package]]
|
1449
|
+
name = "iana-time-zone"
|
1450
|
+
version = "0.1.63"
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1452
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
1453
|
+
dependencies = [
|
1454
|
+
"android_system_properties",
|
1455
|
+
"core-foundation-sys",
|
1456
|
+
"iana-time-zone-haiku",
|
1457
|
+
"js-sys",
|
1458
|
+
"log",
|
1459
|
+
"wasm-bindgen",
|
1460
|
+
"windows-core",
|
1461
|
+
]
|
1462
|
+
|
1463
|
+
[[package]]
|
1464
|
+
name = "iana-time-zone-haiku"
|
1465
|
+
version = "0.1.2"
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1467
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
1468
|
+
dependencies = [
|
1469
|
+
"cc",
|
1470
|
+
]
|
1471
|
+
|
1472
|
+
[[package]]
|
1473
|
+
name = "icu_collections"
|
1474
|
+
version = "2.0.0"
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1476
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
1477
|
+
dependencies = [
|
1478
|
+
"displaydoc",
|
1479
|
+
"potential_utf",
|
1480
|
+
"yoke 0.8.0",
|
1481
|
+
"zerofrom",
|
1482
|
+
"zerovec",
|
1483
|
+
]
|
1484
|
+
|
1485
|
+
[[package]]
|
1486
|
+
name = "icu_locale_core"
|
1487
|
+
version = "2.0.0"
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1489
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
1490
|
+
dependencies = [
|
1491
|
+
"displaydoc",
|
1492
|
+
"litemap",
|
1493
|
+
"tinystr",
|
1494
|
+
"writeable",
|
1495
|
+
"zerovec",
|
1496
|
+
]
|
1497
|
+
|
1498
|
+
[[package]]
|
1499
|
+
name = "icu_normalizer"
|
1500
|
+
version = "2.0.0"
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1502
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
1503
|
+
dependencies = [
|
1504
|
+
"displaydoc",
|
1505
|
+
"icu_collections",
|
1506
|
+
"icu_normalizer_data",
|
1507
|
+
"icu_properties",
|
1508
|
+
"icu_provider",
|
1509
|
+
"smallvec",
|
1510
|
+
"zerovec",
|
1511
|
+
]
|
1512
|
+
|
1513
|
+
[[package]]
|
1514
|
+
name = "icu_normalizer_data"
|
1515
|
+
version = "2.0.0"
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1517
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
1518
|
+
|
1519
|
+
[[package]]
|
1520
|
+
name = "icu_properties"
|
1521
|
+
version = "2.0.1"
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1523
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
1524
|
+
dependencies = [
|
1525
|
+
"displaydoc",
|
1526
|
+
"icu_collections",
|
1527
|
+
"icu_locale_core",
|
1528
|
+
"icu_properties_data",
|
1529
|
+
"icu_provider",
|
1530
|
+
"potential_utf",
|
1531
|
+
"zerotrie",
|
1532
|
+
"zerovec",
|
1533
|
+
]
|
1534
|
+
|
1535
|
+
[[package]]
|
1536
|
+
name = "icu_properties_data"
|
1537
|
+
version = "2.0.1"
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
1540
|
+
|
1541
|
+
[[package]]
|
1542
|
+
name = "icu_provider"
|
1543
|
+
version = "2.0.0"
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1545
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
1546
|
+
dependencies = [
|
1547
|
+
"displaydoc",
|
1548
|
+
"icu_locale_core",
|
1549
|
+
"stable_deref_trait",
|
1550
|
+
"tinystr",
|
1551
|
+
"writeable",
|
1552
|
+
"yoke 0.8.0",
|
1553
|
+
"zerofrom",
|
1554
|
+
"zerotrie",
|
1555
|
+
"zerovec",
|
1556
|
+
]
|
1557
|
+
|
1071
1558
|
[[package]]
|
1072
1559
|
name = "ident_case"
|
1073
1560
|
version = "1.0.1"
|
@@ -1076,12 +1563,23 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1076
1563
|
|
1077
1564
|
[[package]]
|
1078
1565
|
name = "idna"
|
1079
|
-
version = "0.
|
1566
|
+
version = "1.0.3"
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1568
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
1569
|
+
dependencies = [
|
1570
|
+
"idna_adapter",
|
1571
|
+
"smallvec",
|
1572
|
+
"utf8_iter",
|
1573
|
+
]
|
1574
|
+
|
1575
|
+
[[package]]
|
1576
|
+
name = "idna_adapter"
|
1577
|
+
version = "1.2.1"
|
1080
1578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
|
-
checksum = "
|
1579
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
1082
1580
|
dependencies = [
|
1083
|
-
"
|
1084
|
-
"
|
1581
|
+
"icu_normalizer",
|
1582
|
+
"icu_properties",
|
1085
1583
|
]
|
1086
1584
|
|
1087
1585
|
[[package]]
|
@@ -1096,24 +1594,37 @@ dependencies = [
|
|
1096
1594
|
|
1097
1595
|
[[package]]
|
1098
1596
|
name = "indicatif"
|
1099
|
-
version = "0.17.
|
1597
|
+
version = "0.17.11"
|
1100
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
-
checksum = "
|
1599
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
1102
1600
|
dependencies = [
|
1103
1601
|
"console",
|
1104
|
-
"instant",
|
1105
1602
|
"number_prefix",
|
1106
1603
|
"portable-atomic",
|
1107
1604
|
"unicode-width",
|
1605
|
+
"web-time",
|
1108
1606
|
]
|
1109
1607
|
|
1110
1608
|
[[package]]
|
1111
|
-
name = "
|
1112
|
-
version = "0.1
|
1609
|
+
name = "intel-mkl-src"
|
1610
|
+
version = "0.8.1"
|
1113
1611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
-
checksum = "
|
1612
|
+
checksum = "2ee70586cd5b3e772a8739a1bd43eaa90d4f4bf0fb2a4edc202e979937ee7f5e"
|
1115
1613
|
dependencies = [
|
1116
|
-
"
|
1614
|
+
"anyhow",
|
1615
|
+
"intel-mkl-tool",
|
1616
|
+
"ocipkg",
|
1617
|
+
]
|
1618
|
+
|
1619
|
+
[[package]]
|
1620
|
+
name = "intel-mkl-tool"
|
1621
|
+
version = "0.8.1"
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1623
|
+
checksum = "887a16b4537d82227af54d3372971cfa5e0cde53322e60f57584056c16ada1b4"
|
1624
|
+
dependencies = [
|
1625
|
+
"anyhow",
|
1626
|
+
"log",
|
1627
|
+
"walkdir",
|
1117
1628
|
]
|
1118
1629
|
|
1119
1630
|
[[package]]
|
@@ -1122,7 +1633,7 @@ version = "0.7.8"
|
|
1122
1633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1123
1634
|
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
|
1124
1635
|
dependencies = [
|
1125
|
-
"bitflags 2.
|
1636
|
+
"bitflags 2.9.1",
|
1126
1637
|
"cfg-if",
|
1127
1638
|
"libc",
|
1128
1639
|
]
|
@@ -1145,27 +1656,27 @@ dependencies = [
|
|
1145
1656
|
|
1146
1657
|
[[package]]
|
1147
1658
|
name = "itertools"
|
1148
|
-
version = "0.
|
1659
|
+
version = "0.12.1"
|
1149
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1150
|
-
checksum = "
|
1661
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
1151
1662
|
dependencies = [
|
1152
1663
|
"either",
|
1153
1664
|
]
|
1154
1665
|
|
1155
1666
|
[[package]]
|
1156
1667
|
name = "itertools"
|
1157
|
-
version = "0.
|
1668
|
+
version = "0.14.0"
|
1158
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1159
|
-
checksum = "
|
1670
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
1160
1671
|
dependencies = [
|
1161
1672
|
"either",
|
1162
1673
|
]
|
1163
1674
|
|
1164
1675
|
[[package]]
|
1165
1676
|
name = "itoa"
|
1166
|
-
version = "1.0.
|
1677
|
+
version = "1.0.15"
|
1167
1678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
-
checksum = "
|
1679
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1169
1680
|
|
1170
1681
|
[[package]]
|
1171
1682
|
name = "js-sys"
|
@@ -1179,9 +1690,9 @@ dependencies = [
|
|
1179
1690
|
|
1180
1691
|
[[package]]
|
1181
1692
|
name = "lazy_static"
|
1182
|
-
version = "1.
|
1693
|
+
version = "1.5.0"
|
1183
1694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
-
checksum = "
|
1695
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
1185
1696
|
|
1186
1697
|
[[package]]
|
1187
1698
|
name = "lazycell"
|
@@ -1197,19 +1708,19 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
1197
1708
|
|
1198
1709
|
[[package]]
|
1199
1710
|
name = "libloading"
|
1200
|
-
version = "0.8.
|
1711
|
+
version = "0.8.8"
|
1201
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
-
checksum = "
|
1713
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
1203
1714
|
dependencies = [
|
1204
1715
|
"cfg-if",
|
1205
|
-
"windows-targets 0.
|
1716
|
+
"windows-targets 0.53.2",
|
1206
1717
|
]
|
1207
1718
|
|
1208
1719
|
[[package]]
|
1209
1720
|
name = "libm"
|
1210
|
-
version = "0.2.
|
1721
|
+
version = "0.2.15"
|
1211
1722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1212
|
-
checksum = "
|
1723
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
1213
1724
|
|
1214
1725
|
[[package]]
|
1215
1726
|
name = "libredox"
|
@@ -1217,27 +1728,34 @@ version = "0.1.4"
|
|
1217
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
1729
|
checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638"
|
1219
1730
|
dependencies = [
|
1220
|
-
"bitflags 2.
|
1731
|
+
"bitflags 2.9.1",
|
1221
1732
|
"libc",
|
1733
|
+
"redox_syscall",
|
1222
1734
|
]
|
1223
1735
|
|
1224
1736
|
[[package]]
|
1225
1737
|
name = "linux-raw-sys"
|
1226
|
-
version = "0.4
|
1738
|
+
version = "0.9.4"
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1740
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
1741
|
+
|
1742
|
+
[[package]]
|
1743
|
+
name = "litemap"
|
1744
|
+
version = "0.8.0"
|
1227
1745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1228
|
-
checksum = "
|
1746
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
1229
1747
|
|
1230
1748
|
[[package]]
|
1231
1749
|
name = "log"
|
1232
|
-
version = "0.4.
|
1750
|
+
version = "0.4.27"
|
1233
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1234
|
-
checksum = "
|
1752
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
1235
1753
|
|
1236
1754
|
[[package]]
|
1237
1755
|
name = "macro_rules_attribute"
|
1238
|
-
version = "0.2.
|
1756
|
+
version = "0.2.2"
|
1239
1757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
-
checksum = "
|
1758
|
+
checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
|
1241
1759
|
dependencies = [
|
1242
1760
|
"macro_rules_attribute-proc_macro",
|
1243
1761
|
"paste",
|
@@ -1245,15 +1763,15 @@ dependencies = [
|
|
1245
1763
|
|
1246
1764
|
[[package]]
|
1247
1765
|
name = "macro_rules_attribute-proc_macro"
|
1248
|
-
version = "0.2.
|
1766
|
+
version = "0.2.2"
|
1249
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
-
checksum = "
|
1768
|
+
checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
|
1251
1769
|
|
1252
1770
|
[[package]]
|
1253
1771
|
name = "magnus"
|
1254
|
-
version = "0.
|
1772
|
+
version = "0.7.1"
|
1255
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1256
|
-
checksum = "
|
1774
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
1257
1775
|
dependencies = [
|
1258
1776
|
"magnus-macros",
|
1259
1777
|
"rb-sys",
|
@@ -1267,27 +1785,66 @@ version = "0.6.0"
|
|
1267
1785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1268
1786
|
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1269
1787
|
dependencies = [
|
1270
|
-
"proc-macro2",
|
1271
|
-
"quote",
|
1272
|
-
"syn
|
1788
|
+
"proc-macro2",
|
1789
|
+
"quote",
|
1790
|
+
"syn",
|
1791
|
+
]
|
1792
|
+
|
1793
|
+
[[package]]
|
1794
|
+
name = "malloc_buf"
|
1795
|
+
version = "0.0.6"
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
1798
|
+
dependencies = [
|
1799
|
+
"libc",
|
1273
1800
|
]
|
1274
1801
|
|
1275
1802
|
[[package]]
|
1276
1803
|
name = "memchr"
|
1277
|
-
version = "2.7.
|
1804
|
+
version = "2.7.5"
|
1278
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
-
checksum = "
|
1806
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
1280
1807
|
|
1281
1808
|
[[package]]
|
1282
1809
|
name = "memmap2"
|
1283
|
-
version = "0.9.
|
1810
|
+
version = "0.9.5"
|
1284
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1285
|
-
checksum = "
|
1812
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
1286
1813
|
dependencies = [
|
1287
1814
|
"libc",
|
1288
1815
|
"stable_deref_trait",
|
1289
1816
|
]
|
1290
1817
|
|
1818
|
+
[[package]]
|
1819
|
+
name = "metal"
|
1820
|
+
version = "0.27.0"
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1822
|
+
checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25"
|
1823
|
+
dependencies = [
|
1824
|
+
"bitflags 2.9.1",
|
1825
|
+
"block",
|
1826
|
+
"core-graphics-types",
|
1827
|
+
"foreign-types 0.5.0",
|
1828
|
+
"log",
|
1829
|
+
"objc",
|
1830
|
+
"paste",
|
1831
|
+
]
|
1832
|
+
|
1833
|
+
[[package]]
|
1834
|
+
name = "metal"
|
1835
|
+
version = "0.29.0"
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1837
|
+
checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21"
|
1838
|
+
dependencies = [
|
1839
|
+
"bitflags 2.9.1",
|
1840
|
+
"block",
|
1841
|
+
"core-graphics-types",
|
1842
|
+
"foreign-types 0.5.0",
|
1843
|
+
"log",
|
1844
|
+
"objc",
|
1845
|
+
"paste",
|
1846
|
+
]
|
1847
|
+
|
1291
1848
|
[[package]]
|
1292
1849
|
name = "mime"
|
1293
1850
|
version = "0.3.17"
|
@@ -1302,29 +1859,29 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1302
1859
|
|
1303
1860
|
[[package]]
|
1304
1861
|
name = "miniz_oxide"
|
1305
|
-
version = "0.
|
1862
|
+
version = "0.8.9"
|
1306
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1307
|
-
checksum = "
|
1864
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
1308
1865
|
dependencies = [
|
1309
|
-
"
|
1866
|
+
"adler2",
|
1310
1867
|
]
|
1311
1868
|
|
1312
1869
|
[[package]]
|
1313
1870
|
name = "mio"
|
1314
|
-
version = "1.0.
|
1871
|
+
version = "1.0.4"
|
1315
1872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1316
|
-
checksum = "
|
1873
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
1317
1874
|
dependencies = [
|
1318
1875
|
"libc",
|
1319
|
-
"wasi 0.11.
|
1320
|
-
"windows-sys 0.
|
1876
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
1877
|
+
"windows-sys 0.59.0",
|
1321
1878
|
]
|
1322
1879
|
|
1323
1880
|
[[package]]
|
1324
1881
|
name = "monostate"
|
1325
|
-
version = "0.1.
|
1882
|
+
version = "0.1.14"
|
1326
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1327
|
-
checksum = "
|
1884
|
+
checksum = "aafe1be9d0c75642e3e50fedc7ecadf1ef1cbce6eb66462153fc44245343fbee"
|
1328
1885
|
dependencies = [
|
1329
1886
|
"monostate-impl",
|
1330
1887
|
"serde",
|
@@ -1332,13 +1889,13 @@ dependencies = [
|
|
1332
1889
|
|
1333
1890
|
[[package]]
|
1334
1891
|
name = "monostate-impl"
|
1335
|
-
version = "0.1.
|
1892
|
+
version = "0.1.14"
|
1336
1893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1337
|
-
checksum = "
|
1894
|
+
checksum = "c402a4092d5e204f32c9e155431046831fa712637043c58cb73bc6bc6c9663b5"
|
1338
1895
|
dependencies = [
|
1339
1896
|
"proc-macro2",
|
1340
1897
|
"quote",
|
1341
|
-
"syn
|
1898
|
+
"syn",
|
1342
1899
|
]
|
1343
1900
|
|
1344
1901
|
[[package]]
|
@@ -1368,21 +1925,76 @@ dependencies = [
|
|
1368
1925
|
"minimal-lexical",
|
1369
1926
|
]
|
1370
1927
|
|
1928
|
+
[[package]]
|
1929
|
+
name = "num"
|
1930
|
+
version = "0.4.3"
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1932
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
1933
|
+
dependencies = [
|
1934
|
+
"num-bigint",
|
1935
|
+
"num-complex",
|
1936
|
+
"num-integer",
|
1937
|
+
"num-iter",
|
1938
|
+
"num-rational",
|
1939
|
+
"num-traits",
|
1940
|
+
]
|
1941
|
+
|
1942
|
+
[[package]]
|
1943
|
+
name = "num-bigint"
|
1944
|
+
version = "0.4.6"
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1946
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
1947
|
+
dependencies = [
|
1948
|
+
"num-integer",
|
1949
|
+
"num-traits",
|
1950
|
+
]
|
1951
|
+
|
1371
1952
|
[[package]]
|
1372
1953
|
name = "num-complex"
|
1373
|
-
version = "0.4.
|
1954
|
+
version = "0.4.6"
|
1374
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1375
|
-
checksum = "
|
1956
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
1376
1957
|
dependencies = [
|
1377
1958
|
"bytemuck",
|
1378
1959
|
"num-traits",
|
1379
1960
|
]
|
1380
1961
|
|
1962
|
+
[[package]]
|
1963
|
+
name = "num-integer"
|
1964
|
+
version = "0.1.46"
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1966
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
1967
|
+
dependencies = [
|
1968
|
+
"num-traits",
|
1969
|
+
]
|
1970
|
+
|
1971
|
+
[[package]]
|
1972
|
+
name = "num-iter"
|
1973
|
+
version = "0.1.45"
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
1976
|
+
dependencies = [
|
1977
|
+
"autocfg",
|
1978
|
+
"num-integer",
|
1979
|
+
"num-traits",
|
1980
|
+
]
|
1981
|
+
|
1982
|
+
[[package]]
|
1983
|
+
name = "num-rational"
|
1984
|
+
version = "0.4.2"
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1986
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
1987
|
+
dependencies = [
|
1988
|
+
"num-bigint",
|
1989
|
+
"num-integer",
|
1990
|
+
"num-traits",
|
1991
|
+
]
|
1992
|
+
|
1381
1993
|
[[package]]
|
1382
1994
|
name = "num-traits"
|
1383
|
-
version = "0.2.
|
1995
|
+
version = "0.2.19"
|
1384
1996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1997
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
1386
1998
|
dependencies = [
|
1387
1999
|
"autocfg",
|
1388
2000
|
"libm",
|
@@ -1390,20 +2002,61 @@ dependencies = [
|
|
1390
2002
|
|
1391
2003
|
[[package]]
|
1392
2004
|
name = "num_cpus"
|
1393
|
-
version = "1.
|
2005
|
+
version = "1.17.0"
|
1394
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1395
|
-
checksum = "
|
2007
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
1396
2008
|
dependencies = [
|
1397
2009
|
"hermit-abi",
|
1398
2010
|
"libc",
|
1399
2011
|
]
|
1400
2012
|
|
2013
|
+
[[package]]
|
2014
|
+
name = "num_enum"
|
2015
|
+
version = "0.7.4"
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2017
|
+
checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
|
2018
|
+
dependencies = [
|
2019
|
+
"num_enum_derive",
|
2020
|
+
"rustversion",
|
2021
|
+
]
|
2022
|
+
|
2023
|
+
[[package]]
|
2024
|
+
name = "num_enum_derive"
|
2025
|
+
version = "0.7.4"
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2027
|
+
checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
|
2028
|
+
dependencies = [
|
2029
|
+
"proc-macro-crate",
|
2030
|
+
"proc-macro2",
|
2031
|
+
"quote",
|
2032
|
+
"syn",
|
2033
|
+
]
|
2034
|
+
|
1401
2035
|
[[package]]
|
1402
2036
|
name = "number_prefix"
|
1403
2037
|
version = "0.4.0"
|
1404
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
2039
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
1406
2040
|
|
2041
|
+
[[package]]
|
2042
|
+
name = "objc"
|
2043
|
+
version = "0.2.7"
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
2046
|
+
dependencies = [
|
2047
|
+
"malloc_buf",
|
2048
|
+
"objc_exception",
|
2049
|
+
]
|
2050
|
+
|
2051
|
+
[[package]]
|
2052
|
+
name = "objc_exception"
|
2053
|
+
version = "0.1.2"
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2055
|
+
checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
|
2056
|
+
dependencies = [
|
2057
|
+
"cc",
|
2058
|
+
]
|
2059
|
+
|
1407
2060
|
[[package]]
|
1408
2061
|
name = "object"
|
1409
2062
|
version = "0.36.7"
|
@@ -1413,19 +2066,61 @@ dependencies = [
|
|
1413
2066
|
"memchr",
|
1414
2067
|
]
|
1415
2068
|
|
2069
|
+
[[package]]
|
2070
|
+
name = "oci-spec"
|
2071
|
+
version = "0.6.7"
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2073
|
+
checksum = "bdf88ddc01cc6bccbe1044adb6a29057333f523deadcb4953c011a73158cfa5e"
|
2074
|
+
dependencies = [
|
2075
|
+
"derive_builder",
|
2076
|
+
"getset",
|
2077
|
+
"serde",
|
2078
|
+
"serde_json",
|
2079
|
+
"strum",
|
2080
|
+
"strum_macros",
|
2081
|
+
"thiserror 1.0.69",
|
2082
|
+
]
|
2083
|
+
|
2084
|
+
[[package]]
|
2085
|
+
name = "ocipkg"
|
2086
|
+
version = "0.2.9"
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2088
|
+
checksum = "9bb3293021f06540803301af45e7ab81693d50e89a7398a3420bdab139e7ba5e"
|
2089
|
+
dependencies = [
|
2090
|
+
"base16ct",
|
2091
|
+
"base64 0.22.1",
|
2092
|
+
"chrono",
|
2093
|
+
"directories",
|
2094
|
+
"flate2",
|
2095
|
+
"lazy_static",
|
2096
|
+
"log",
|
2097
|
+
"oci-spec",
|
2098
|
+
"regex",
|
2099
|
+
"serde",
|
2100
|
+
"serde_json",
|
2101
|
+
"sha2",
|
2102
|
+
"tar",
|
2103
|
+
"thiserror 1.0.69",
|
2104
|
+
"toml",
|
2105
|
+
"ureq",
|
2106
|
+
"url",
|
2107
|
+
"uuid",
|
2108
|
+
"walkdir",
|
2109
|
+
]
|
2110
|
+
|
1416
2111
|
[[package]]
|
1417
2112
|
name = "once_cell"
|
1418
|
-
version = "1.
|
2113
|
+
version = "1.21.3"
|
1419
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1420
|
-
checksum = "
|
2115
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1421
2116
|
|
1422
2117
|
[[package]]
|
1423
2118
|
name = "onig"
|
1424
|
-
version = "6.
|
2119
|
+
version = "6.5.1"
|
1425
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
-
checksum = "
|
2121
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
1427
2122
|
dependencies = [
|
1428
|
-
"bitflags
|
2123
|
+
"bitflags 2.9.1",
|
1429
2124
|
"libc",
|
1430
2125
|
"once_cell",
|
1431
2126
|
"onig_sys",
|
@@ -1433,9 +2128,9 @@ dependencies = [
|
|
1433
2128
|
|
1434
2129
|
[[package]]
|
1435
2130
|
name = "onig_sys"
|
1436
|
-
version = "69.
|
2131
|
+
version = "69.9.1"
|
1437
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1438
|
-
checksum = "
|
2133
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
1439
2134
|
dependencies = [
|
1440
2135
|
"cc",
|
1441
2136
|
"pkg-config",
|
@@ -1447,9 +2142,9 @@ version = "0.10.73"
|
|
1447
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1448
2143
|
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
1449
2144
|
dependencies = [
|
1450
|
-
"bitflags 2.
|
2145
|
+
"bitflags 2.9.1",
|
1451
2146
|
"cfg-if",
|
1452
|
-
"foreign-types",
|
2147
|
+
"foreign-types 0.3.2",
|
1453
2148
|
"libc",
|
1454
2149
|
"once_cell",
|
1455
2150
|
"openssl-macros",
|
@@ -1464,14 +2159,14 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1464
2159
|
dependencies = [
|
1465
2160
|
"proc-macro2",
|
1466
2161
|
"quote",
|
1467
|
-
"syn
|
2162
|
+
"syn",
|
1468
2163
|
]
|
1469
2164
|
|
1470
2165
|
[[package]]
|
1471
2166
|
name = "openssl-probe"
|
1472
|
-
version = "0.1.
|
2167
|
+
version = "0.1.6"
|
1473
2168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1474
|
-
checksum = "
|
2169
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
1475
2170
|
|
1476
2171
|
[[package]]
|
1477
2172
|
name = "openssl-sys"
|
@@ -1493,9 +2188,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1493
2188
|
|
1494
2189
|
[[package]]
|
1495
2190
|
name = "paste"
|
1496
|
-
version = "1.0.
|
2191
|
+
version = "1.0.15"
|
1497
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1498
|
-
checksum = "
|
2193
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
1499
2194
|
|
1500
2195
|
[[package]]
|
1501
2196
|
name = "percent-encoding"
|
@@ -1505,9 +2200,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1505
2200
|
|
1506
2201
|
[[package]]
|
1507
2202
|
name = "pin-project-lite"
|
1508
|
-
version = "0.2.
|
2203
|
+
version = "0.2.16"
|
1509
2204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1510
|
-
checksum = "
|
2205
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
1511
2206
|
|
1512
2207
|
[[package]]
|
1513
2208
|
name = "pin-utils"
|
@@ -1517,21 +2212,64 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1517
2212
|
|
1518
2213
|
[[package]]
|
1519
2214
|
name = "pkg-config"
|
1520
|
-
version = "0.3.
|
2215
|
+
version = "0.3.32"
|
1521
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1522
|
-
checksum = "
|
2217
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1523
2218
|
|
1524
2219
|
[[package]]
|
1525
2220
|
name = "portable-atomic"
|
1526
|
-
version = "1.
|
2221
|
+
version = "1.11.1"
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2223
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
2224
|
+
|
2225
|
+
[[package]]
|
2226
|
+
name = "potential_utf"
|
2227
|
+
version = "0.1.2"
|
1527
2228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1528
|
-
checksum = "
|
2229
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
2230
|
+
dependencies = [
|
2231
|
+
"zerovec",
|
2232
|
+
]
|
1529
2233
|
|
1530
2234
|
[[package]]
|
1531
2235
|
name = "ppv-lite86"
|
1532
|
-
version = "0.2.
|
2236
|
+
version = "0.2.21"
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2238
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
2239
|
+
dependencies = [
|
2240
|
+
"zerocopy",
|
2241
|
+
]
|
2242
|
+
|
2243
|
+
[[package]]
|
2244
|
+
name = "proc-macro-crate"
|
2245
|
+
version = "3.3.0"
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2247
|
+
checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
|
2248
|
+
dependencies = [
|
2249
|
+
"toml_edit",
|
2250
|
+
]
|
2251
|
+
|
2252
|
+
[[package]]
|
2253
|
+
name = "proc-macro-error-attr2"
|
2254
|
+
version = "2.0.0"
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
2257
|
+
dependencies = [
|
2258
|
+
"proc-macro2",
|
2259
|
+
"quote",
|
2260
|
+
]
|
2261
|
+
|
2262
|
+
[[package]]
|
2263
|
+
name = "proc-macro-error2"
|
2264
|
+
version = "2.0.1"
|
1533
2265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1534
|
-
checksum = "
|
2266
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
2267
|
+
dependencies = [
|
2268
|
+
"proc-macro-error-attr2",
|
2269
|
+
"proc-macro2",
|
2270
|
+
"quote",
|
2271
|
+
"syn",
|
2272
|
+
]
|
1535
2273
|
|
1536
2274
|
[[package]]
|
1537
2275
|
name = "proc-macro2"
|
@@ -1544,21 +2282,35 @@ dependencies = [
|
|
1544
2282
|
|
1545
2283
|
[[package]]
|
1546
2284
|
name = "pulp"
|
1547
|
-
version = "0.18.
|
2285
|
+
version = "0.18.22"
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
+
checksum = "a0a01a0dc67cf4558d279f0c25b0962bd08fc6dec0137699eae304103e882fe6"
|
2288
|
+
dependencies = [
|
2289
|
+
"bytemuck",
|
2290
|
+
"libm",
|
2291
|
+
"num-complex",
|
2292
|
+
"reborrow",
|
2293
|
+
]
|
2294
|
+
|
2295
|
+
[[package]]
|
2296
|
+
name = "pulp"
|
2297
|
+
version = "0.21.5"
|
1548
2298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1549
|
-
checksum = "
|
2299
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
1550
2300
|
dependencies = [
|
1551
2301
|
"bytemuck",
|
2302
|
+
"cfg-if",
|
1552
2303
|
"libm",
|
1553
2304
|
"num-complex",
|
1554
2305
|
"reborrow",
|
2306
|
+
"version_check",
|
1555
2307
|
]
|
1556
2308
|
|
1557
2309
|
[[package]]
|
1558
2310
|
name = "quote"
|
1559
|
-
version = "1.0.
|
2311
|
+
version = "1.0.40"
|
1560
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1561
|
-
checksum = "
|
2313
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1562
2314
|
dependencies = [
|
1563
2315
|
"proc-macro2",
|
1564
2316
|
]
|
@@ -1616,7 +2368,7 @@ version = "0.6.4"
|
|
1616
2368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1617
2369
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1618
2370
|
dependencies = [
|
1619
|
-
"getrandom 0.2.
|
2371
|
+
"getrandom 0.2.16",
|
1620
2372
|
]
|
1621
2373
|
|
1622
2374
|
[[package]]
|
@@ -1630,12 +2382,12 @@ dependencies = [
|
|
1630
2382
|
|
1631
2383
|
[[package]]
|
1632
2384
|
name = "rand_distr"
|
1633
|
-
version = "0.
|
2385
|
+
version = "0.5.1"
|
1634
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
-
checksum = "
|
2387
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
1636
2388
|
dependencies = [
|
1637
2389
|
"num-traits",
|
1638
|
-
"rand 0.
|
2390
|
+
"rand 0.9.1",
|
1639
2391
|
]
|
1640
2392
|
|
1641
2393
|
[[package]]
|
@@ -1647,11 +2399,20 @@ dependencies = [
|
|
1647
2399
|
"bitflags 1.3.2",
|
1648
2400
|
]
|
1649
2401
|
|
2402
|
+
[[package]]
|
2403
|
+
name = "raw-cpuid"
|
2404
|
+
version = "11.5.0"
|
2405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2406
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
2407
|
+
dependencies = [
|
2408
|
+
"bitflags 2.9.1",
|
2409
|
+
]
|
2410
|
+
|
1650
2411
|
[[package]]
|
1651
2412
|
name = "rayon"
|
1652
|
-
version = "1.
|
2413
|
+
version = "1.10.0"
|
1653
2414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1654
|
-
checksum = "
|
2415
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
1655
2416
|
dependencies = [
|
1656
2417
|
"either",
|
1657
2418
|
"rayon-core",
|
@@ -1659,12 +2420,12 @@ dependencies = [
|
|
1659
2420
|
|
1660
2421
|
[[package]]
|
1661
2422
|
name = "rayon-cond"
|
1662
|
-
version = "0.
|
2423
|
+
version = "0.4.0"
|
1663
2424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
-
checksum = "
|
2425
|
+
checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
|
1665
2426
|
dependencies = [
|
1666
2427
|
"either",
|
1667
|
-
"itertools 0.
|
2428
|
+
"itertools 0.14.0",
|
1668
2429
|
"rayon",
|
1669
2430
|
]
|
1670
2431
|
|
@@ -1680,18 +2441,18 @@ dependencies = [
|
|
1680
2441
|
|
1681
2442
|
[[package]]
|
1682
2443
|
name = "rb-sys"
|
1683
|
-
version = "0.9.
|
2444
|
+
version = "0.9.116"
|
1684
2445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1685
|
-
checksum = "
|
2446
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
1686
2447
|
dependencies = [
|
1687
2448
|
"rb-sys-build",
|
1688
2449
|
]
|
1689
2450
|
|
1690
2451
|
[[package]]
|
1691
2452
|
name = "rb-sys-build"
|
1692
|
-
version = "0.9.
|
2453
|
+
version = "0.9.116"
|
1693
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1694
|
-
checksum = "
|
2455
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
1695
2456
|
dependencies = [
|
1696
2457
|
"bindgen",
|
1697
2458
|
"lazy_static",
|
@@ -1699,7 +2460,7 @@ dependencies = [
|
|
1699
2460
|
"quote",
|
1700
2461
|
"regex",
|
1701
2462
|
"shell-words",
|
1702
|
-
"syn
|
2463
|
+
"syn",
|
1703
2464
|
]
|
1704
2465
|
|
1705
2466
|
[[package]]
|
@@ -1714,22 +2475,42 @@ version = "0.5.5"
|
|
1714
2475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1715
2476
|
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
1716
2477
|
|
2478
|
+
[[package]]
|
2479
|
+
name = "redox_syscall"
|
2480
|
+
version = "0.5.13"
|
2481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2482
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
2483
|
+
dependencies = [
|
2484
|
+
"bitflags 2.9.1",
|
2485
|
+
]
|
2486
|
+
|
2487
|
+
[[package]]
|
2488
|
+
name = "redox_users"
|
2489
|
+
version = "0.4.6"
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2491
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
2492
|
+
dependencies = [
|
2493
|
+
"getrandom 0.2.16",
|
2494
|
+
"libredox",
|
2495
|
+
"thiserror 1.0.69",
|
2496
|
+
]
|
2497
|
+
|
1717
2498
|
[[package]]
|
1718
2499
|
name = "redox_users"
|
1719
2500
|
version = "0.5.0"
|
1720
2501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1721
2502
|
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
|
1722
2503
|
dependencies = [
|
1723
|
-
"getrandom 0.2.
|
2504
|
+
"getrandom 0.2.16",
|
1724
2505
|
"libredox",
|
1725
2506
|
"thiserror 2.0.12",
|
1726
2507
|
]
|
1727
2508
|
|
1728
2509
|
[[package]]
|
1729
2510
|
name = "regex"
|
1730
|
-
version = "1.
|
2511
|
+
version = "1.11.1"
|
1731
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "
|
2513
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1733
2514
|
dependencies = [
|
1734
2515
|
"aho-corasick",
|
1735
2516
|
"memchr",
|
@@ -1739,9 +2520,9 @@ dependencies = [
|
|
1739
2520
|
|
1740
2521
|
[[package]]
|
1741
2522
|
name = "regex-automata"
|
1742
|
-
version = "0.4.
|
2523
|
+
version = "0.4.9"
|
1743
2524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1744
|
-
checksum = "
|
2525
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1745
2526
|
dependencies = [
|
1746
2527
|
"aho-corasick",
|
1747
2528
|
"memchr",
|
@@ -1750,9 +2531,9 @@ dependencies = [
|
|
1750
2531
|
|
1751
2532
|
[[package]]
|
1752
2533
|
name = "regex-syntax"
|
1753
|
-
version = "0.8.
|
2534
|
+
version = "0.8.5"
|
1754
2535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1755
|
-
checksum = "
|
2536
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1756
2537
|
|
1757
2538
|
[[package]]
|
1758
2539
|
name = "reqwest"
|
@@ -1799,15 +2580,14 @@ dependencies = [
|
|
1799
2580
|
|
1800
2581
|
[[package]]
|
1801
2582
|
name = "ring"
|
1802
|
-
version = "0.17.
|
2583
|
+
version = "0.17.14"
|
1803
2584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
2585
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
1805
2586
|
dependencies = [
|
1806
2587
|
"cc",
|
1807
2588
|
"cfg-if",
|
1808
|
-
"getrandom 0.2.
|
2589
|
+
"getrandom 0.2.16",
|
1809
2590
|
"libc",
|
1810
|
-
"spin",
|
1811
2591
|
"untrusted",
|
1812
2592
|
"windows-sys 0.52.0",
|
1813
2593
|
]
|
@@ -1826,29 +2606,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1826
2606
|
|
1827
2607
|
[[package]]
|
1828
2608
|
name = "rustix"
|
1829
|
-
version = "0.
|
2609
|
+
version = "1.0.7"
|
1830
2610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1831
|
-
checksum = "
|
2611
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
1832
2612
|
dependencies = [
|
1833
|
-
"bitflags 2.
|
2613
|
+
"bitflags 2.9.1",
|
1834
2614
|
"errno",
|
1835
2615
|
"libc",
|
1836
2616
|
"linux-raw-sys",
|
1837
|
-
"windows-sys 0.
|
1838
|
-
]
|
1839
|
-
|
1840
|
-
[[package]]
|
1841
|
-
name = "rustls"
|
1842
|
-
version = "0.22.2"
|
1843
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
-
checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
|
1845
|
-
dependencies = [
|
1846
|
-
"log",
|
1847
|
-
"ring",
|
1848
|
-
"rustls-pki-types",
|
1849
|
-
"rustls-webpki 0.102.2",
|
1850
|
-
"subtle",
|
1851
|
-
"zeroize",
|
2617
|
+
"windows-sys 0.59.0",
|
1852
2618
|
]
|
1853
2619
|
|
1854
2620
|
[[package]]
|
@@ -1857,9 +2623,11 @@ version = "0.23.28"
|
|
1857
2623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1858
2624
|
checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
|
1859
2625
|
dependencies = [
|
2626
|
+
"log",
|
1860
2627
|
"once_cell",
|
2628
|
+
"ring",
|
1861
2629
|
"rustls-pki-types",
|
1862
|
-
"rustls-webpki
|
2630
|
+
"rustls-webpki",
|
1863
2631
|
"subtle",
|
1864
2632
|
"zeroize",
|
1865
2633
|
]
|
@@ -1873,17 +2641,6 @@ dependencies = [
|
|
1873
2641
|
"zeroize",
|
1874
2642
|
]
|
1875
2643
|
|
1876
|
-
[[package]]
|
1877
|
-
name = "rustls-webpki"
|
1878
|
-
version = "0.102.2"
|
1879
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
-
checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
|
1881
|
-
dependencies = [
|
1882
|
-
"ring",
|
1883
|
-
"rustls-pki-types",
|
1884
|
-
"untrusted",
|
1885
|
-
]
|
1886
|
-
|
1887
2644
|
[[package]]
|
1888
2645
|
name = "rustls-webpki"
|
1889
2646
|
version = "0.103.3"
|
@@ -1903,15 +2660,25 @@ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
1903
2660
|
|
1904
2661
|
[[package]]
|
1905
2662
|
name = "ryu"
|
1906
|
-
version = "1.0.
|
2663
|
+
version = "1.0.20"
|
1907
2664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1908
|
-
checksum = "
|
2665
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1909
2666
|
|
1910
2667
|
[[package]]
|
1911
2668
|
name = "safetensors"
|
1912
|
-
version = "0.
|
2669
|
+
version = "0.3.3"
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2671
|
+
checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df"
|
2672
|
+
dependencies = [
|
2673
|
+
"serde",
|
2674
|
+
"serde_json",
|
2675
|
+
]
|
2676
|
+
|
2677
|
+
[[package]]
|
2678
|
+
name = "safetensors"
|
2679
|
+
version = "0.4.5"
|
1913
2680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1914
|
-
checksum = "
|
2681
|
+
checksum = "44560c11236a6130a46ce36c836a62936dc81ebf8c36a37947423571be0e55b6"
|
1915
2682
|
dependencies = [
|
1916
2683
|
"serde",
|
1917
2684
|
"serde_json",
|
@@ -1928,20 +2695,20 @@ dependencies = [
|
|
1928
2695
|
|
1929
2696
|
[[package]]
|
1930
2697
|
name = "schannel"
|
1931
|
-
version = "0.1.
|
2698
|
+
version = "0.1.27"
|
1932
2699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1933
|
-
checksum = "
|
2700
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
1934
2701
|
dependencies = [
|
1935
|
-
"windows-sys 0.
|
2702
|
+
"windows-sys 0.59.0",
|
1936
2703
|
]
|
1937
2704
|
|
1938
2705
|
[[package]]
|
1939
2706
|
name = "security-framework"
|
1940
|
-
version = "2.
|
2707
|
+
version = "2.11.1"
|
1941
2708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1942
|
-
checksum = "
|
2709
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
1943
2710
|
dependencies = [
|
1944
|
-
"bitflags
|
2711
|
+
"bitflags 2.9.1",
|
1945
2712
|
"core-foundation",
|
1946
2713
|
"core-foundation-sys",
|
1947
2714
|
"libc",
|
@@ -1950,9 +2717,9 @@ dependencies = [
|
|
1950
2717
|
|
1951
2718
|
[[package]]
|
1952
2719
|
name = "security-framework-sys"
|
1953
|
-
version = "2.
|
2720
|
+
version = "2.14.0"
|
1954
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1955
|
-
checksum = "
|
2722
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
1956
2723
|
dependencies = [
|
1957
2724
|
"core-foundation-sys",
|
1958
2725
|
"libc",
|
@@ -1960,37 +2727,38 @@ dependencies = [
|
|
1960
2727
|
|
1961
2728
|
[[package]]
|
1962
2729
|
name = "seq-macro"
|
1963
|
-
version = "0.3.
|
2730
|
+
version = "0.3.6"
|
1964
2731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1965
|
-
checksum = "
|
2732
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1966
2733
|
|
1967
2734
|
[[package]]
|
1968
2735
|
name = "serde"
|
1969
|
-
version = "1.0.
|
2736
|
+
version = "1.0.219"
|
1970
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1971
|
-
checksum = "
|
2738
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1972
2739
|
dependencies = [
|
1973
2740
|
"serde_derive",
|
1974
2741
|
]
|
1975
2742
|
|
1976
2743
|
[[package]]
|
1977
2744
|
name = "serde_derive"
|
1978
|
-
version = "1.0.
|
2745
|
+
version = "1.0.219"
|
1979
2746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
-
checksum = "
|
2747
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1981
2748
|
dependencies = [
|
1982
2749
|
"proc-macro2",
|
1983
2750
|
"quote",
|
1984
|
-
"syn
|
2751
|
+
"syn",
|
1985
2752
|
]
|
1986
2753
|
|
1987
2754
|
[[package]]
|
1988
2755
|
name = "serde_json"
|
1989
|
-
version = "1.0.
|
2756
|
+
version = "1.0.140"
|
1990
2757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1991
|
-
checksum = "
|
2758
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1992
2759
|
dependencies = [
|
1993
2760
|
"itoa",
|
2761
|
+
"memchr",
|
1994
2762
|
"ryu",
|
1995
2763
|
"serde",
|
1996
2764
|
]
|
@@ -2004,6 +2772,15 @@ dependencies = [
|
|
2004
2772
|
"serde",
|
2005
2773
|
]
|
2006
2774
|
|
2775
|
+
[[package]]
|
2776
|
+
name = "serde_spanned"
|
2777
|
+
version = "0.6.9"
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2779
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
2780
|
+
dependencies = [
|
2781
|
+
"serde",
|
2782
|
+
]
|
2783
|
+
|
2007
2784
|
[[package]]
|
2008
2785
|
name = "serde_urlencoded"
|
2009
2786
|
version = "0.7.1"
|
@@ -2016,6 +2793,17 @@ dependencies = [
|
|
2016
2793
|
"serde",
|
2017
2794
|
]
|
2018
2795
|
|
2796
|
+
[[package]]
|
2797
|
+
name = "sha2"
|
2798
|
+
version = "0.10.9"
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2800
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
2801
|
+
dependencies = [
|
2802
|
+
"cfg-if",
|
2803
|
+
"cpufeatures",
|
2804
|
+
"digest",
|
2805
|
+
]
|
2806
|
+
|
2019
2807
|
[[package]]
|
2020
2808
|
name = "shell-words"
|
2021
2809
|
version = "1.1.0"
|
@@ -2036,9 +2824,9 @@ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
|
2036
2824
|
|
2037
2825
|
[[package]]
|
2038
2826
|
name = "smallvec"
|
2039
|
-
version = "1.
|
2827
|
+
version = "1.15.1"
|
2040
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2041
|
-
checksum = "
|
2829
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
2042
2830
|
|
2043
2831
|
[[package]]
|
2044
2832
|
name = "socket2"
|
@@ -2061,12 +2849,6 @@ dependencies = [
|
|
2061
2849
|
"winapi",
|
2062
2850
|
]
|
2063
2851
|
|
2064
|
-
[[package]]
|
2065
|
-
name = "spin"
|
2066
|
-
version = "0.9.8"
|
2067
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2068
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
2069
|
-
|
2070
2852
|
[[package]]
|
2071
2853
|
name = "spm_precompiled"
|
2072
2854
|
version = "0.1.4"
|
@@ -2086,34 +2868,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
2868
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2087
2869
|
|
2088
2870
|
[[package]]
|
2089
|
-
name = "
|
2090
|
-
version = "
|
2871
|
+
name = "static_assertions"
|
2872
|
+
version = "1.1.0"
|
2091
2873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2092
|
-
checksum = "
|
2874
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
2093
2875
|
|
2094
2876
|
[[package]]
|
2095
2877
|
name = "strsim"
|
2096
|
-
version = "0.11.
|
2878
|
+
version = "0.11.1"
|
2097
2879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2098
|
-
checksum = "
|
2880
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
2099
2881
|
|
2100
2882
|
[[package]]
|
2101
|
-
name = "
|
2102
|
-
version = "
|
2883
|
+
name = "strum"
|
2884
|
+
version = "0.26.3"
|
2103
2885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2104
|
-
checksum = "
|
2886
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
2105
2887
|
|
2106
2888
|
[[package]]
|
2107
|
-
name = "
|
2108
|
-
version = "
|
2889
|
+
name = "strum_macros"
|
2890
|
+
version = "0.26.4"
|
2109
2891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2110
|
-
checksum = "
|
2892
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2111
2893
|
dependencies = [
|
2894
|
+
"heck",
|
2112
2895
|
"proc-macro2",
|
2113
2896
|
"quote",
|
2114
|
-
"
|
2897
|
+
"rustversion",
|
2898
|
+
"syn",
|
2115
2899
|
]
|
2116
2900
|
|
2901
|
+
[[package]]
|
2902
|
+
name = "subtle"
|
2903
|
+
version = "2.6.1"
|
2904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2905
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2906
|
+
|
2117
2907
|
[[package]]
|
2118
2908
|
name = "syn"
|
2119
2909
|
version = "2.0.104"
|
@@ -2136,26 +2926,40 @@ dependencies = [
|
|
2136
2926
|
|
2137
2927
|
[[package]]
|
2138
2928
|
name = "synstructure"
|
2139
|
-
version = "0.13.
|
2929
|
+
version = "0.13.2"
|
2140
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2141
|
-
checksum = "
|
2931
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
2142
2932
|
dependencies = [
|
2143
2933
|
"proc-macro2",
|
2144
2934
|
"quote",
|
2145
|
-
"syn
|
2935
|
+
"syn",
|
2936
|
+
]
|
2937
|
+
|
2938
|
+
[[package]]
|
2939
|
+
name = "sysctl"
|
2940
|
+
version = "0.5.5"
|
2941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2942
|
+
checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea"
|
2943
|
+
dependencies = [
|
2944
|
+
"bitflags 2.9.1",
|
2945
|
+
"byteorder",
|
2946
|
+
"enum-as-inner",
|
2947
|
+
"libc",
|
2948
|
+
"thiserror 1.0.69",
|
2949
|
+
"walkdir",
|
2146
2950
|
]
|
2147
2951
|
|
2148
2952
|
[[package]]
|
2149
2953
|
name = "sysctl"
|
2150
|
-
version = "0.
|
2954
|
+
version = "0.6.0"
|
2151
2955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2152
|
-
checksum = "
|
2956
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
2153
2957
|
dependencies = [
|
2154
|
-
"bitflags 2.
|
2958
|
+
"bitflags 2.9.1",
|
2155
2959
|
"byteorder",
|
2156
2960
|
"enum-as-inner",
|
2157
2961
|
"libc",
|
2158
|
-
"thiserror 1.0.
|
2962
|
+
"thiserror 1.0.69",
|
2159
2963
|
"walkdir",
|
2160
2964
|
]
|
2161
2965
|
|
@@ -2165,7 +2969,7 @@ version = "0.6.1"
|
|
2165
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2166
2970
|
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
2167
2971
|
dependencies = [
|
2168
|
-
"bitflags 2.
|
2972
|
+
"bitflags 2.9.1",
|
2169
2973
|
"core-foundation",
|
2170
2974
|
"system-configuration-sys",
|
2171
2975
|
]
|
@@ -2180,25 +2984,37 @@ dependencies = [
|
|
2180
2984
|
"libc",
|
2181
2985
|
]
|
2182
2986
|
|
2987
|
+
[[package]]
|
2988
|
+
name = "tar"
|
2989
|
+
version = "0.4.44"
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2991
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
2992
|
+
dependencies = [
|
2993
|
+
"filetime",
|
2994
|
+
"libc",
|
2995
|
+
"xattr",
|
2996
|
+
]
|
2997
|
+
|
2183
2998
|
[[package]]
|
2184
2999
|
name = "tempfile"
|
2185
|
-
version = "3.
|
3000
|
+
version = "3.20.0"
|
2186
3001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
-
checksum = "
|
3002
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
2188
3003
|
dependencies = [
|
2189
|
-
"cfg-if",
|
2190
3004
|
"fastrand",
|
3005
|
+
"getrandom 0.3.3",
|
3006
|
+
"once_cell",
|
2191
3007
|
"rustix",
|
2192
|
-
"windows-sys 0.
|
3008
|
+
"windows-sys 0.59.0",
|
2193
3009
|
]
|
2194
3010
|
|
2195
3011
|
[[package]]
|
2196
3012
|
name = "thiserror"
|
2197
|
-
version = "1.0.
|
3013
|
+
version = "1.0.69"
|
2198
3014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2199
|
-
checksum = "
|
3015
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
2200
3016
|
dependencies = [
|
2201
|
-
"thiserror-impl 1.0.
|
3017
|
+
"thiserror-impl 1.0.69",
|
2202
3018
|
]
|
2203
3019
|
|
2204
3020
|
[[package]]
|
@@ -2212,13 +3028,13 @@ dependencies = [
|
|
2212
3028
|
|
2213
3029
|
[[package]]
|
2214
3030
|
name = "thiserror-impl"
|
2215
|
-
version = "1.0.
|
3031
|
+
version = "1.0.69"
|
2216
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2217
|
-
checksum = "
|
3033
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
2218
3034
|
dependencies = [
|
2219
3035
|
"proc-macro2",
|
2220
3036
|
"quote",
|
2221
|
-
"syn
|
3037
|
+
"syn",
|
2222
3038
|
]
|
2223
3039
|
|
2224
3040
|
[[package]]
|
@@ -2229,45 +3045,41 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
2229
3045
|
dependencies = [
|
2230
3046
|
"proc-macro2",
|
2231
3047
|
"quote",
|
2232
|
-
"syn
|
3048
|
+
"syn",
|
2233
3049
|
]
|
2234
3050
|
|
2235
3051
|
[[package]]
|
2236
|
-
name = "
|
2237
|
-
version = "
|
3052
|
+
name = "tinystr"
|
3053
|
+
version = "0.8.1"
|
2238
3054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2239
|
-
checksum = "
|
3055
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
2240
3056
|
dependencies = [
|
2241
|
-
"
|
3057
|
+
"displaydoc",
|
3058
|
+
"zerovec",
|
2242
3059
|
]
|
2243
3060
|
|
2244
|
-
[[package]]
|
2245
|
-
name = "tinyvec_macros"
|
2246
|
-
version = "0.1.1"
|
2247
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2248
|
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
2249
|
-
|
2250
3061
|
[[package]]
|
2251
3062
|
name = "tokenizers"
|
2252
|
-
version = "0.
|
3063
|
+
version = "0.21.2"
|
2253
3064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2254
|
-
checksum = "
|
3065
|
+
checksum = "4c3846d8588abed0daba25a0e47edd58ea15e450a6088b2575f5116fdb0b27ca"
|
2255
3066
|
dependencies = [
|
3067
|
+
"ahash",
|
2256
3068
|
"aho-corasick",
|
2257
|
-
"
|
3069
|
+
"compact_str",
|
3070
|
+
"dary_heap",
|
2258
3071
|
"derive_builder",
|
2259
3072
|
"esaxx-rs",
|
2260
|
-
"fancy-regex",
|
2261
|
-
"getrandom 0.
|
3073
|
+
"fancy-regex 0.14.0",
|
3074
|
+
"getrandom 0.3.3",
|
2262
3075
|
"indicatif",
|
2263
|
-
"itertools 0.
|
2264
|
-
"lazy_static",
|
3076
|
+
"itertools 0.14.0",
|
2265
3077
|
"log",
|
2266
3078
|
"macro_rules_attribute",
|
2267
3079
|
"monostate",
|
2268
3080
|
"onig",
|
2269
3081
|
"paste",
|
2270
|
-
"rand 0.
|
3082
|
+
"rand 0.9.1",
|
2271
3083
|
"rayon",
|
2272
3084
|
"rayon-cond",
|
2273
3085
|
"regex",
|
@@ -2275,7 +3087,7 @@ dependencies = [
|
|
2275
3087
|
"serde",
|
2276
3088
|
"serde_json",
|
2277
3089
|
"spm_precompiled",
|
2278
|
-
"thiserror
|
3090
|
+
"thiserror 2.0.12",
|
2279
3091
|
"unicode-normalization-alignments",
|
2280
3092
|
"unicode-segmentation",
|
2281
3093
|
"unicode_categories",
|
@@ -2307,7 +3119,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
2307
3119
|
dependencies = [
|
2308
3120
|
"proc-macro2",
|
2309
3121
|
"quote",
|
2310
|
-
"syn
|
3122
|
+
"syn",
|
2311
3123
|
]
|
2312
3124
|
|
2313
3125
|
[[package]]
|
@@ -2326,7 +3138,7 @@ version = "0.26.2"
|
|
2326
3138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2327
3139
|
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
2328
3140
|
dependencies = [
|
2329
|
-
"rustls
|
3141
|
+
"rustls",
|
2330
3142
|
"tokio",
|
2331
3143
|
]
|
2332
3144
|
|
@@ -2343,6 +3155,47 @@ dependencies = [
|
|
2343
3155
|
"tokio",
|
2344
3156
|
]
|
2345
3157
|
|
3158
|
+
[[package]]
|
3159
|
+
name = "toml"
|
3160
|
+
version = "0.8.23"
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3162
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
3163
|
+
dependencies = [
|
3164
|
+
"serde",
|
3165
|
+
"serde_spanned",
|
3166
|
+
"toml_datetime",
|
3167
|
+
"toml_edit",
|
3168
|
+
]
|
3169
|
+
|
3170
|
+
[[package]]
|
3171
|
+
name = "toml_datetime"
|
3172
|
+
version = "0.6.11"
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3174
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
3175
|
+
dependencies = [
|
3176
|
+
"serde",
|
3177
|
+
]
|
3178
|
+
|
3179
|
+
[[package]]
|
3180
|
+
name = "toml_edit"
|
3181
|
+
version = "0.22.27"
|
3182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3183
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
3184
|
+
dependencies = [
|
3185
|
+
"indexmap",
|
3186
|
+
"serde",
|
3187
|
+
"serde_spanned",
|
3188
|
+
"toml_datetime",
|
3189
|
+
"toml_write",
|
3190
|
+
"winnow",
|
3191
|
+
]
|
3192
|
+
|
3193
|
+
[[package]]
|
3194
|
+
name = "toml_write"
|
3195
|
+
version = "0.1.2"
|
3196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3197
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
3198
|
+
|
2346
3199
|
[[package]]
|
2347
3200
|
name = "tower"
|
2348
3201
|
version = "0.5.2"
|
@@ -2364,7 +3217,7 @@ version = "0.6.6"
|
|
2364
3217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
3218
|
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
2366
3219
|
dependencies = [
|
2367
|
-
"bitflags 2.
|
3220
|
+
"bitflags 2.9.1",
|
2368
3221
|
"bytes",
|
2369
3222
|
"futures-util",
|
2370
3223
|
"http",
|
@@ -2390,9 +3243,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2390
3243
|
|
2391
3244
|
[[package]]
|
2392
3245
|
name = "tracing"
|
2393
|
-
version = "0.1.
|
3246
|
+
version = "0.1.41"
|
2394
3247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2395
|
-
checksum = "
|
3248
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
2396
3249
|
dependencies = [
|
2397
3250
|
"pin-project-lite",
|
2398
3251
|
"tracing-attributes",
|
@@ -2401,20 +3254,20 @@ dependencies = [
|
|
2401
3254
|
|
2402
3255
|
[[package]]
|
2403
3256
|
name = "tracing-attributes"
|
2404
|
-
version = "0.1.
|
3257
|
+
version = "0.1.30"
|
2405
3258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2406
|
-
checksum = "
|
3259
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
2407
3260
|
dependencies = [
|
2408
3261
|
"proc-macro2",
|
2409
3262
|
"quote",
|
2410
|
-
"syn
|
3263
|
+
"syn",
|
2411
3264
|
]
|
2412
3265
|
|
2413
3266
|
[[package]]
|
2414
3267
|
name = "tracing-core"
|
2415
|
-
version = "0.1.
|
3268
|
+
version = "0.1.34"
|
2416
3269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
|
-
checksum = "
|
3270
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
2418
3271
|
dependencies = [
|
2419
3272
|
"once_cell",
|
2420
3273
|
]
|
@@ -2426,26 +3279,65 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
3279
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
2427
3280
|
|
2428
3281
|
[[package]]
|
2429
|
-
name = "
|
2430
|
-
version = "
|
3282
|
+
name = "typenum"
|
3283
|
+
version = "1.18.0"
|
2431
3284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2432
|
-
checksum = "
|
3285
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
2433
3286
|
|
2434
3287
|
[[package]]
|
2435
|
-
name = "
|
2436
|
-
version = "
|
3288
|
+
name = "ug"
|
3289
|
+
version = "0.4.0"
|
3290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3291
|
+
checksum = "90b70b37e9074642bc5f60bb23247fd072a84314ca9e71cdf8527593406a0dd3"
|
3292
|
+
dependencies = [
|
3293
|
+
"gemm 0.18.2",
|
3294
|
+
"half",
|
3295
|
+
"libloading",
|
3296
|
+
"memmap2",
|
3297
|
+
"num",
|
3298
|
+
"num-traits",
|
3299
|
+
"num_cpus",
|
3300
|
+
"rayon",
|
3301
|
+
"safetensors 0.4.5",
|
3302
|
+
"serde",
|
3303
|
+
"thiserror 1.0.69",
|
3304
|
+
"tracing",
|
3305
|
+
"yoke 0.7.5",
|
3306
|
+
]
|
3307
|
+
|
3308
|
+
[[package]]
|
3309
|
+
name = "ug-cuda"
|
3310
|
+
version = "0.4.0"
|
2437
3311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2438
|
-
checksum = "
|
3312
|
+
checksum = "14053653d0b7fa7b21015aa9a62edc8af2f60aa6f9c54e66386ecce55f22ed29"
|
3313
|
+
dependencies = [
|
3314
|
+
"cudarc",
|
3315
|
+
"half",
|
3316
|
+
"serde",
|
3317
|
+
"thiserror 1.0.69",
|
3318
|
+
"ug",
|
3319
|
+
]
|
2439
3320
|
|
2440
3321
|
[[package]]
|
2441
|
-
name = "
|
2442
|
-
version = "0.
|
3322
|
+
name = "ug-metal"
|
3323
|
+
version = "0.4.0"
|
2443
3324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2444
|
-
checksum = "
|
3325
|
+
checksum = "76daec3c7a32a1b4a0e3307b6b057fa067aa64e750713987410a2c402e5cd731"
|
2445
3326
|
dependencies = [
|
2446
|
-
"
|
3327
|
+
"half",
|
3328
|
+
"metal 0.29.0",
|
3329
|
+
"objc",
|
3330
|
+
"serde",
|
3331
|
+
"thiserror 1.0.69",
|
3332
|
+
"ug",
|
2447
3333
|
]
|
2448
3334
|
|
3335
|
+
[[package]]
|
3336
|
+
name = "unicode-ident"
|
3337
|
+
version = "1.0.18"
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3339
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
3340
|
+
|
2449
3341
|
[[package]]
|
2450
3342
|
name = "unicode-normalization-alignments"
|
2451
3343
|
version = "0.1.12"
|
@@ -2457,15 +3349,15 @@ dependencies = [
|
|
2457
3349
|
|
2458
3350
|
[[package]]
|
2459
3351
|
name = "unicode-segmentation"
|
2460
|
-
version = "1.
|
3352
|
+
version = "1.12.0"
|
2461
3353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2462
|
-
checksum = "
|
3354
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
2463
3355
|
|
2464
3356
|
[[package]]
|
2465
3357
|
name = "unicode-width"
|
2466
|
-
version = "0.1
|
3358
|
+
version = "0.2.1"
|
2467
3359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2468
|
-
checksum = "
|
3360
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
2469
3361
|
|
2470
3362
|
[[package]]
|
2471
3363
|
name = "unicode_categories"
|
@@ -2481,30 +3373,29 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2481
3373
|
|
2482
3374
|
[[package]]
|
2483
3375
|
name = "ureq"
|
2484
|
-
version = "2.
|
3376
|
+
version = "2.12.1"
|
2485
3377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2486
|
-
checksum = "
|
3378
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
2487
3379
|
dependencies = [
|
2488
|
-
"base64 0.
|
3380
|
+
"base64 0.22.1",
|
2489
3381
|
"flate2",
|
2490
3382
|
"log",
|
2491
3383
|
"native-tls",
|
2492
3384
|
"once_cell",
|
2493
|
-
"rustls
|
3385
|
+
"rustls",
|
2494
3386
|
"rustls-pki-types",
|
2495
|
-
"rustls-webpki 0.102.2",
|
2496
3387
|
"serde",
|
2497
3388
|
"serde_json",
|
2498
3389
|
"socks",
|
2499
3390
|
"url",
|
2500
|
-
"webpki-roots",
|
3391
|
+
"webpki-roots 0.26.11",
|
2501
3392
|
]
|
2502
3393
|
|
2503
3394
|
[[package]]
|
2504
3395
|
name = "url"
|
2505
|
-
version = "2.5.
|
3396
|
+
version = "2.5.4"
|
2506
3397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2507
|
-
checksum = "
|
3398
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
2508
3399
|
dependencies = [
|
2509
3400
|
"form_urlencoded",
|
2510
3401
|
"idna",
|
@@ -2512,10 +3403,21 @@ dependencies = [
|
|
2512
3403
|
]
|
2513
3404
|
|
2514
3405
|
[[package]]
|
2515
|
-
name = "
|
2516
|
-
version = "0.
|
3406
|
+
name = "utf8_iter"
|
3407
|
+
version = "1.0.4"
|
3408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3409
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
3410
|
+
|
3411
|
+
[[package]]
|
3412
|
+
name = "uuid"
|
3413
|
+
version = "1.17.0"
|
2517
3414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2518
|
-
checksum = "
|
3415
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
3416
|
+
dependencies = [
|
3417
|
+
"getrandom 0.3.3",
|
3418
|
+
"js-sys",
|
3419
|
+
"wasm-bindgen",
|
3420
|
+
]
|
2519
3421
|
|
2520
3422
|
[[package]]
|
2521
3423
|
name = "vcpkg"
|
@@ -2523,6 +3425,12 @@ version = "0.2.15"
|
|
2523
3425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2524
3426
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2525
3427
|
|
3428
|
+
[[package]]
|
3429
|
+
name = "version_check"
|
3430
|
+
version = "0.9.5"
|
3431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3432
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
3433
|
+
|
2526
3434
|
[[package]]
|
2527
3435
|
name = "walkdir"
|
2528
3436
|
version = "2.5.0"
|
@@ -2544,9 +3452,9 @@ dependencies = [
|
|
2544
3452
|
|
2545
3453
|
[[package]]
|
2546
3454
|
name = "wasi"
|
2547
|
-
version = "0.11.
|
3455
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
2548
3456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2549
|
-
checksum = "
|
3457
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
2550
3458
|
|
2551
3459
|
[[package]]
|
2552
3460
|
name = "wasi"
|
@@ -2579,7 +3487,7 @@ dependencies = [
|
|
2579
3487
|
"log",
|
2580
3488
|
"proc-macro2",
|
2581
3489
|
"quote",
|
2582
|
-
"syn
|
3490
|
+
"syn",
|
2583
3491
|
"wasm-bindgen-shared",
|
2584
3492
|
]
|
2585
3493
|
|
@@ -2614,7 +3522,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2614
3522
|
dependencies = [
|
2615
3523
|
"proc-macro2",
|
2616
3524
|
"quote",
|
2617
|
-
"syn
|
3525
|
+
"syn",
|
2618
3526
|
"wasm-bindgen-backend",
|
2619
3527
|
"wasm-bindgen-shared",
|
2620
3528
|
]
|
@@ -2651,11 +3559,30 @@ dependencies = [
|
|
2651
3559
|
"wasm-bindgen",
|
2652
3560
|
]
|
2653
3561
|
|
3562
|
+
[[package]]
|
3563
|
+
name = "web-time"
|
3564
|
+
version = "1.1.0"
|
3565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3566
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
3567
|
+
dependencies = [
|
3568
|
+
"js-sys",
|
3569
|
+
"wasm-bindgen",
|
3570
|
+
]
|
3571
|
+
|
3572
|
+
[[package]]
|
3573
|
+
name = "webpki-roots"
|
3574
|
+
version = "0.26.11"
|
3575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3576
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
3577
|
+
dependencies = [
|
3578
|
+
"webpki-roots 1.0.1",
|
3579
|
+
]
|
3580
|
+
|
2654
3581
|
[[package]]
|
2655
3582
|
name = "webpki-roots"
|
2656
|
-
version = "0.
|
3583
|
+
version = "1.0.1"
|
2657
3584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2658
|
-
checksum = "
|
3585
|
+
checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502"
|
2659
3586
|
dependencies = [
|
2660
3587
|
"rustls-pki-types",
|
2661
3588
|
]
|
@@ -2678,11 +3605,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2678
3605
|
|
2679
3606
|
[[package]]
|
2680
3607
|
name = "winapi-util"
|
2681
|
-
version = "0.1.
|
3608
|
+
version = "0.1.9"
|
2682
3609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2683
|
-
checksum = "
|
3610
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
2684
3611
|
dependencies = [
|
2685
|
-
"
|
3612
|
+
"windows-sys 0.59.0",
|
2686
3613
|
]
|
2687
3614
|
|
2688
3615
|
[[package]]
|
@@ -2691,6 +3618,41 @@ version = "0.4.0"
|
|
2691
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2692
3619
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2693
3620
|
|
3621
|
+
[[package]]
|
3622
|
+
name = "windows-core"
|
3623
|
+
version = "0.61.2"
|
3624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3625
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
3626
|
+
dependencies = [
|
3627
|
+
"windows-implement",
|
3628
|
+
"windows-interface",
|
3629
|
+
"windows-link",
|
3630
|
+
"windows-result",
|
3631
|
+
"windows-strings",
|
3632
|
+
]
|
3633
|
+
|
3634
|
+
[[package]]
|
3635
|
+
name = "windows-implement"
|
3636
|
+
version = "0.60.0"
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3638
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
3639
|
+
dependencies = [
|
3640
|
+
"proc-macro2",
|
3641
|
+
"quote",
|
3642
|
+
"syn",
|
3643
|
+
]
|
3644
|
+
|
3645
|
+
[[package]]
|
3646
|
+
name = "windows-interface"
|
3647
|
+
version = "0.59.1"
|
3648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3649
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
3650
|
+
dependencies = [
|
3651
|
+
"proc-macro2",
|
3652
|
+
"quote",
|
3653
|
+
"syn",
|
3654
|
+
]
|
3655
|
+
|
2694
3656
|
[[package]]
|
2695
3657
|
name = "windows-link"
|
2696
3658
|
version = "0.1.3"
|
@@ -2726,13 +3688,31 @@ dependencies = [
|
|
2726
3688
|
"windows-link",
|
2727
3689
|
]
|
2728
3690
|
|
3691
|
+
[[package]]
|
3692
|
+
name = "windows-sys"
|
3693
|
+
version = "0.48.0"
|
3694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3695
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
3696
|
+
dependencies = [
|
3697
|
+
"windows-targets 0.48.5",
|
3698
|
+
]
|
3699
|
+
|
2729
3700
|
[[package]]
|
2730
3701
|
name = "windows-sys"
|
2731
3702
|
version = "0.52.0"
|
2732
3703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2733
3704
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2734
3705
|
dependencies = [
|
2735
|
-
"windows-targets 0.52.
|
3706
|
+
"windows-targets 0.52.6",
|
3707
|
+
]
|
3708
|
+
|
3709
|
+
[[package]]
|
3710
|
+
name = "windows-sys"
|
3711
|
+
version = "0.59.0"
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3713
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
3714
|
+
dependencies = [
|
3715
|
+
"windows-targets 0.52.6",
|
2736
3716
|
]
|
2737
3717
|
|
2738
3718
|
[[package]]
|
@@ -2746,17 +3726,33 @@ dependencies = [
|
|
2746
3726
|
|
2747
3727
|
[[package]]
|
2748
3728
|
name = "windows-targets"
|
2749
|
-
version = "0.
|
3729
|
+
version = "0.48.5"
|
2750
3730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2751
|
-
checksum = "
|
3731
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2752
3732
|
dependencies = [
|
2753
|
-
"windows_aarch64_gnullvm 0.
|
2754
|
-
"windows_aarch64_msvc 0.
|
2755
|
-
"windows_i686_gnu 0.
|
2756
|
-
"windows_i686_msvc 0.
|
2757
|
-
"windows_x86_64_gnu 0.
|
2758
|
-
"windows_x86_64_gnullvm 0.
|
2759
|
-
"windows_x86_64_msvc 0.
|
3733
|
+
"windows_aarch64_gnullvm 0.48.5",
|
3734
|
+
"windows_aarch64_msvc 0.48.5",
|
3735
|
+
"windows_i686_gnu 0.48.5",
|
3736
|
+
"windows_i686_msvc 0.48.5",
|
3737
|
+
"windows_x86_64_gnu 0.48.5",
|
3738
|
+
"windows_x86_64_gnullvm 0.48.5",
|
3739
|
+
"windows_x86_64_msvc 0.48.5",
|
3740
|
+
]
|
3741
|
+
|
3742
|
+
[[package]]
|
3743
|
+
name = "windows-targets"
|
3744
|
+
version = "0.52.6"
|
3745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3746
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
3747
|
+
dependencies = [
|
3748
|
+
"windows_aarch64_gnullvm 0.52.6",
|
3749
|
+
"windows_aarch64_msvc 0.52.6",
|
3750
|
+
"windows_i686_gnu 0.52.6",
|
3751
|
+
"windows_i686_gnullvm 0.52.6",
|
3752
|
+
"windows_i686_msvc 0.52.6",
|
3753
|
+
"windows_x86_64_gnu 0.52.6",
|
3754
|
+
"windows_x86_64_gnullvm 0.52.6",
|
3755
|
+
"windows_x86_64_msvc 0.52.6",
|
2760
3756
|
]
|
2761
3757
|
|
2762
3758
|
[[package]]
|
@@ -2768,7 +3764,7 @@ dependencies = [
|
|
2768
3764
|
"windows_aarch64_gnullvm 0.53.0",
|
2769
3765
|
"windows_aarch64_msvc 0.53.0",
|
2770
3766
|
"windows_i686_gnu 0.53.0",
|
2771
|
-
"windows_i686_gnullvm",
|
3767
|
+
"windows_i686_gnullvm 0.53.0",
|
2772
3768
|
"windows_i686_msvc 0.53.0",
|
2773
3769
|
"windows_x86_64_gnu 0.53.0",
|
2774
3770
|
"windows_x86_64_gnullvm 0.53.0",
|
@@ -2777,9 +3773,15 @@ dependencies = [
|
|
2777
3773
|
|
2778
3774
|
[[package]]
|
2779
3775
|
name = "windows_aarch64_gnullvm"
|
2780
|
-
version = "0.
|
3776
|
+
version = "0.48.5"
|
3777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3778
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
3779
|
+
|
3780
|
+
[[package]]
|
3781
|
+
name = "windows_aarch64_gnullvm"
|
3782
|
+
version = "0.52.6"
|
2781
3783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2782
|
-
checksum = "
|
3784
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2783
3785
|
|
2784
3786
|
[[package]]
|
2785
3787
|
name = "windows_aarch64_gnullvm"
|
@@ -2789,9 +3791,15 @@ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
2789
3791
|
|
2790
3792
|
[[package]]
|
2791
3793
|
name = "windows_aarch64_msvc"
|
2792
|
-
version = "0.
|
3794
|
+
version = "0.48.5"
|
3795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3796
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
3797
|
+
|
3798
|
+
[[package]]
|
3799
|
+
name = "windows_aarch64_msvc"
|
3800
|
+
version = "0.52.6"
|
2793
3801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2794
|
-
checksum = "
|
3802
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2795
3803
|
|
2796
3804
|
[[package]]
|
2797
3805
|
name = "windows_aarch64_msvc"
|
@@ -2801,9 +3809,15 @@ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
2801
3809
|
|
2802
3810
|
[[package]]
|
2803
3811
|
name = "windows_i686_gnu"
|
2804
|
-
version = "0.
|
3812
|
+
version = "0.48.5"
|
3813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3814
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
3815
|
+
|
3816
|
+
[[package]]
|
3817
|
+
name = "windows_i686_gnu"
|
3818
|
+
version = "0.52.6"
|
2805
3819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2806
|
-
checksum = "
|
3820
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2807
3821
|
|
2808
3822
|
[[package]]
|
2809
3823
|
name = "windows_i686_gnu"
|
@@ -2811,6 +3825,12 @@ version = "0.53.0"
|
|
2811
3825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2812
3826
|
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
2813
3827
|
|
3828
|
+
[[package]]
|
3829
|
+
name = "windows_i686_gnullvm"
|
3830
|
+
version = "0.52.6"
|
3831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3832
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
3833
|
+
|
2814
3834
|
[[package]]
|
2815
3835
|
name = "windows_i686_gnullvm"
|
2816
3836
|
version = "0.53.0"
|
@@ -2819,9 +3839,15 @@ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
2819
3839
|
|
2820
3840
|
[[package]]
|
2821
3841
|
name = "windows_i686_msvc"
|
2822
|
-
version = "0.
|
3842
|
+
version = "0.48.5"
|
3843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3844
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
3845
|
+
|
3846
|
+
[[package]]
|
3847
|
+
name = "windows_i686_msvc"
|
3848
|
+
version = "0.52.6"
|
2823
3849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2824
|
-
checksum = "
|
3850
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2825
3851
|
|
2826
3852
|
[[package]]
|
2827
3853
|
name = "windows_i686_msvc"
|
@@ -2831,9 +3857,15 @@ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
2831
3857
|
|
2832
3858
|
[[package]]
|
2833
3859
|
name = "windows_x86_64_gnu"
|
2834
|
-
version = "0.
|
3860
|
+
version = "0.48.5"
|
3861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3862
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
3863
|
+
|
3864
|
+
[[package]]
|
3865
|
+
name = "windows_x86_64_gnu"
|
3866
|
+
version = "0.52.6"
|
2835
3867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2836
|
-
checksum = "
|
3868
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2837
3869
|
|
2838
3870
|
[[package]]
|
2839
3871
|
name = "windows_x86_64_gnu"
|
@@ -2843,9 +3875,15 @@ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
2843
3875
|
|
2844
3876
|
[[package]]
|
2845
3877
|
name = "windows_x86_64_gnullvm"
|
2846
|
-
version = "0.
|
3878
|
+
version = "0.48.5"
|
3879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3880
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
3881
|
+
|
3882
|
+
[[package]]
|
3883
|
+
name = "windows_x86_64_gnullvm"
|
3884
|
+
version = "0.52.6"
|
2847
3885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2848
|
-
checksum = "
|
3886
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2849
3887
|
|
2850
3888
|
[[package]]
|
2851
3889
|
name = "windows_x86_64_gnullvm"
|
@@ -2855,9 +3893,15 @@ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
2855
3893
|
|
2856
3894
|
[[package]]
|
2857
3895
|
name = "windows_x86_64_msvc"
|
2858
|
-
version = "0.
|
3896
|
+
version = "0.48.5"
|
3897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3898
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
3899
|
+
|
3900
|
+
[[package]]
|
3901
|
+
name = "windows_x86_64_msvc"
|
3902
|
+
version = "0.52.6"
|
2859
3903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2860
|
-
checksum = "
|
3904
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2861
3905
|
|
2862
3906
|
[[package]]
|
2863
3907
|
name = "windows_x86_64_msvc"
|
@@ -2865,73 +3909,179 @@ version = "0.53.0"
|
|
2865
3909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2866
3910
|
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
2867
3911
|
|
3912
|
+
[[package]]
|
3913
|
+
name = "winnow"
|
3914
|
+
version = "0.7.11"
|
3915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3916
|
+
checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
|
3917
|
+
dependencies = [
|
3918
|
+
"memchr",
|
3919
|
+
]
|
3920
|
+
|
2868
3921
|
[[package]]
|
2869
3922
|
name = "wit-bindgen-rt"
|
2870
3923
|
version = "0.39.0"
|
2871
3924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2872
3925
|
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
2873
3926
|
dependencies = [
|
2874
|
-
"bitflags 2.
|
3927
|
+
"bitflags 2.9.1",
|
3928
|
+
]
|
3929
|
+
|
3930
|
+
[[package]]
|
3931
|
+
name = "writeable"
|
3932
|
+
version = "0.6.1"
|
3933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3934
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
3935
|
+
|
3936
|
+
[[package]]
|
3937
|
+
name = "xattr"
|
3938
|
+
version = "1.5.1"
|
3939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3940
|
+
checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
|
3941
|
+
dependencies = [
|
3942
|
+
"libc",
|
3943
|
+
"rustix",
|
3944
|
+
]
|
3945
|
+
|
3946
|
+
[[package]]
|
3947
|
+
name = "yoke"
|
3948
|
+
version = "0.7.5"
|
3949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3950
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
3951
|
+
dependencies = [
|
3952
|
+
"serde",
|
3953
|
+
"stable_deref_trait",
|
3954
|
+
"yoke-derive 0.7.5",
|
3955
|
+
"zerofrom",
|
2875
3956
|
]
|
2876
3957
|
|
2877
3958
|
[[package]]
|
2878
3959
|
name = "yoke"
|
2879
|
-
version = "0.
|
3960
|
+
version = "0.8.0"
|
2880
3961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2881
|
-
checksum = "
|
3962
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
2882
3963
|
dependencies = [
|
2883
3964
|
"serde",
|
2884
3965
|
"stable_deref_trait",
|
2885
|
-
"yoke-derive",
|
3966
|
+
"yoke-derive 0.8.0",
|
2886
3967
|
"zerofrom",
|
2887
3968
|
]
|
2888
3969
|
|
2889
3970
|
[[package]]
|
2890
3971
|
name = "yoke-derive"
|
2891
|
-
version = "0.7.
|
3972
|
+
version = "0.7.5"
|
2892
3973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2893
|
-
checksum = "
|
3974
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
2894
3975
|
dependencies = [
|
2895
3976
|
"proc-macro2",
|
2896
3977
|
"quote",
|
2897
|
-
"syn
|
3978
|
+
"syn",
|
2898
3979
|
"synstructure",
|
2899
3980
|
]
|
2900
3981
|
|
3982
|
+
[[package]]
|
3983
|
+
name = "yoke-derive"
|
3984
|
+
version = "0.8.0"
|
3985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3986
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
3987
|
+
dependencies = [
|
3988
|
+
"proc-macro2",
|
3989
|
+
"quote",
|
3990
|
+
"syn",
|
3991
|
+
"synstructure",
|
3992
|
+
]
|
3993
|
+
|
3994
|
+
[[package]]
|
3995
|
+
name = "zerocopy"
|
3996
|
+
version = "0.8.26"
|
3997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3998
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
3999
|
+
dependencies = [
|
4000
|
+
"zerocopy-derive",
|
4001
|
+
]
|
4002
|
+
|
4003
|
+
[[package]]
|
4004
|
+
name = "zerocopy-derive"
|
4005
|
+
version = "0.8.26"
|
4006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4007
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
4008
|
+
dependencies = [
|
4009
|
+
"proc-macro2",
|
4010
|
+
"quote",
|
4011
|
+
"syn",
|
4012
|
+
]
|
4013
|
+
|
2901
4014
|
[[package]]
|
2902
4015
|
name = "zerofrom"
|
2903
|
-
version = "0.1.
|
4016
|
+
version = "0.1.6"
|
2904
4017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2905
|
-
checksum = "
|
4018
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
2906
4019
|
dependencies = [
|
2907
4020
|
"zerofrom-derive",
|
2908
4021
|
]
|
2909
4022
|
|
2910
4023
|
[[package]]
|
2911
4024
|
name = "zerofrom-derive"
|
2912
|
-
version = "0.1.
|
4025
|
+
version = "0.1.6"
|
2913
4026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2914
|
-
checksum = "
|
4027
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
2915
4028
|
dependencies = [
|
2916
4029
|
"proc-macro2",
|
2917
4030
|
"quote",
|
2918
|
-
"syn
|
4031
|
+
"syn",
|
2919
4032
|
"synstructure",
|
2920
4033
|
]
|
2921
4034
|
|
2922
4035
|
[[package]]
|
2923
4036
|
name = "zeroize"
|
2924
|
-
version = "1.
|
4037
|
+
version = "1.8.1"
|
4038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4039
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
4040
|
+
|
4041
|
+
[[package]]
|
4042
|
+
name = "zerotrie"
|
4043
|
+
version = "0.2.2"
|
4044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4045
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
4046
|
+
dependencies = [
|
4047
|
+
"displaydoc",
|
4048
|
+
"yoke 0.8.0",
|
4049
|
+
"zerofrom",
|
4050
|
+
]
|
4051
|
+
|
4052
|
+
[[package]]
|
4053
|
+
name = "zerovec"
|
4054
|
+
version = "0.11.2"
|
4055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4056
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
4057
|
+
dependencies = [
|
4058
|
+
"yoke 0.8.0",
|
4059
|
+
"zerofrom",
|
4060
|
+
"zerovec-derive",
|
4061
|
+
]
|
4062
|
+
|
4063
|
+
[[package]]
|
4064
|
+
name = "zerovec-derive"
|
4065
|
+
version = "0.11.1"
|
2925
4066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2926
|
-
checksum = "
|
4067
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
4068
|
+
dependencies = [
|
4069
|
+
"proc-macro2",
|
4070
|
+
"quote",
|
4071
|
+
"syn",
|
4072
|
+
]
|
2927
4073
|
|
2928
4074
|
[[package]]
|
2929
4075
|
name = "zip"
|
2930
|
-
version = "
|
4076
|
+
version = "1.1.4"
|
2931
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2932
|
-
checksum = "
|
4078
|
+
checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164"
|
2933
4079
|
dependencies = [
|
2934
|
-
"
|
4080
|
+
"arbitrary",
|
2935
4081
|
"crc32fast",
|
2936
4082
|
"crossbeam-utils",
|
4083
|
+
"displaydoc",
|
4084
|
+
"indexmap",
|
4085
|
+
"num_enum",
|
4086
|
+
"thiserror 1.0.69",
|
2937
4087
|
]
|