red-candle 0.0.5 → 1.0.0.pre.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +2627 -603
- data/Cargo.toml +4 -0
- data/README.md +224 -6
- data/ext/candle/Cargo.toml +20 -9
- data/ext/candle/extconf.rb +77 -1
- data/ext/candle/src/lib.rs +121 -82
- 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 +9 -3
data/Cargo.lock
CHANGED
@@ -3,73 +3,111 @@
|
|
3
3
|
version = 3
|
4
4
|
|
5
5
|
[[package]]
|
6
|
-
name = "
|
7
|
-
version = "
|
6
|
+
name = "accelerate-src"
|
7
|
+
version = "0.3.2"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "415ed64958754dbe991900f3940677e6a7eefb4d7367afd70d642677b0c7d19d"
|
10
10
|
|
11
11
|
[[package]]
|
12
|
-
name = "
|
13
|
-
version = "
|
12
|
+
name = "addr2line"
|
13
|
+
version = "0.24.2"
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
|
-
checksum = "
|
15
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
16
16
|
dependencies = [
|
17
|
-
"
|
17
|
+
"gimli",
|
18
18
|
]
|
19
19
|
|
20
20
|
[[package]]
|
21
|
-
name = "
|
22
|
-
version = "0.
|
21
|
+
name = "adler2"
|
22
|
+
version = "2.0.1"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
25
|
+
|
26
|
+
[[package]]
|
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
|
-
"
|
27
|
-
"
|
28
|
-
"
|
29
|
-
"
|
30
|
-
"
|
31
|
-
"
|
32
|
+
"cfg-if",
|
33
|
+
"getrandom 0.3.3",
|
34
|
+
"once_cell",
|
35
|
+
"serde",
|
36
|
+
"version_check",
|
37
|
+
"zerocopy",
|
32
38
|
]
|
33
39
|
|
34
40
|
[[package]]
|
35
|
-
name = "
|
36
|
-
version = "1.
|
41
|
+
name = "aho-corasick"
|
42
|
+
version = "1.1.3"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
45
|
+
dependencies = [
|
46
|
+
"memchr",
|
47
|
+
]
|
48
|
+
|
49
|
+
[[package]]
|
50
|
+
name = "android-tzdata"
|
51
|
+
version = "0.1.1"
|
37
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
-
checksum = "
|
53
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
39
54
|
|
40
55
|
[[package]]
|
41
|
-
name = "
|
42
|
-
version = "0.
|
56
|
+
name = "android_system_properties"
|
57
|
+
version = "0.1.5"
|
43
58
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
-
checksum = "
|
59
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
45
60
|
dependencies = [
|
46
|
-
"
|
61
|
+
"libc",
|
47
62
|
]
|
48
63
|
|
49
64
|
[[package]]
|
50
|
-
name = "
|
51
|
-
version = "1.0.
|
65
|
+
name = "anyhow"
|
66
|
+
version = "1.0.98"
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "arbitrary"
|
72
|
+
version = "1.4.1"
|
52
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
-
checksum = "
|
74
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
54
75
|
dependencies = [
|
55
|
-
"
|
76
|
+
"derive_arbitrary",
|
56
77
|
]
|
57
78
|
|
58
79
|
[[package]]
|
59
|
-
name = "
|
60
|
-
version = "
|
80
|
+
name = "atomic-waker"
|
81
|
+
version = "1.1.2"
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
84
|
+
|
85
|
+
[[package]]
|
86
|
+
name = "autocfg"
|
87
|
+
version = "1.5.0"
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
89
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
90
|
+
|
91
|
+
[[package]]
|
92
|
+
name = "backtrace"
|
93
|
+
version = "0.3.75"
|
61
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
-
checksum = "
|
95
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
63
96
|
dependencies = [
|
64
|
-
"
|
65
|
-
"
|
97
|
+
"addr2line",
|
98
|
+
"cfg-if",
|
99
|
+
"libc",
|
100
|
+
"miniz_oxide",
|
101
|
+
"object",
|
102
|
+
"rustc-demangle",
|
103
|
+
"windows-targets 0.52.6",
|
66
104
|
]
|
67
105
|
|
68
106
|
[[package]]
|
69
|
-
name = "
|
70
|
-
version = "
|
107
|
+
name = "base16ct"
|
108
|
+
version = "0.2.0"
|
71
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "
|
110
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
73
111
|
|
74
112
|
[[package]]
|
75
113
|
name = "base64"
|
@@ -79,20 +117,20 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
79
117
|
|
80
118
|
[[package]]
|
81
119
|
name = "base64"
|
82
|
-
version = "0.
|
120
|
+
version = "0.22.1"
|
83
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
-
checksum = "
|
122
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
85
123
|
|
86
124
|
[[package]]
|
87
125
|
name = "bindgen"
|
88
|
-
version = "0.69.
|
126
|
+
version = "0.69.5"
|
89
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
90
|
-
checksum = "
|
128
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
91
129
|
dependencies = [
|
92
|
-
"bitflags 2.
|
130
|
+
"bitflags 2.9.1",
|
93
131
|
"cexpr",
|
94
132
|
"clang-sys",
|
95
|
-
"itertools 0.
|
133
|
+
"itertools 0.12.1",
|
96
134
|
"lazy_static",
|
97
135
|
"lazycell",
|
98
136
|
"proc-macro2",
|
@@ -100,7 +138,18 @@ dependencies = [
|
|
100
138
|
"regex",
|
101
139
|
"rustc-hash",
|
102
140
|
"shlex",
|
103
|
-
"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",
|
104
153
|
]
|
105
154
|
|
106
155
|
[[package]]
|
@@ -109,7 +158,16 @@ version = "0.5.3"
|
|
109
158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
110
159
|
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
111
160
|
dependencies = [
|
112
|
-
"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",
|
113
171
|
]
|
114
172
|
|
115
173
|
[[package]]
|
@@ -118,6 +176,12 @@ version = "0.6.3"
|
|
118
176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
119
177
|
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
120
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
|
+
|
121
185
|
[[package]]
|
122
186
|
name = "bitflags"
|
123
187
|
version = "1.3.2"
|
@@ -126,28 +190,49 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
126
190
|
|
127
191
|
[[package]]
|
128
192
|
name = "bitflags"
|
129
|
-
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"
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
208
|
+
dependencies = [
|
209
|
+
"generic-array",
|
210
|
+
]
|
211
|
+
|
212
|
+
[[package]]
|
213
|
+
name = "bumpalo"
|
214
|
+
version = "3.19.0"
|
130
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
216
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
132
217
|
|
133
218
|
[[package]]
|
134
219
|
name = "bytemuck"
|
135
|
-
version = "1.
|
220
|
+
version = "1.23.1"
|
136
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
-
checksum = "
|
222
|
+
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
|
138
223
|
dependencies = [
|
139
224
|
"bytemuck_derive",
|
140
225
|
]
|
141
226
|
|
142
227
|
[[package]]
|
143
228
|
name = "bytemuck_derive"
|
144
|
-
version = "1.
|
229
|
+
version = "1.9.3"
|
145
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
-
checksum = "
|
231
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
147
232
|
dependencies = [
|
148
233
|
"proc-macro2",
|
149
234
|
"quote",
|
150
|
-
"syn
|
235
|
+
"syn",
|
151
236
|
]
|
152
237
|
|
153
238
|
[[package]]
|
@@ -156,6 +241,12 @@ version = "1.5.0"
|
|
156
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
242
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
158
243
|
|
244
|
+
[[package]]
|
245
|
+
name = "bytes"
|
246
|
+
version = "1.10.1"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
249
|
+
|
159
250
|
[[package]]
|
160
251
|
name = "candle"
|
161
252
|
version = "0.1.0"
|
@@ -166,56 +257,96 @@ dependencies = [
|
|
166
257
|
"half",
|
167
258
|
"hf-hub",
|
168
259
|
"magnus",
|
260
|
+
"rand 0.8.5",
|
261
|
+
"safetensors 0.3.3",
|
262
|
+
"serde",
|
263
|
+
"serde_json",
|
169
264
|
"tokenizers",
|
265
|
+
"tokio",
|
170
266
|
]
|
171
267
|
|
172
268
|
[[package]]
|
173
269
|
name = "candle-core"
|
174
|
-
version = "0.
|
270
|
+
version = "0.9.1"
|
175
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
-
checksum = "
|
272
|
+
checksum = "a9f51e2ecf6efe9737af8f993433c839f956d2b6ed4fd2dd4a7c6d8b0fa667ff"
|
177
273
|
dependencies = [
|
274
|
+
"accelerate-src",
|
178
275
|
"byteorder",
|
179
|
-
"
|
276
|
+
"candle-kernels",
|
277
|
+
"candle-metal-kernels",
|
278
|
+
"cudarc",
|
279
|
+
"gemm 0.17.1",
|
180
280
|
"half",
|
281
|
+
"intel-mkl-src",
|
282
|
+
"libc",
|
181
283
|
"memmap2",
|
284
|
+
"metal 0.27.0",
|
182
285
|
"num-traits",
|
183
286
|
"num_cpus",
|
184
|
-
"rand",
|
287
|
+
"rand 0.9.1",
|
185
288
|
"rand_distr",
|
186
289
|
"rayon",
|
187
|
-
"safetensors",
|
188
|
-
"thiserror",
|
189
|
-
"
|
290
|
+
"safetensors 0.4.5",
|
291
|
+
"thiserror 1.0.69",
|
292
|
+
"ug",
|
293
|
+
"ug-cuda",
|
294
|
+
"ug-metal",
|
295
|
+
"yoke 0.7.5",
|
190
296
|
"zip",
|
191
297
|
]
|
192
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
|
+
|
193
321
|
[[package]]
|
194
322
|
name = "candle-nn"
|
195
|
-
version = "0.
|
323
|
+
version = "0.9.1"
|
196
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
197
|
-
checksum = "
|
325
|
+
checksum = "c1980d53280c8f9e2c6cbe1785855d7ff8010208b46e21252b978badf13ad69d"
|
198
326
|
dependencies = [
|
199
327
|
"candle-core",
|
328
|
+
"candle-metal-kernels",
|
200
329
|
"half",
|
330
|
+
"metal 0.27.0",
|
201
331
|
"num-traits",
|
202
332
|
"rayon",
|
203
|
-
"safetensors",
|
333
|
+
"safetensors 0.4.5",
|
204
334
|
"serde",
|
205
|
-
"thiserror",
|
335
|
+
"thiserror 1.0.69",
|
206
336
|
]
|
207
337
|
|
208
338
|
[[package]]
|
209
339
|
name = "candle-transformers"
|
210
|
-
version = "0.
|
340
|
+
version = "0.9.1"
|
211
341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
-
checksum = "
|
342
|
+
checksum = "186cb80045dbe47e0b387ea6d3e906f02fb3056297080d9922984c90e90a72b0"
|
213
343
|
dependencies = [
|
214
344
|
"byteorder",
|
215
345
|
"candle-core",
|
216
346
|
"candle-nn",
|
347
|
+
"fancy-regex 0.13.0",
|
217
348
|
"num-traits",
|
218
|
-
"rand",
|
349
|
+
"rand 0.9.1",
|
219
350
|
"rayon",
|
220
351
|
"serde",
|
221
352
|
"serde_json",
|
@@ -223,11 +354,23 @@ dependencies = [
|
|
223
354
|
"tracing",
|
224
355
|
]
|
225
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
|
+
|
226
366
|
[[package]]
|
227
367
|
name = "cc"
|
228
|
-
version = "1.
|
368
|
+
version = "1.2.29"
|
229
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
230
|
-
checksum = "
|
370
|
+
checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
|
371
|
+
dependencies = [
|
372
|
+
"shlex",
|
373
|
+
]
|
231
374
|
|
232
375
|
[[package]]
|
233
376
|
name = "cexpr"
|
@@ -240,15 +383,29 @@ dependencies = [
|
|
240
383
|
|
241
384
|
[[package]]
|
242
385
|
name = "cfg-if"
|
243
|
-
version = "1.0.
|
386
|
+
version = "1.0.1"
|
244
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
245
|
-
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
|
+
]
|
246
403
|
|
247
404
|
[[package]]
|
248
405
|
name = "clang-sys"
|
249
|
-
version = "1.
|
406
|
+
version = "1.8.1"
|
250
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
-
checksum = "
|
408
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
252
409
|
dependencies = [
|
253
410
|
"glob",
|
254
411
|
"libc",
|
@@ -256,94 +413,83 @@ dependencies = [
|
|
256
413
|
]
|
257
414
|
|
258
415
|
[[package]]
|
259
|
-
name = "
|
260
|
-
version = "
|
416
|
+
name = "compact_str"
|
417
|
+
version = "0.9.0"
|
261
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
-
checksum = "
|
419
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
263
420
|
dependencies = [
|
264
|
-
"
|
265
|
-
"
|
421
|
+
"castaway",
|
422
|
+
"cfg-if",
|
423
|
+
"itoa",
|
424
|
+
"rustversion",
|
425
|
+
"ryu",
|
426
|
+
"serde",
|
427
|
+
"static_assertions",
|
266
428
|
]
|
267
429
|
|
268
430
|
[[package]]
|
269
|
-
name = "
|
270
|
-
version = "
|
431
|
+
name = "console"
|
432
|
+
version = "0.15.11"
|
271
433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
-
checksum = "
|
434
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
273
435
|
dependencies = [
|
274
|
-
"
|
275
|
-
"
|
276
|
-
"
|
277
|
-
"
|
436
|
+
"encode_unicode",
|
437
|
+
"libc",
|
438
|
+
"once_cell",
|
439
|
+
"unicode-width",
|
440
|
+
"windows-sys 0.59.0",
|
278
441
|
]
|
279
442
|
|
280
443
|
[[package]]
|
281
|
-
name = "
|
282
|
-
version = "
|
444
|
+
name = "core-foundation"
|
445
|
+
version = "0.9.4"
|
283
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
284
|
-
checksum = "
|
447
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
285
448
|
dependencies = [
|
286
|
-
"
|
287
|
-
"
|
288
|
-
"quote",
|
289
|
-
"syn 2.0.52",
|
449
|
+
"core-foundation-sys",
|
450
|
+
"libc",
|
290
451
|
]
|
291
452
|
|
292
453
|
[[package]]
|
293
|
-
name = "
|
294
|
-
version = "0.7
|
295
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
296
|
-
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
297
|
-
|
298
|
-
[[package]]
|
299
|
-
name = "colorchoice"
|
300
|
-
version = "1.0.0"
|
454
|
+
name = "core-foundation-sys"
|
455
|
+
version = "0.8.7"
|
301
456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
-
checksum = "
|
457
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
303
458
|
|
304
459
|
[[package]]
|
305
|
-
name = "
|
306
|
-
version = "0.
|
460
|
+
name = "core-graphics-types"
|
461
|
+
version = "0.1.3"
|
307
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
-
checksum = "
|
463
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
309
464
|
dependencies = [
|
310
|
-
"
|
311
|
-
"
|
465
|
+
"bitflags 1.3.2",
|
466
|
+
"core-foundation",
|
312
467
|
"libc",
|
313
|
-
"unicode-width",
|
314
|
-
"windows-sys 0.52.0",
|
315
468
|
]
|
316
469
|
|
317
470
|
[[package]]
|
318
|
-
name = "
|
319
|
-
version = "0.
|
471
|
+
name = "cpufeatures"
|
472
|
+
version = "0.2.17"
|
320
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
321
|
-
checksum = "
|
474
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
322
475
|
dependencies = [
|
323
|
-
"core-foundation-sys",
|
324
476
|
"libc",
|
325
477
|
]
|
326
478
|
|
327
|
-
[[package]]
|
328
|
-
name = "core-foundation-sys"
|
329
|
-
version = "0.8.6"
|
330
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
331
|
-
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
332
|
-
|
333
479
|
[[package]]
|
334
480
|
name = "crc32fast"
|
335
|
-
version = "1.4.
|
481
|
+
version = "1.4.2"
|
336
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
-
checksum = "
|
483
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
338
484
|
dependencies = [
|
339
485
|
"cfg-if",
|
340
486
|
]
|
341
487
|
|
342
488
|
[[package]]
|
343
489
|
name = "crossbeam-deque"
|
344
|
-
version = "0.8.
|
490
|
+
version = "0.8.6"
|
345
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
346
|
-
checksum = "
|
492
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
347
493
|
dependencies = [
|
348
494
|
"crossbeam-epoch",
|
349
495
|
"crossbeam-utils",
|
@@ -360,21 +506,41 @@ dependencies = [
|
|
360
506
|
|
361
507
|
[[package]]
|
362
508
|
name = "crossbeam-utils"
|
363
|
-
version = "0.8.
|
509
|
+
version = "0.8.21"
|
364
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
-
checksum = "
|
511
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
366
512
|
|
367
513
|
[[package]]
|
368
514
|
name = "crunchy"
|
369
|
-
version = "0.2.
|
515
|
+
version = "0.2.4"
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
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"
|
370
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
|
-
checksum = "
|
533
|
+
checksum = "17200eb07e7d85a243aa1bf4569a7aa998385ba98d14833973a817a63cc86e92"
|
534
|
+
dependencies = [
|
535
|
+
"half",
|
536
|
+
"libloading",
|
537
|
+
]
|
372
538
|
|
373
539
|
[[package]]
|
374
540
|
name = "darling"
|
375
|
-
version = "0.
|
541
|
+
version = "0.20.11"
|
376
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
377
|
-
checksum = "
|
543
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
378
544
|
dependencies = [
|
379
545
|
"darling_core",
|
380
546
|
"darling_macro",
|
@@ -382,67 +548,106 @@ dependencies = [
|
|
382
548
|
|
383
549
|
[[package]]
|
384
550
|
name = "darling_core"
|
385
|
-
version = "0.
|
551
|
+
version = "0.20.11"
|
386
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
387
|
-
checksum = "
|
553
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
388
554
|
dependencies = [
|
389
555
|
"fnv",
|
390
556
|
"ident_case",
|
391
557
|
"proc-macro2",
|
392
558
|
"quote",
|
393
|
-
"strsim
|
394
|
-
"syn
|
559
|
+
"strsim",
|
560
|
+
"syn",
|
395
561
|
]
|
396
562
|
|
397
563
|
[[package]]
|
398
564
|
name = "darling_macro"
|
399
|
-
version = "0.
|
565
|
+
version = "0.20.11"
|
400
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
-
checksum = "
|
567
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
402
568
|
dependencies = [
|
403
569
|
"darling_core",
|
404
570
|
"quote",
|
405
|
-
"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",
|
406
592
|
]
|
407
593
|
|
408
594
|
[[package]]
|
409
595
|
name = "derive_builder"
|
410
|
-
version = "0.
|
596
|
+
version = "0.20.2"
|
411
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
-
checksum = "
|
598
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
413
599
|
dependencies = [
|
414
600
|
"derive_builder_macro",
|
415
601
|
]
|
416
602
|
|
417
603
|
[[package]]
|
418
604
|
name = "derive_builder_core"
|
419
|
-
version = "0.
|
605
|
+
version = "0.20.2"
|
420
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
421
|
-
checksum = "
|
607
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
422
608
|
dependencies = [
|
423
609
|
"darling",
|
424
610
|
"proc-macro2",
|
425
611
|
"quote",
|
426
|
-
"syn
|
612
|
+
"syn",
|
427
613
|
]
|
428
614
|
|
429
615
|
[[package]]
|
430
616
|
name = "derive_builder_macro"
|
431
|
-
version = "0.
|
617
|
+
version = "0.20.2"
|
432
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
-
checksum = "
|
619
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
434
620
|
dependencies = [
|
435
621
|
"derive_builder_core",
|
436
|
-
"syn
|
622
|
+
"syn",
|
437
623
|
]
|
438
624
|
|
439
625
|
[[package]]
|
440
|
-
name = "
|
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"
|
441
637
|
version = "5.0.1"
|
442
638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "
|
639
|
+
checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
|
640
|
+
dependencies = [
|
641
|
+
"dirs-sys 0.4.1",
|
642
|
+
]
|
643
|
+
|
644
|
+
[[package]]
|
645
|
+
name = "dirs"
|
646
|
+
version = "6.0.0"
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
648
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
444
649
|
dependencies = [
|
445
|
-
"dirs-sys",
|
650
|
+
"dirs-sys 0.5.0",
|
446
651
|
]
|
447
652
|
|
448
653
|
[[package]]
|
@@ -453,10 +658,33 @@ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
453
658
|
dependencies = [
|
454
659
|
"libc",
|
455
660
|
"option-ext",
|
456
|
-
"redox_users",
|
661
|
+
"redox_users 0.4.6",
|
457
662
|
"windows-sys 0.48.0",
|
458
663
|
]
|
459
664
|
|
665
|
+
[[package]]
|
666
|
+
name = "dirs-sys"
|
667
|
+
version = "0.5.0"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
670
|
+
dependencies = [
|
671
|
+
"libc",
|
672
|
+
"option-ext",
|
673
|
+
"redox_users 0.5.0",
|
674
|
+
"windows-sys 0.60.2",
|
675
|
+
]
|
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
|
+
|
460
688
|
[[package]]
|
461
689
|
name = "dyn-stack"
|
462
690
|
version = "0.10.0"
|
@@ -467,38 +695,62 @@ dependencies = [
|
|
467
695
|
"reborrow",
|
468
696
|
]
|
469
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
|
+
|
470
707
|
[[package]]
|
471
708
|
name = "either"
|
472
|
-
version = "1.
|
709
|
+
version = "1.15.0"
|
473
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
-
checksum = "
|
711
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
475
712
|
|
476
713
|
[[package]]
|
477
714
|
name = "encode_unicode"
|
478
|
-
version = "0.
|
715
|
+
version = "1.0.0"
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
718
|
+
|
719
|
+
[[package]]
|
720
|
+
name = "encoding_rs"
|
721
|
+
version = "0.8.35"
|
479
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
-
checksum = "
|
723
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
724
|
+
dependencies = [
|
725
|
+
"cfg-if",
|
726
|
+
]
|
481
727
|
|
482
728
|
[[package]]
|
483
729
|
name = "enum-as-inner"
|
484
|
-
version = "0.6.
|
730
|
+
version = "0.6.1"
|
485
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
486
|
-
checksum = "
|
732
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
487
733
|
dependencies = [
|
488
734
|
"heck",
|
489
735
|
"proc-macro2",
|
490
736
|
"quote",
|
491
|
-
"syn
|
737
|
+
"syn",
|
492
738
|
]
|
493
739
|
|
740
|
+
[[package]]
|
741
|
+
name = "equivalent"
|
742
|
+
version = "1.0.2"
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
744
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
745
|
+
|
494
746
|
[[package]]
|
495
747
|
name = "errno"
|
496
|
-
version = "0.3.
|
748
|
+
version = "0.3.13"
|
497
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
-
checksum = "
|
750
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
499
751
|
dependencies = [
|
500
752
|
"libc",
|
501
|
-
"windows-sys 0.
|
753
|
+
"windows-sys 0.60.2",
|
502
754
|
]
|
503
755
|
|
504
756
|
[[package]]
|
@@ -516,40 +768,84 @@ version = "0.13.0"
|
|
516
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
517
769
|
checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
|
518
770
|
dependencies = [
|
519
|
-
"bit-set",
|
771
|
+
"bit-set 0.5.3",
|
520
772
|
"regex-automata",
|
521
773
|
"regex-syntax",
|
522
774
|
]
|
523
775
|
|
524
776
|
[[package]]
|
525
|
-
name = "
|
526
|
-
version = "
|
527
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
528
|
-
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
529
|
-
|
530
|
-
[[package]]
|
531
|
-
name = "flate2"
|
532
|
-
version = "1.0.28"
|
777
|
+
name = "fancy-regex"
|
778
|
+
version = "0.14.0"
|
533
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
-
checksum = "
|
780
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
535
781
|
dependencies = [
|
536
|
-
"
|
537
|
-
"
|
782
|
+
"bit-set 0.8.0",
|
783
|
+
"regex-automata",
|
784
|
+
"regex-syntax",
|
538
785
|
]
|
539
786
|
|
540
787
|
[[package]]
|
541
|
-
name = "
|
542
|
-
version = "
|
788
|
+
name = "fastrand"
|
789
|
+
version = "2.3.0"
|
543
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
544
|
-
checksum = "
|
791
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
545
792
|
|
546
793
|
[[package]]
|
547
|
-
name = "
|
548
|
-
version = "0.
|
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
|
+
]
|
804
|
+
|
805
|
+
[[package]]
|
806
|
+
name = "flate2"
|
807
|
+
version = "1.1.2"
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
810
|
+
dependencies = [
|
811
|
+
"crc32fast",
|
812
|
+
"miniz_oxide",
|
813
|
+
]
|
814
|
+
|
815
|
+
[[package]]
|
816
|
+
name = "fnv"
|
817
|
+
version = "1.0.7"
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
820
|
+
|
821
|
+
[[package]]
|
822
|
+
name = "foreign-types"
|
823
|
+
version = "0.3.2"
|
549
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
550
825
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
551
826
|
dependencies = [
|
552
|
-
"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",
|
553
849
|
]
|
554
850
|
|
555
851
|
[[package]]
|
@@ -558,6 +854,12 @@ version = "0.1.1"
|
|
558
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
559
855
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
560
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
|
+
|
561
863
|
[[package]]
|
562
864
|
name = "form_urlencoded"
|
563
865
|
version = "1.2.1"
|
@@ -567,23 +869,132 @@ dependencies = [
|
|
567
869
|
"percent-encoding",
|
568
870
|
]
|
569
871
|
|
872
|
+
[[package]]
|
873
|
+
name = "futures"
|
874
|
+
version = "0.3.31"
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
877
|
+
dependencies = [
|
878
|
+
"futures-channel",
|
879
|
+
"futures-core",
|
880
|
+
"futures-executor",
|
881
|
+
"futures-io",
|
882
|
+
"futures-sink",
|
883
|
+
"futures-task",
|
884
|
+
"futures-util",
|
885
|
+
]
|
886
|
+
|
887
|
+
[[package]]
|
888
|
+
name = "futures-channel"
|
889
|
+
version = "0.3.31"
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
892
|
+
dependencies = [
|
893
|
+
"futures-core",
|
894
|
+
"futures-sink",
|
895
|
+
]
|
896
|
+
|
897
|
+
[[package]]
|
898
|
+
name = "futures-core"
|
899
|
+
version = "0.3.31"
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
901
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
902
|
+
|
903
|
+
[[package]]
|
904
|
+
name = "futures-executor"
|
905
|
+
version = "0.3.31"
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
907
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
908
|
+
dependencies = [
|
909
|
+
"futures-core",
|
910
|
+
"futures-task",
|
911
|
+
"futures-util",
|
912
|
+
]
|
913
|
+
|
914
|
+
[[package]]
|
915
|
+
name = "futures-io"
|
916
|
+
version = "0.3.31"
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
918
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
919
|
+
|
920
|
+
[[package]]
|
921
|
+
name = "futures-macro"
|
922
|
+
version = "0.3.31"
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
925
|
+
dependencies = [
|
926
|
+
"proc-macro2",
|
927
|
+
"quote",
|
928
|
+
"syn",
|
929
|
+
]
|
930
|
+
|
931
|
+
[[package]]
|
932
|
+
name = "futures-sink"
|
933
|
+
version = "0.3.31"
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
935
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
936
|
+
|
937
|
+
[[package]]
|
938
|
+
name = "futures-task"
|
939
|
+
version = "0.3.31"
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
941
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
942
|
+
|
943
|
+
[[package]]
|
944
|
+
name = "futures-util"
|
945
|
+
version = "0.3.31"
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
947
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
948
|
+
dependencies = [
|
949
|
+
"futures-channel",
|
950
|
+
"futures-core",
|
951
|
+
"futures-io",
|
952
|
+
"futures-macro",
|
953
|
+
"futures-sink",
|
954
|
+
"futures-task",
|
955
|
+
"memchr",
|
956
|
+
"pin-project-lite",
|
957
|
+
"pin-utils",
|
958
|
+
"slab",
|
959
|
+
]
|
960
|
+
|
570
961
|
[[package]]
|
571
962
|
name = "gemm"
|
572
963
|
version = "0.17.1"
|
573
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
574
965
|
checksum = "6ab24cc62135b40090e31a76a9b2766a501979f3070fa27f689c27ec04377d32"
|
575
966
|
dependencies = [
|
576
|
-
"dyn-stack",
|
577
|
-
"gemm-c32",
|
578
|
-
"gemm-c64",
|
579
|
-
"gemm-common",
|
580
|
-
"gemm-f16",
|
581
|
-
"gemm-f32",
|
582
|
-
"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",
|
583
994
|
"num-complex",
|
584
995
|
"num-traits",
|
585
996
|
"paste",
|
586
|
-
"raw-cpuid",
|
997
|
+
"raw-cpuid 11.5.0",
|
587
998
|
"seq-macro",
|
588
999
|
]
|
589
1000
|
|
@@ -593,12 +1004,27 @@ version = "0.17.1"
|
|
593
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
1005
|
checksum = "b9c030d0b983d1e34a546b86e08f600c11696fde16199f971cd46c12e67512c0"
|
595
1006
|
dependencies = [
|
596
|
-
"dyn-stack",
|
597
|
-
"gemm-common",
|
1007
|
+
"dyn-stack 0.10.0",
|
1008
|
+
"gemm-common 0.17.1",
|
598
1009
|
"num-complex",
|
599
1010
|
"num-traits",
|
600
1011
|
"paste",
|
601
|
-
"raw-cpuid",
|
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",
|
1024
|
+
"num-complex",
|
1025
|
+
"num-traits",
|
1026
|
+
"paste",
|
1027
|
+
"raw-cpuid 11.5.0",
|
602
1028
|
"seq-macro",
|
603
1029
|
]
|
604
1030
|
|
@@ -608,12 +1034,27 @@ version = "0.17.1"
|
|
608
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
1035
|
checksum = "fbb5f2e79fefb9693d18e1066a557b4546cd334b226beadc68b11a8f9431852a"
|
610
1036
|
dependencies = [
|
611
|
-
"dyn-stack",
|
612
|
-
"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",
|
613
1054
|
"num-complex",
|
614
1055
|
"num-traits",
|
615
1056
|
"paste",
|
616
|
-
"raw-cpuid",
|
1057
|
+
"raw-cpuid 11.5.0",
|
617
1058
|
"seq-macro",
|
618
1059
|
]
|
619
1060
|
|
@@ -624,17 +1065,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
1065
|
checksum = "a2e7ea062c987abcd8db95db917b4ffb4ecdfd0668471d8dc54734fdff2354e8"
|
625
1066
|
dependencies = [
|
626
1067
|
"bytemuck",
|
627
|
-
"dyn-stack",
|
1068
|
+
"dyn-stack 0.10.0",
|
1069
|
+
"half",
|
1070
|
+
"num-complex",
|
1071
|
+
"num-traits",
|
1072
|
+
"once_cell",
|
1073
|
+
"paste",
|
1074
|
+
"pulp 0.18.22",
|
1075
|
+
"raw-cpuid 10.7.0",
|
1076
|
+
"rayon",
|
1077
|
+
"seq-macro",
|
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",
|
628
1089
|
"half",
|
1090
|
+
"libm",
|
629
1091
|
"num-complex",
|
630
1092
|
"num-traits",
|
631
1093
|
"once_cell",
|
632
1094
|
"paste",
|
633
|
-
"pulp",
|
634
|
-
"raw-cpuid",
|
1095
|
+
"pulp 0.21.5",
|
1096
|
+
"raw-cpuid 11.5.0",
|
635
1097
|
"rayon",
|
636
1098
|
"seq-macro",
|
637
|
-
"sysctl",
|
1099
|
+
"sysctl 0.6.0",
|
638
1100
|
]
|
639
1101
|
|
640
1102
|
[[package]]
|
@@ -643,14 +1105,32 @@ version = "0.17.1"
|
|
643
1105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
644
1106
|
checksum = "7ca4c06b9b11952071d317604acb332e924e817bd891bec8dfb494168c7cedd4"
|
645
1107
|
dependencies = [
|
646
|
-
"dyn-stack",
|
647
|
-
"gemm-common",
|
648
|
-
"gemm-f32",
|
1108
|
+
"dyn-stack 0.10.0",
|
1109
|
+
"gemm-common 0.17.1",
|
1110
|
+
"gemm-f32 0.17.1",
|
1111
|
+
"half",
|
1112
|
+
"num-complex",
|
1113
|
+
"num-traits",
|
1114
|
+
"paste",
|
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",
|
649
1129
|
"half",
|
650
1130
|
"num-complex",
|
651
1131
|
"num-traits",
|
652
1132
|
"paste",
|
653
|
-
"raw-cpuid",
|
1133
|
+
"raw-cpuid 11.5.0",
|
654
1134
|
"rayon",
|
655
1135
|
"seq-macro",
|
656
1136
|
]
|
@@ -661,12 +1141,27 @@ version = "0.17.1"
|
|
661
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
1142
|
checksum = "e9a69f51aaefbd9cf12d18faf273d3e982d9d711f60775645ed5c8047b4ae113"
|
663
1143
|
dependencies = [
|
664
|
-
"dyn-stack",
|
665
|
-
"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",
|
666
1161
|
"num-complex",
|
667
1162
|
"num-traits",
|
668
1163
|
"paste",
|
669
|
-
"raw-cpuid",
|
1164
|
+
"raw-cpuid 11.5.0",
|
670
1165
|
"seq-macro",
|
671
1166
|
]
|
672
1167
|
|
@@ -676,199 +1171,591 @@ version = "0.17.1"
|
|
676
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
677
1172
|
checksum = "aa397a48544fadf0b81ec8741e5c0fba0043008113f71f2034def1935645d2b0"
|
678
1173
|
dependencies = [
|
679
|
-
"dyn-stack",
|
680
|
-
"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",
|
681
1191
|
"num-complex",
|
682
1192
|
"num-traits",
|
683
1193
|
"paste",
|
684
|
-
"raw-cpuid",
|
1194
|
+
"raw-cpuid 11.5.0",
|
685
1195
|
"seq-macro",
|
686
1196
|
]
|
687
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
|
+
|
1208
|
+
[[package]]
|
1209
|
+
name = "getrandom"
|
1210
|
+
version = "0.2.16"
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1212
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
1213
|
+
dependencies = [
|
1214
|
+
"cfg-if",
|
1215
|
+
"libc",
|
1216
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
1217
|
+
]
|
1218
|
+
|
688
1219
|
[[package]]
|
689
1220
|
name = "getrandom"
|
690
|
-
version = "0.
|
1221
|
+
version = "0.3.3"
|
691
1222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
-
checksum = "
|
1223
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
693
1224
|
dependencies = [
|
694
1225
|
"cfg-if",
|
695
1226
|
"libc",
|
696
|
-
"
|
1227
|
+
"r-efi",
|
1228
|
+
"wasi 0.14.2+wasi-0.2.4",
|
697
1229
|
]
|
698
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
|
+
|
1243
|
+
[[package]]
|
1244
|
+
name = "gimli"
|
1245
|
+
version = "0.31.1"
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1247
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
1248
|
+
|
699
1249
|
[[package]]
|
700
1250
|
name = "glob"
|
701
|
-
version = "0.3.
|
1251
|
+
version = "0.3.2"
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1253
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
1254
|
+
|
1255
|
+
[[package]]
|
1256
|
+
name = "h2"
|
1257
|
+
version = "0.4.11"
|
702
1258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
703
|
-
checksum = "
|
1259
|
+
checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
|
1260
|
+
dependencies = [
|
1261
|
+
"atomic-waker",
|
1262
|
+
"bytes",
|
1263
|
+
"fnv",
|
1264
|
+
"futures-core",
|
1265
|
+
"futures-sink",
|
1266
|
+
"http",
|
1267
|
+
"indexmap",
|
1268
|
+
"slab",
|
1269
|
+
"tokio",
|
1270
|
+
"tokio-util",
|
1271
|
+
"tracing",
|
1272
|
+
]
|
704
1273
|
|
705
1274
|
[[package]]
|
706
1275
|
name = "half"
|
707
|
-
version = "2.
|
1276
|
+
version = "2.6.0"
|
708
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
-
checksum = "
|
1278
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
710
1279
|
dependencies = [
|
711
1280
|
"bytemuck",
|
712
1281
|
"cfg-if",
|
713
1282
|
"crunchy",
|
714
1283
|
"num-traits",
|
715
|
-
"rand",
|
1284
|
+
"rand 0.9.1",
|
716
1285
|
"rand_distr",
|
717
1286
|
]
|
718
1287
|
|
1288
|
+
[[package]]
|
1289
|
+
name = "hashbrown"
|
1290
|
+
version = "0.15.4"
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1292
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
1293
|
+
|
719
1294
|
[[package]]
|
720
1295
|
name = "heck"
|
721
|
-
version = "0.
|
1296
|
+
version = "0.5.0"
|
722
1297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
723
|
-
checksum = "
|
1298
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
724
1299
|
|
725
1300
|
[[package]]
|
726
1301
|
name = "hermit-abi"
|
727
|
-
version = "0.
|
1302
|
+
version = "0.5.2"
|
728
1303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
729
|
-
checksum = "
|
1304
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
730
1305
|
|
731
1306
|
[[package]]
|
732
1307
|
name = "hf-hub"
|
733
|
-
version = "0.3
|
1308
|
+
version = "0.4.3"
|
734
1309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
-
checksum = "
|
1310
|
+
checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
|
736
1311
|
dependencies = [
|
737
1312
|
"dirs",
|
1313
|
+
"futures",
|
1314
|
+
"http",
|
738
1315
|
"indicatif",
|
1316
|
+
"libc",
|
739
1317
|
"log",
|
740
1318
|
"native-tls",
|
741
|
-
"
|
1319
|
+
"num_cpus",
|
1320
|
+
"rand 0.9.1",
|
1321
|
+
"reqwest",
|
742
1322
|
"serde",
|
743
1323
|
"serde_json",
|
744
|
-
"thiserror",
|
1324
|
+
"thiserror 2.0.12",
|
1325
|
+
"tokio",
|
745
1326
|
"ureq",
|
1327
|
+
"windows-sys 0.60.2",
|
746
1328
|
]
|
747
1329
|
|
748
1330
|
[[package]]
|
749
|
-
name = "
|
750
|
-
version = "1.
|
1331
|
+
name = "http"
|
1332
|
+
version = "1.3.1"
|
751
1333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
-
checksum = "
|
1334
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
1335
|
+
dependencies = [
|
1336
|
+
"bytes",
|
1337
|
+
"fnv",
|
1338
|
+
"itoa",
|
1339
|
+
]
|
753
1340
|
|
754
1341
|
[[package]]
|
755
|
-
name = "
|
756
|
-
version = "0.
|
1342
|
+
name = "http-body"
|
1343
|
+
version = "1.0.1"
|
757
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
-
checksum = "
|
1345
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
759
1346
|
dependencies = [
|
760
|
-
"
|
761
|
-
"
|
1347
|
+
"bytes",
|
1348
|
+
"http",
|
762
1349
|
]
|
763
1350
|
|
764
1351
|
[[package]]
|
765
|
-
name = "
|
766
|
-
version = "0.
|
1352
|
+
name = "http-body-util"
|
1353
|
+
version = "0.1.3"
|
767
1354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
768
|
-
checksum = "
|
1355
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
769
1356
|
dependencies = [
|
770
|
-
"
|
771
|
-
"
|
772
|
-
"
|
773
|
-
"
|
774
|
-
"
|
1357
|
+
"bytes",
|
1358
|
+
"futures-core",
|
1359
|
+
"http",
|
1360
|
+
"http-body",
|
1361
|
+
"pin-project-lite",
|
775
1362
|
]
|
776
1363
|
|
777
1364
|
[[package]]
|
778
|
-
name = "
|
779
|
-
version = "
|
1365
|
+
name = "httparse"
|
1366
|
+
version = "1.10.1"
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
1369
|
+
|
1370
|
+
[[package]]
|
1371
|
+
name = "hyper"
|
1372
|
+
version = "1.6.0"
|
780
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
781
|
-
checksum = "
|
1374
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
782
1375
|
dependencies = [
|
783
|
-
"
|
1376
|
+
"bytes",
|
1377
|
+
"futures-channel",
|
1378
|
+
"futures-util",
|
1379
|
+
"h2",
|
1380
|
+
"http",
|
1381
|
+
"http-body",
|
1382
|
+
"httparse",
|
1383
|
+
"itoa",
|
1384
|
+
"pin-project-lite",
|
1385
|
+
"smallvec",
|
1386
|
+
"tokio",
|
1387
|
+
"want",
|
784
1388
|
]
|
785
1389
|
|
786
1390
|
[[package]]
|
787
|
-
name = "
|
788
|
-
version = "0.
|
1391
|
+
name = "hyper-rustls"
|
1392
|
+
version = "0.27.7"
|
789
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
790
|
-
checksum = "
|
1394
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
791
1395
|
dependencies = [
|
792
|
-
"
|
1396
|
+
"http",
|
1397
|
+
"hyper",
|
1398
|
+
"hyper-util",
|
1399
|
+
"rustls",
|
1400
|
+
"rustls-pki-types",
|
1401
|
+
"tokio",
|
1402
|
+
"tokio-rustls",
|
1403
|
+
"tower-service",
|
793
1404
|
]
|
794
1405
|
|
795
1406
|
[[package]]
|
796
|
-
name = "
|
797
|
-
version = "0.
|
1407
|
+
name = "hyper-tls"
|
1408
|
+
version = "0.6.0"
|
798
1409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
799
|
-
checksum = "
|
1410
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
800
1411
|
dependencies = [
|
801
|
-
"
|
1412
|
+
"bytes",
|
1413
|
+
"http-body-util",
|
1414
|
+
"hyper",
|
1415
|
+
"hyper-util",
|
1416
|
+
"native-tls",
|
1417
|
+
"tokio",
|
1418
|
+
"tokio-native-tls",
|
1419
|
+
"tower-service",
|
802
1420
|
]
|
803
1421
|
|
804
1422
|
[[package]]
|
805
|
-
name = "
|
806
|
-
version = "1.
|
1423
|
+
name = "hyper-util"
|
1424
|
+
version = "0.1.14"
|
807
1425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
808
|
-
checksum = "
|
1426
|
+
checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
|
1427
|
+
dependencies = [
|
1428
|
+
"base64 0.22.1",
|
1429
|
+
"bytes",
|
1430
|
+
"futures-channel",
|
1431
|
+
"futures-core",
|
1432
|
+
"futures-util",
|
1433
|
+
"http",
|
1434
|
+
"http-body",
|
1435
|
+
"hyper",
|
1436
|
+
"ipnet",
|
1437
|
+
"libc",
|
1438
|
+
"percent-encoding",
|
1439
|
+
"pin-project-lite",
|
1440
|
+
"socket2",
|
1441
|
+
"system-configuration",
|
1442
|
+
"tokio",
|
1443
|
+
"tower-service",
|
1444
|
+
"tracing",
|
1445
|
+
"windows-registry",
|
1446
|
+
]
|
809
1447
|
|
810
1448
|
[[package]]
|
811
|
-
name = "
|
812
|
-
version = "1.
|
1449
|
+
name = "iana-time-zone"
|
1450
|
+
version = "0.1.63"
|
813
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
814
|
-
checksum = "
|
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
|
+
]
|
815
1462
|
|
816
1463
|
[[package]]
|
817
|
-
name = "
|
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
|
+
|
1558
|
+
[[package]]
|
1559
|
+
name = "ident_case"
|
1560
|
+
version = "1.0.1"
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1562
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
1563
|
+
|
1564
|
+
[[package]]
|
1565
|
+
name = "idna"
|
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"
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1579
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
1580
|
+
dependencies = [
|
1581
|
+
"icu_normalizer",
|
1582
|
+
"icu_properties",
|
1583
|
+
]
|
1584
|
+
|
1585
|
+
[[package]]
|
1586
|
+
name = "indexmap"
|
1587
|
+
version = "2.10.0"
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1589
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
1590
|
+
dependencies = [
|
1591
|
+
"equivalent",
|
1592
|
+
"hashbrown",
|
1593
|
+
]
|
1594
|
+
|
1595
|
+
[[package]]
|
1596
|
+
name = "indicatif"
|
1597
|
+
version = "0.17.11"
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1599
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
1600
|
+
dependencies = [
|
1601
|
+
"console",
|
1602
|
+
"number_prefix",
|
1603
|
+
"portable-atomic",
|
1604
|
+
"unicode-width",
|
1605
|
+
"web-time",
|
1606
|
+
]
|
1607
|
+
|
1608
|
+
[[package]]
|
1609
|
+
name = "intel-mkl-src"
|
1610
|
+
version = "0.8.1"
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1612
|
+
checksum = "2ee70586cd5b3e772a8739a1bd43eaa90d4f4bf0fb2a4edc202e979937ee7f5e"
|
1613
|
+
dependencies = [
|
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",
|
1628
|
+
]
|
1629
|
+
|
1630
|
+
[[package]]
|
1631
|
+
name = "io-uring"
|
1632
|
+
version = "0.7.8"
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1634
|
+
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
|
1635
|
+
dependencies = [
|
1636
|
+
"bitflags 2.9.1",
|
1637
|
+
"cfg-if",
|
1638
|
+
"libc",
|
1639
|
+
]
|
1640
|
+
|
1641
|
+
[[package]]
|
1642
|
+
name = "ipnet"
|
1643
|
+
version = "2.11.0"
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1645
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
1646
|
+
|
1647
|
+
[[package]]
|
1648
|
+
name = "iri-string"
|
1649
|
+
version = "0.7.8"
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1651
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
1652
|
+
dependencies = [
|
1653
|
+
"memchr",
|
1654
|
+
"serde",
|
1655
|
+
]
|
1656
|
+
|
1657
|
+
[[package]]
|
1658
|
+
name = "itertools"
|
1659
|
+
version = "0.12.1"
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1661
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
1662
|
+
dependencies = [
|
1663
|
+
"either",
|
1664
|
+
]
|
1665
|
+
|
1666
|
+
[[package]]
|
1667
|
+
name = "itertools"
|
1668
|
+
version = "0.14.0"
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1670
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
1671
|
+
dependencies = [
|
1672
|
+
"either",
|
1673
|
+
]
|
1674
|
+
|
1675
|
+
[[package]]
|
1676
|
+
name = "itoa"
|
1677
|
+
version = "1.0.15"
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1679
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1680
|
+
|
1681
|
+
[[package]]
|
1682
|
+
name = "js-sys"
|
1683
|
+
version = "0.3.77"
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1685
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
1686
|
+
dependencies = [
|
1687
|
+
"once_cell",
|
1688
|
+
"wasm-bindgen",
|
1689
|
+
]
|
1690
|
+
|
1691
|
+
[[package]]
|
1692
|
+
name = "lazy_static"
|
1693
|
+
version = "1.5.0"
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1695
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
1696
|
+
|
1697
|
+
[[package]]
|
1698
|
+
name = "lazycell"
|
818
1699
|
version = "1.3.0"
|
819
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
820
1701
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
821
1702
|
|
822
1703
|
[[package]]
|
823
1704
|
name = "libc"
|
824
|
-
version = "0.2.
|
1705
|
+
version = "0.2.174"
|
825
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
826
|
-
checksum = "
|
1707
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
827
1708
|
|
828
1709
|
[[package]]
|
829
1710
|
name = "libloading"
|
830
|
-
version = "0.8.
|
1711
|
+
version = "0.8.8"
|
831
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
832
|
-
checksum = "
|
1713
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
833
1714
|
dependencies = [
|
834
1715
|
"cfg-if",
|
835
|
-
"windows-targets 0.
|
1716
|
+
"windows-targets 0.53.2",
|
836
1717
|
]
|
837
1718
|
|
838
1719
|
[[package]]
|
839
1720
|
name = "libm"
|
840
|
-
version = "0.2.
|
1721
|
+
version = "0.2.15"
|
841
1722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
-
checksum = "
|
1723
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
843
1724
|
|
844
1725
|
[[package]]
|
845
1726
|
name = "libredox"
|
846
|
-
version = "0.
|
1727
|
+
version = "0.1.4"
|
847
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
-
checksum = "
|
1729
|
+
checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638"
|
849
1730
|
dependencies = [
|
850
|
-
"bitflags 2.
|
1731
|
+
"bitflags 2.9.1",
|
851
1732
|
"libc",
|
852
1733
|
"redox_syscall",
|
853
1734
|
]
|
854
1735
|
|
855
1736
|
[[package]]
|
856
1737
|
name = "linux-raw-sys"
|
857
|
-
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"
|
858
1745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
859
|
-
checksum = "
|
1746
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
860
1747
|
|
861
1748
|
[[package]]
|
862
1749
|
name = "log"
|
863
|
-
version = "0.4.
|
1750
|
+
version = "0.4.27"
|
864
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "
|
1752
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
866
1753
|
|
867
1754
|
[[package]]
|
868
1755
|
name = "macro_rules_attribute"
|
869
|
-
version = "0.2.
|
1756
|
+
version = "0.2.2"
|
870
1757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
871
|
-
checksum = "
|
1758
|
+
checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
|
872
1759
|
dependencies = [
|
873
1760
|
"macro_rules_attribute-proc_macro",
|
874
1761
|
"paste",
|
@@ -876,15 +1763,15 @@ dependencies = [
|
|
876
1763
|
|
877
1764
|
[[package]]
|
878
1765
|
name = "macro_rules_attribute-proc_macro"
|
879
|
-
version = "0.2.
|
1766
|
+
version = "0.2.2"
|
880
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
881
|
-
checksum = "
|
1768
|
+
checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
|
882
1769
|
|
883
1770
|
[[package]]
|
884
1771
|
name = "magnus"
|
885
|
-
version = "0.
|
1772
|
+
version = "0.7.1"
|
886
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
887
|
-
checksum = "
|
1774
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
888
1775
|
dependencies = [
|
889
1776
|
"magnus-macros",
|
890
1777
|
"rb-sys",
|
@@ -900,25 +1787,70 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
900
1787
|
dependencies = [
|
901
1788
|
"proc-macro2",
|
902
1789
|
"quote",
|
903
|
-
"syn
|
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",
|
904
1800
|
]
|
905
1801
|
|
906
1802
|
[[package]]
|
907
1803
|
name = "memchr"
|
908
|
-
version = "2.7.
|
1804
|
+
version = "2.7.5"
|
909
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
-
checksum = "
|
1806
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
911
1807
|
|
912
1808
|
[[package]]
|
913
1809
|
name = "memmap2"
|
914
|
-
version = "0.9.
|
1810
|
+
version = "0.9.5"
|
915
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
-
checksum = "
|
1812
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
917
1813
|
dependencies = [
|
918
1814
|
"libc",
|
919
1815
|
"stable_deref_trait",
|
920
1816
|
]
|
921
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
|
+
|
1848
|
+
[[package]]
|
1849
|
+
name = "mime"
|
1850
|
+
version = "0.3.17"
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1852
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
1853
|
+
|
922
1854
|
[[package]]
|
923
1855
|
name = "minimal-lexical"
|
924
1856
|
version = "0.2.1"
|
@@ -927,18 +1859,29 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
927
1859
|
|
928
1860
|
[[package]]
|
929
1861
|
name = "miniz_oxide"
|
930
|
-
version = "0.
|
1862
|
+
version = "0.8.9"
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1864
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
1865
|
+
dependencies = [
|
1866
|
+
"adler2",
|
1867
|
+
]
|
1868
|
+
|
1869
|
+
[[package]]
|
1870
|
+
name = "mio"
|
1871
|
+
version = "1.0.4"
|
931
1872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
932
|
-
checksum = "
|
1873
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
933
1874
|
dependencies = [
|
934
|
-
"
|
1875
|
+
"libc",
|
1876
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
1877
|
+
"windows-sys 0.59.0",
|
935
1878
|
]
|
936
1879
|
|
937
1880
|
[[package]]
|
938
1881
|
name = "monostate"
|
939
|
-
version = "0.1.
|
1882
|
+
version = "0.1.14"
|
940
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
941
|
-
checksum = "
|
1884
|
+
checksum = "aafe1be9d0c75642e3e50fedc7ecadf1ef1cbce6eb66462153fc44245343fbee"
|
942
1885
|
dependencies = [
|
943
1886
|
"monostate-impl",
|
944
1887
|
"serde",
|
@@ -946,22 +1889,21 @@ dependencies = [
|
|
946
1889
|
|
947
1890
|
[[package]]
|
948
1891
|
name = "monostate-impl"
|
949
|
-
version = "0.1.
|
1892
|
+
version = "0.1.14"
|
950
1893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
951
|
-
checksum = "
|
1894
|
+
checksum = "c402a4092d5e204f32c9e155431046831fa712637043c58cb73bc6bc6c9663b5"
|
952
1895
|
dependencies = [
|
953
1896
|
"proc-macro2",
|
954
1897
|
"quote",
|
955
|
-
"syn
|
1898
|
+
"syn",
|
956
1899
|
]
|
957
1900
|
|
958
1901
|
[[package]]
|
959
1902
|
name = "native-tls"
|
960
|
-
version = "0.2.
|
1903
|
+
version = "0.2.14"
|
961
1904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
962
|
-
checksum = "
|
1905
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
963
1906
|
dependencies = [
|
964
|
-
"lazy_static",
|
965
1907
|
"libc",
|
966
1908
|
"log",
|
967
1909
|
"openssl",
|
@@ -984,125 +1926,272 @@ dependencies = [
|
|
984
1926
|
]
|
985
1927
|
|
986
1928
|
[[package]]
|
987
|
-
name = "num
|
988
|
-
version = "0.4.
|
1929
|
+
name = "num"
|
1930
|
+
version = "0.4.3"
|
989
1931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
990
|
-
checksum = "
|
1932
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
991
1933
|
dependencies = [
|
992
|
-
"
|
1934
|
+
"num-bigint",
|
1935
|
+
"num-complex",
|
1936
|
+
"num-integer",
|
1937
|
+
"num-iter",
|
1938
|
+
"num-rational",
|
993
1939
|
"num-traits",
|
994
1940
|
]
|
995
1941
|
|
996
1942
|
[[package]]
|
997
|
-
name = "num-
|
998
|
-
version = "0.
|
1943
|
+
name = "num-bigint"
|
1944
|
+
version = "0.4.6"
|
999
1945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
|
-
checksum = "
|
1946
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
1001
1947
|
dependencies = [
|
1002
|
-
"
|
1003
|
-
"
|
1948
|
+
"num-integer",
|
1949
|
+
"num-traits",
|
1004
1950
|
]
|
1005
1951
|
|
1006
1952
|
[[package]]
|
1007
|
-
name = "
|
1008
|
-
version = "
|
1953
|
+
name = "num-complex"
|
1954
|
+
version = "0.4.6"
|
1009
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
-
checksum = "
|
1956
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
1011
1957
|
dependencies = [
|
1012
|
-
"
|
1013
|
-
"
|
1958
|
+
"bytemuck",
|
1959
|
+
"num-traits",
|
1014
1960
|
]
|
1015
1961
|
|
1016
1962
|
[[package]]
|
1017
|
-
name = "
|
1018
|
-
version = "0.
|
1963
|
+
name = "num-integer"
|
1964
|
+
version = "0.1.46"
|
1019
1965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
-
checksum = "
|
1966
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
1967
|
+
dependencies = [
|
1968
|
+
"num-traits",
|
1969
|
+
]
|
1021
1970
|
|
1022
1971
|
[[package]]
|
1023
|
-
name = "
|
1024
|
-
version = "1.
|
1972
|
+
name = "num-iter"
|
1973
|
+
version = "0.1.45"
|
1025
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1026
|
-
checksum = "
|
1975
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
1976
|
+
dependencies = [
|
1977
|
+
"autocfg",
|
1978
|
+
"num-integer",
|
1979
|
+
"num-traits",
|
1980
|
+
]
|
1027
1981
|
|
1028
1982
|
[[package]]
|
1029
|
-
name = "
|
1030
|
-
version = "
|
1983
|
+
name = "num-rational"
|
1984
|
+
version = "0.4.2"
|
1031
1985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1032
|
-
checksum = "
|
1986
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
1033
1987
|
dependencies = [
|
1034
|
-
"
|
1035
|
-
"
|
1036
|
-
"
|
1037
|
-
"onig_sys",
|
1988
|
+
"num-bigint",
|
1989
|
+
"num-integer",
|
1990
|
+
"num-traits",
|
1038
1991
|
]
|
1039
1992
|
|
1040
1993
|
[[package]]
|
1041
|
-
name = "
|
1042
|
-
version = "
|
1994
|
+
name = "num-traits"
|
1995
|
+
version = "0.2.19"
|
1043
1996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1997
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
1045
1998
|
dependencies = [
|
1046
|
-
"
|
1047
|
-
"
|
1999
|
+
"autocfg",
|
2000
|
+
"libm",
|
1048
2001
|
]
|
1049
2002
|
|
1050
2003
|
[[package]]
|
1051
|
-
name = "
|
1052
|
-
version = "
|
2004
|
+
name = "num_cpus"
|
2005
|
+
version = "1.17.0"
|
1053
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
-
checksum = "
|
2007
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
1055
2008
|
dependencies = [
|
1056
|
-
"
|
1057
|
-
"cfg-if",
|
1058
|
-
"foreign-types",
|
2009
|
+
"hermit-abi",
|
1059
2010
|
"libc",
|
1060
|
-
"once_cell",
|
1061
|
-
"openssl-macros",
|
1062
|
-
"openssl-sys",
|
1063
2011
|
]
|
1064
2012
|
|
1065
2013
|
[[package]]
|
1066
|
-
name = "
|
1067
|
-
version = "0.
|
2014
|
+
name = "num_enum"
|
2015
|
+
version = "0.7.4"
|
1068
2016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1069
|
-
checksum = "
|
2017
|
+
checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
|
1070
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",
|
1071
2030
|
"proc-macro2",
|
1072
2031
|
"quote",
|
1073
|
-
"syn
|
2032
|
+
"syn",
|
1074
2033
|
]
|
1075
2034
|
|
1076
2035
|
[[package]]
|
1077
|
-
name = "
|
1078
|
-
version = "0.
|
2036
|
+
name = "number_prefix"
|
2037
|
+
version = "0.4.0"
|
1079
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1080
|
-
checksum = "
|
2039
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
1081
2040
|
|
1082
2041
|
[[package]]
|
1083
|
-
name = "
|
1084
|
-
version = "0.
|
2042
|
+
name = "objc"
|
2043
|
+
version = "0.2.7"
|
1085
2044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1086
|
-
checksum = "
|
2045
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
1087
2046
|
dependencies = [
|
1088
|
-
"
|
1089
|
-
"
|
1090
|
-
"pkg-config",
|
1091
|
-
"vcpkg",
|
2047
|
+
"malloc_buf",
|
2048
|
+
"objc_exception",
|
1092
2049
|
]
|
1093
2050
|
|
1094
2051
|
[[package]]
|
1095
|
-
name = "
|
1096
|
-
version = "0.2
|
2052
|
+
name = "objc_exception"
|
2053
|
+
version = "0.1.2"
|
1097
2054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1098
|
-
checksum = "
|
2055
|
+
checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
|
2056
|
+
dependencies = [
|
2057
|
+
"cc",
|
2058
|
+
]
|
1099
2059
|
|
1100
2060
|
[[package]]
|
1101
|
-
name = "
|
1102
|
-
version = "
|
2061
|
+
name = "object"
|
2062
|
+
version = "0.36.7"
|
1103
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1104
|
-
checksum = "
|
1105
|
-
|
2064
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
2065
|
+
dependencies = [
|
2066
|
+
"memchr",
|
2067
|
+
]
|
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
|
+
|
2111
|
+
[[package]]
|
2112
|
+
name = "once_cell"
|
2113
|
+
version = "1.21.3"
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2115
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
2116
|
+
|
2117
|
+
[[package]]
|
2118
|
+
name = "onig"
|
2119
|
+
version = "6.5.1"
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2121
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
2122
|
+
dependencies = [
|
2123
|
+
"bitflags 2.9.1",
|
2124
|
+
"libc",
|
2125
|
+
"once_cell",
|
2126
|
+
"onig_sys",
|
2127
|
+
]
|
2128
|
+
|
2129
|
+
[[package]]
|
2130
|
+
name = "onig_sys"
|
2131
|
+
version = "69.9.1"
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2133
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
2134
|
+
dependencies = [
|
2135
|
+
"cc",
|
2136
|
+
"pkg-config",
|
2137
|
+
]
|
2138
|
+
|
2139
|
+
[[package]]
|
2140
|
+
name = "openssl"
|
2141
|
+
version = "0.10.73"
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2143
|
+
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
2144
|
+
dependencies = [
|
2145
|
+
"bitflags 2.9.1",
|
2146
|
+
"cfg-if",
|
2147
|
+
"foreign-types 0.3.2",
|
2148
|
+
"libc",
|
2149
|
+
"once_cell",
|
2150
|
+
"openssl-macros",
|
2151
|
+
"openssl-sys",
|
2152
|
+
]
|
2153
|
+
|
2154
|
+
[[package]]
|
2155
|
+
name = "openssl-macros"
|
2156
|
+
version = "0.1.1"
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2158
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
2159
|
+
dependencies = [
|
2160
|
+
"proc-macro2",
|
2161
|
+
"quote",
|
2162
|
+
"syn",
|
2163
|
+
]
|
2164
|
+
|
2165
|
+
[[package]]
|
2166
|
+
name = "openssl-probe"
|
2167
|
+
version = "0.1.6"
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2169
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
2170
|
+
|
2171
|
+
[[package]]
|
2172
|
+
name = "openssl-sys"
|
2173
|
+
version = "0.9.109"
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2175
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
2176
|
+
dependencies = [
|
2177
|
+
"cc",
|
2178
|
+
"libc",
|
2179
|
+
"pkg-config",
|
2180
|
+
"vcpkg",
|
2181
|
+
]
|
2182
|
+
|
2183
|
+
[[package]]
|
2184
|
+
name = "option-ext"
|
2185
|
+
version = "0.2.0"
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
2188
|
+
|
2189
|
+
[[package]]
|
2190
|
+
name = "paste"
|
2191
|
+
version = "1.0.15"
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2193
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
2194
|
+
|
1106
2195
|
[[package]]
|
1107
2196
|
name = "percent-encoding"
|
1108
2197
|
version = "2.3.1"
|
@@ -1111,58 +2200,127 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1111
2200
|
|
1112
2201
|
[[package]]
|
1113
2202
|
name = "pin-project-lite"
|
1114
|
-
version = "0.2.
|
2203
|
+
version = "0.2.16"
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2205
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
2206
|
+
|
2207
|
+
[[package]]
|
2208
|
+
name = "pin-utils"
|
2209
|
+
version = "0.1.0"
|
1115
2210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1116
|
-
checksum = "
|
2211
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1117
2212
|
|
1118
2213
|
[[package]]
|
1119
2214
|
name = "pkg-config"
|
1120
|
-
version = "0.3.
|
2215
|
+
version = "0.3.32"
|
1121
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1122
|
-
checksum = "
|
2217
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1123
2218
|
|
1124
2219
|
[[package]]
|
1125
2220
|
name = "portable-atomic"
|
1126
|
-
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"
|
1127
2228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "
|
2229
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
2230
|
+
dependencies = [
|
2231
|
+
"zerovec",
|
2232
|
+
]
|
1129
2233
|
|
1130
2234
|
[[package]]
|
1131
2235
|
name = "ppv-lite86"
|
1132
|
-
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"
|
1133
2265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
-
checksum = "
|
2266
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
2267
|
+
dependencies = [
|
2268
|
+
"proc-macro-error-attr2",
|
2269
|
+
"proc-macro2",
|
2270
|
+
"quote",
|
2271
|
+
"syn",
|
2272
|
+
]
|
1135
2273
|
|
1136
2274
|
[[package]]
|
1137
2275
|
name = "proc-macro2"
|
1138
|
-
version = "1.0.
|
2276
|
+
version = "1.0.95"
|
1139
2277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
-
checksum = "
|
2278
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
1141
2279
|
dependencies = [
|
1142
2280
|
"unicode-ident",
|
1143
2281
|
]
|
1144
2282
|
|
1145
2283
|
[[package]]
|
1146
2284
|
name = "pulp"
|
1147
|
-
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"
|
1148
2298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1149
|
-
checksum = "
|
2299
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
1150
2300
|
dependencies = [
|
1151
2301
|
"bytemuck",
|
2302
|
+
"cfg-if",
|
1152
2303
|
"libm",
|
1153
2304
|
"num-complex",
|
1154
2305
|
"reborrow",
|
2306
|
+
"version_check",
|
1155
2307
|
]
|
1156
2308
|
|
1157
2309
|
[[package]]
|
1158
2310
|
name = "quote"
|
1159
|
-
version = "1.0.
|
2311
|
+
version = "1.0.40"
|
1160
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1161
|
-
checksum = "
|
2313
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1162
2314
|
dependencies = [
|
1163
2315
|
"proc-macro2",
|
1164
2316
|
]
|
1165
2317
|
|
2318
|
+
[[package]]
|
2319
|
+
name = "r-efi"
|
2320
|
+
version = "5.3.0"
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2322
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
2323
|
+
|
1166
2324
|
[[package]]
|
1167
2325
|
name = "rand"
|
1168
2326
|
version = "0.8.5"
|
@@ -1170,8 +2328,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
2328
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1171
2329
|
dependencies = [
|
1172
2330
|
"libc",
|
1173
|
-
"rand_chacha",
|
1174
|
-
"rand_core",
|
2331
|
+
"rand_chacha 0.3.1",
|
2332
|
+
"rand_core 0.6.4",
|
2333
|
+
]
|
2334
|
+
|
2335
|
+
[[package]]
|
2336
|
+
name = "rand"
|
2337
|
+
version = "0.9.1"
|
2338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2339
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
2340
|
+
dependencies = [
|
2341
|
+
"rand_chacha 0.9.0",
|
2342
|
+
"rand_core 0.9.3",
|
1175
2343
|
]
|
1176
2344
|
|
1177
2345
|
[[package]]
|
@@ -1181,7 +2349,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
2349
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1182
2350
|
dependencies = [
|
1183
2351
|
"ppv-lite86",
|
1184
|
-
"rand_core",
|
2352
|
+
"rand_core 0.6.4",
|
2353
|
+
]
|
2354
|
+
|
2355
|
+
[[package]]
|
2356
|
+
name = "rand_chacha"
|
2357
|
+
version = "0.9.0"
|
2358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2359
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
2360
|
+
dependencies = [
|
2361
|
+
"ppv-lite86",
|
2362
|
+
"rand_core 0.9.3",
|
1185
2363
|
]
|
1186
2364
|
|
1187
2365
|
[[package]]
|
@@ -1190,17 +2368,26 @@ version = "0.6.4"
|
|
1190
2368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1191
2369
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1192
2370
|
dependencies = [
|
1193
|
-
"getrandom",
|
2371
|
+
"getrandom 0.2.16",
|
2372
|
+
]
|
2373
|
+
|
2374
|
+
[[package]]
|
2375
|
+
name = "rand_core"
|
2376
|
+
version = "0.9.3"
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2378
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
2379
|
+
dependencies = [
|
2380
|
+
"getrandom 0.3.3",
|
1194
2381
|
]
|
1195
2382
|
|
1196
2383
|
[[package]]
|
1197
2384
|
name = "rand_distr"
|
1198
|
-
version = "0.
|
2385
|
+
version = "0.5.1"
|
1199
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1200
|
-
checksum = "
|
2387
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
1201
2388
|
dependencies = [
|
1202
2389
|
"num-traits",
|
1203
|
-
"rand",
|
2390
|
+
"rand 0.9.1",
|
1204
2391
|
]
|
1205
2392
|
|
1206
2393
|
[[package]]
|
@@ -1212,11 +2399,20 @@ dependencies = [
|
|
1212
2399
|
"bitflags 1.3.2",
|
1213
2400
|
]
|
1214
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
|
+
|
1215
2411
|
[[package]]
|
1216
2412
|
name = "rayon"
|
1217
|
-
version = "1.
|
2413
|
+
version = "1.10.0"
|
1218
2414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1219
|
-
checksum = "
|
2415
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
1220
2416
|
dependencies = [
|
1221
2417
|
"either",
|
1222
2418
|
"rayon-core",
|
@@ -1224,12 +2420,12 @@ dependencies = [
|
|
1224
2420
|
|
1225
2421
|
[[package]]
|
1226
2422
|
name = "rayon-cond"
|
1227
|
-
version = "0.
|
2423
|
+
version = "0.4.0"
|
1228
2424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1229
|
-
checksum = "
|
2425
|
+
checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
|
1230
2426
|
dependencies = [
|
1231
2427
|
"either",
|
1232
|
-
"itertools 0.
|
2428
|
+
"itertools 0.14.0",
|
1233
2429
|
"rayon",
|
1234
2430
|
]
|
1235
2431
|
|
@@ -1245,18 +2441,18 @@ dependencies = [
|
|
1245
2441
|
|
1246
2442
|
[[package]]
|
1247
2443
|
name = "rb-sys"
|
1248
|
-
version = "0.9.
|
2444
|
+
version = "0.9.116"
|
1249
2445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
-
checksum = "
|
2446
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
1251
2447
|
dependencies = [
|
1252
2448
|
"rb-sys-build",
|
1253
2449
|
]
|
1254
2450
|
|
1255
2451
|
[[package]]
|
1256
2452
|
name = "rb-sys-build"
|
1257
|
-
version = "0.9.
|
2453
|
+
version = "0.9.116"
|
1258
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1259
|
-
checksum = "
|
2455
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
1260
2456
|
dependencies = [
|
1261
2457
|
"bindgen",
|
1262
2458
|
"lazy_static",
|
@@ -1264,7 +2460,7 @@ dependencies = [
|
|
1264
2460
|
"quote",
|
1265
2461
|
"regex",
|
1266
2462
|
"shell-words",
|
1267
|
-
"syn
|
2463
|
+
"syn",
|
1268
2464
|
]
|
1269
2465
|
|
1270
2466
|
[[package]]
|
@@ -1281,29 +2477,40 @@ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
1281
2477
|
|
1282
2478
|
[[package]]
|
1283
2479
|
name = "redox_syscall"
|
1284
|
-
version = "0.
|
2480
|
+
version = "0.5.13"
|
1285
2481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1286
|
-
checksum = "
|
2482
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
1287
2483
|
dependencies = [
|
1288
|
-
"bitflags
|
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",
|
1289
2496
|
]
|
1290
2497
|
|
1291
2498
|
[[package]]
|
1292
2499
|
name = "redox_users"
|
1293
|
-
version = "0.
|
2500
|
+
version = "0.5.0"
|
1294
2501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1295
|
-
checksum = "
|
2502
|
+
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
|
1296
2503
|
dependencies = [
|
1297
|
-
"getrandom",
|
2504
|
+
"getrandom 0.2.16",
|
1298
2505
|
"libredox",
|
1299
|
-
"thiserror",
|
2506
|
+
"thiserror 2.0.12",
|
1300
2507
|
]
|
1301
2508
|
|
1302
2509
|
[[package]]
|
1303
2510
|
name = "regex"
|
1304
|
-
version = "1.
|
2511
|
+
version = "1.11.1"
|
1305
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1306
|
-
checksum = "
|
2513
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1307
2514
|
dependencies = [
|
1308
2515
|
"aho-corasick",
|
1309
2516
|
"memchr",
|
@@ -1313,9 +2520,9 @@ dependencies = [
|
|
1313
2520
|
|
1314
2521
|
[[package]]
|
1315
2522
|
name = "regex-automata"
|
1316
|
-
version = "0.4.
|
2523
|
+
version = "0.4.9"
|
1317
2524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1318
|
-
checksum = "
|
2525
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1319
2526
|
dependencies = [
|
1320
2527
|
"aho-corasick",
|
1321
2528
|
"memchr",
|
@@ -1324,25 +2531,73 @@ dependencies = [
|
|
1324
2531
|
|
1325
2532
|
[[package]]
|
1326
2533
|
name = "regex-syntax"
|
1327
|
-
version = "0.8.
|
2534
|
+
version = "0.8.5"
|
2535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2536
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2537
|
+
|
2538
|
+
[[package]]
|
2539
|
+
name = "reqwest"
|
2540
|
+
version = "0.12.22"
|
1328
2541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1329
|
-
checksum = "
|
2542
|
+
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
|
2543
|
+
dependencies = [
|
2544
|
+
"base64 0.22.1",
|
2545
|
+
"bytes",
|
2546
|
+
"encoding_rs",
|
2547
|
+
"futures-core",
|
2548
|
+
"futures-util",
|
2549
|
+
"h2",
|
2550
|
+
"http",
|
2551
|
+
"http-body",
|
2552
|
+
"http-body-util",
|
2553
|
+
"hyper",
|
2554
|
+
"hyper-rustls",
|
2555
|
+
"hyper-tls",
|
2556
|
+
"hyper-util",
|
2557
|
+
"js-sys",
|
2558
|
+
"log",
|
2559
|
+
"mime",
|
2560
|
+
"native-tls",
|
2561
|
+
"percent-encoding",
|
2562
|
+
"pin-project-lite",
|
2563
|
+
"rustls-pki-types",
|
2564
|
+
"serde",
|
2565
|
+
"serde_json",
|
2566
|
+
"serde_urlencoded",
|
2567
|
+
"sync_wrapper",
|
2568
|
+
"tokio",
|
2569
|
+
"tokio-native-tls",
|
2570
|
+
"tokio-util",
|
2571
|
+
"tower",
|
2572
|
+
"tower-http",
|
2573
|
+
"tower-service",
|
2574
|
+
"url",
|
2575
|
+
"wasm-bindgen",
|
2576
|
+
"wasm-bindgen-futures",
|
2577
|
+
"wasm-streams",
|
2578
|
+
"web-sys",
|
2579
|
+
]
|
1330
2580
|
|
1331
2581
|
[[package]]
|
1332
2582
|
name = "ring"
|
1333
|
-
version = "0.17.
|
2583
|
+
version = "0.17.14"
|
1334
2584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1335
|
-
checksum = "
|
2585
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
1336
2586
|
dependencies = [
|
1337
2587
|
"cc",
|
1338
2588
|
"cfg-if",
|
1339
|
-
"getrandom",
|
2589
|
+
"getrandom 0.2.16",
|
1340
2590
|
"libc",
|
1341
|
-
"spin",
|
1342
2591
|
"untrusted",
|
1343
2592
|
"windows-sys 0.52.0",
|
1344
2593
|
]
|
1345
2594
|
|
2595
|
+
[[package]]
|
2596
|
+
name = "rustc-demangle"
|
2597
|
+
version = "0.1.25"
|
2598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2599
|
+
checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
|
2600
|
+
|
1346
2601
|
[[package]]
|
1347
2602
|
name = "rustc-hash"
|
1348
2603
|
version = "1.1.0"
|
@@ -1351,24 +2606,25 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1351
2606
|
|
1352
2607
|
[[package]]
|
1353
2608
|
name = "rustix"
|
1354
|
-
version = "0.
|
2609
|
+
version = "1.0.7"
|
1355
2610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1356
|
-
checksum = "
|
2611
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
1357
2612
|
dependencies = [
|
1358
|
-
"bitflags 2.
|
2613
|
+
"bitflags 2.9.1",
|
1359
2614
|
"errno",
|
1360
2615
|
"libc",
|
1361
2616
|
"linux-raw-sys",
|
1362
|
-
"windows-sys 0.
|
2617
|
+
"windows-sys 0.59.0",
|
1363
2618
|
]
|
1364
2619
|
|
1365
2620
|
[[package]]
|
1366
2621
|
name = "rustls"
|
1367
|
-
version = "0.
|
2622
|
+
version = "0.23.28"
|
1368
2623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1369
|
-
checksum = "
|
2624
|
+
checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
|
1370
2625
|
dependencies = [
|
1371
2626
|
"log",
|
2627
|
+
"once_cell",
|
1372
2628
|
"ring",
|
1373
2629
|
"rustls-pki-types",
|
1374
2630
|
"rustls-webpki",
|
@@ -1378,32 +2634,51 @@ dependencies = [
|
|
1378
2634
|
|
1379
2635
|
[[package]]
|
1380
2636
|
name = "rustls-pki-types"
|
1381
|
-
version = "1.
|
2637
|
+
version = "1.12.0"
|
1382
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1383
|
-
checksum = "
|
2639
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
2640
|
+
dependencies = [
|
2641
|
+
"zeroize",
|
2642
|
+
]
|
1384
2643
|
|
1385
2644
|
[[package]]
|
1386
2645
|
name = "rustls-webpki"
|
1387
|
-
version = "0.
|
2646
|
+
version = "0.103.3"
|
1388
2647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1389
|
-
checksum = "
|
2648
|
+
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
|
1390
2649
|
dependencies = [
|
1391
2650
|
"ring",
|
1392
2651
|
"rustls-pki-types",
|
1393
2652
|
"untrusted",
|
1394
2653
|
]
|
1395
2654
|
|
2655
|
+
[[package]]
|
2656
|
+
name = "rustversion"
|
2657
|
+
version = "1.0.21"
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2659
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
2660
|
+
|
1396
2661
|
[[package]]
|
1397
2662
|
name = "ryu"
|
1398
|
-
version = "1.0.
|
2663
|
+
version = "1.0.20"
|
1399
2664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1400
|
-
checksum = "
|
2665
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1401
2666
|
|
1402
2667
|
[[package]]
|
1403
2668
|
name = "safetensors"
|
1404
|
-
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"
|
1405
2680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1406
|
-
checksum = "
|
2681
|
+
checksum = "44560c11236a6130a46ce36c836a62936dc81ebf8c36a37947423571be0e55b6"
|
1407
2682
|
dependencies = [
|
1408
2683
|
"serde",
|
1409
2684
|
"serde_json",
|
@@ -1420,20 +2695,20 @@ dependencies = [
|
|
1420
2695
|
|
1421
2696
|
[[package]]
|
1422
2697
|
name = "schannel"
|
1423
|
-
version = "0.1.
|
2698
|
+
version = "0.1.27"
|
1424
2699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1425
|
-
checksum = "
|
2700
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
1426
2701
|
dependencies = [
|
1427
|
-
"windows-sys 0.
|
2702
|
+
"windows-sys 0.59.0",
|
1428
2703
|
]
|
1429
2704
|
|
1430
2705
|
[[package]]
|
1431
2706
|
name = "security-framework"
|
1432
|
-
version = "2.
|
2707
|
+
version = "2.11.1"
|
1433
2708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1434
|
-
checksum = "
|
2709
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
1435
2710
|
dependencies = [
|
1436
|
-
"bitflags
|
2711
|
+
"bitflags 2.9.1",
|
1437
2712
|
"core-foundation",
|
1438
2713
|
"core-foundation-sys",
|
1439
2714
|
"libc",
|
@@ -1442,9 +2717,9 @@ dependencies = [
|
|
1442
2717
|
|
1443
2718
|
[[package]]
|
1444
2719
|
name = "security-framework-sys"
|
1445
|
-
version = "2.
|
2720
|
+
version = "2.14.0"
|
1446
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1447
|
-
checksum = "
|
2722
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
1448
2723
|
dependencies = [
|
1449
2724
|
"core-foundation-sys",
|
1450
2725
|
"libc",
|
@@ -1452,37 +2727,38 @@ dependencies = [
|
|
1452
2727
|
|
1453
2728
|
[[package]]
|
1454
2729
|
name = "seq-macro"
|
1455
|
-
version = "0.3.
|
2730
|
+
version = "0.3.6"
|
1456
2731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1457
|
-
checksum = "
|
2732
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1458
2733
|
|
1459
2734
|
[[package]]
|
1460
2735
|
name = "serde"
|
1461
|
-
version = "1.0.
|
2736
|
+
version = "1.0.219"
|
1462
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1463
|
-
checksum = "
|
2738
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1464
2739
|
dependencies = [
|
1465
2740
|
"serde_derive",
|
1466
2741
|
]
|
1467
2742
|
|
1468
2743
|
[[package]]
|
1469
2744
|
name = "serde_derive"
|
1470
|
-
version = "1.0.
|
2745
|
+
version = "1.0.219"
|
1471
2746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1472
|
-
checksum = "
|
2747
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1473
2748
|
dependencies = [
|
1474
2749
|
"proc-macro2",
|
1475
2750
|
"quote",
|
1476
|
-
"syn
|
2751
|
+
"syn",
|
1477
2752
|
]
|
1478
2753
|
|
1479
2754
|
[[package]]
|
1480
2755
|
name = "serde_json"
|
1481
|
-
version = "1.0.
|
2756
|
+
version = "1.0.140"
|
1482
2757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1483
|
-
checksum = "
|
2758
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1484
2759
|
dependencies = [
|
1485
2760
|
"itoa",
|
2761
|
+
"memchr",
|
1486
2762
|
"ryu",
|
1487
2763
|
"serde",
|
1488
2764
|
]
|
@@ -1496,6 +2772,38 @@ dependencies = [
|
|
1496
2772
|
"serde",
|
1497
2773
|
]
|
1498
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
|
+
|
2784
|
+
[[package]]
|
2785
|
+
name = "serde_urlencoded"
|
2786
|
+
version = "0.7.1"
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2788
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2789
|
+
dependencies = [
|
2790
|
+
"form_urlencoded",
|
2791
|
+
"itoa",
|
2792
|
+
"ryu",
|
2793
|
+
"serde",
|
2794
|
+
]
|
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
|
+
|
1499
2807
|
[[package]]
|
1500
2808
|
name = "shell-words"
|
1501
2809
|
version = "1.1.0"
|
@@ -1508,23 +2816,44 @@ version = "1.3.0"
|
|
1508
2816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1509
2817
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1510
2818
|
|
2819
|
+
[[package]]
|
2820
|
+
name = "slab"
|
2821
|
+
version = "0.4.10"
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2823
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
2824
|
+
|
1511
2825
|
[[package]]
|
1512
2826
|
name = "smallvec"
|
1513
|
-
version = "1.
|
2827
|
+
version = "1.15.1"
|
1514
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1515
|
-
checksum = "
|
2829
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
1516
2830
|
|
1517
2831
|
[[package]]
|
1518
|
-
name = "
|
1519
|
-
version = "0.
|
2832
|
+
name = "socket2"
|
2833
|
+
version = "0.5.10"
|
1520
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1521
|
-
checksum = "
|
2835
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
2836
|
+
dependencies = [
|
2837
|
+
"libc",
|
2838
|
+
"windows-sys 0.52.0",
|
2839
|
+
]
|
1522
2840
|
|
1523
2841
|
[[package]]
|
1524
|
-
name = "
|
1525
|
-
version = "0.
|
2842
|
+
name = "socks"
|
2843
|
+
version = "0.3.4"
|
1526
2844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1527
|
-
checksum = "
|
2845
|
+
checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
|
2846
|
+
dependencies = [
|
2847
|
+
"byteorder",
|
2848
|
+
"libc",
|
2849
|
+
"winapi",
|
2850
|
+
]
|
2851
|
+
|
2852
|
+
[[package]]
|
2853
|
+
name = "spm_precompiled"
|
2854
|
+
version = "0.1.4"
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2856
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
1528
2857
|
dependencies = [
|
1529
2858
|
"base64 0.13.1",
|
1530
2859
|
"nom",
|
@@ -1539,54 +2868,71 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
2868
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1540
2869
|
|
1541
2870
|
[[package]]
|
1542
|
-
name = "
|
1543
|
-
version = "
|
2871
|
+
name = "static_assertions"
|
2872
|
+
version = "1.1.0"
|
1544
2873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1545
|
-
checksum = "
|
2874
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
1546
2875
|
|
1547
2876
|
[[package]]
|
1548
2877
|
name = "strsim"
|
1549
|
-
version = "0.11.
|
2878
|
+
version = "0.11.1"
|
1550
2879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1551
|
-
checksum = "
|
2880
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
1552
2881
|
|
1553
2882
|
[[package]]
|
1554
|
-
name = "
|
1555
|
-
version = "
|
2883
|
+
name = "strum"
|
2884
|
+
version = "0.26.3"
|
1556
2885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1557
|
-
checksum = "
|
2886
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
1558
2887
|
|
1559
2888
|
[[package]]
|
1560
|
-
name = "
|
1561
|
-
version = "
|
2889
|
+
name = "strum_macros"
|
2890
|
+
version = "0.26.4"
|
1562
2891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1563
|
-
checksum = "
|
2892
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
1564
2893
|
dependencies = [
|
2894
|
+
"heck",
|
1565
2895
|
"proc-macro2",
|
1566
2896
|
"quote",
|
1567
|
-
"
|
2897
|
+
"rustversion",
|
2898
|
+
"syn",
|
1568
2899
|
]
|
1569
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
|
+
|
1570
2907
|
[[package]]
|
1571
2908
|
name = "syn"
|
1572
|
-
version = "2.0.
|
2909
|
+
version = "2.0.104"
|
1573
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1574
|
-
checksum = "
|
2911
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
1575
2912
|
dependencies = [
|
1576
2913
|
"proc-macro2",
|
1577
2914
|
"quote",
|
1578
2915
|
"unicode-ident",
|
1579
2916
|
]
|
1580
2917
|
|
2918
|
+
[[package]]
|
2919
|
+
name = "sync_wrapper"
|
2920
|
+
version = "1.0.2"
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2922
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
2923
|
+
dependencies = [
|
2924
|
+
"futures-core",
|
2925
|
+
]
|
2926
|
+
|
1581
2927
|
[[package]]
|
1582
2928
|
name = "synstructure"
|
1583
|
-
version = "0.13.
|
2929
|
+
version = "0.13.2"
|
1584
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1585
|
-
checksum = "
|
2931
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
1586
2932
|
dependencies = [
|
1587
2933
|
"proc-macro2",
|
1588
2934
|
"quote",
|
1589
|
-
"syn
|
2935
|
+
"syn",
|
1590
2936
|
]
|
1591
2937
|
|
1592
2938
|
[[package]]
|
@@ -1595,82 +2941,145 @@ version = "0.5.5"
|
|
1595
2941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
2942
|
checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea"
|
1597
2943
|
dependencies = [
|
1598
|
-
"bitflags 2.
|
2944
|
+
"bitflags 2.9.1",
|
2945
|
+
"byteorder",
|
2946
|
+
"enum-as-inner",
|
2947
|
+
"libc",
|
2948
|
+
"thiserror 1.0.69",
|
2949
|
+
"walkdir",
|
2950
|
+
]
|
2951
|
+
|
2952
|
+
[[package]]
|
2953
|
+
name = "sysctl"
|
2954
|
+
version = "0.6.0"
|
2955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2956
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
2957
|
+
dependencies = [
|
2958
|
+
"bitflags 2.9.1",
|
1599
2959
|
"byteorder",
|
1600
2960
|
"enum-as-inner",
|
1601
2961
|
"libc",
|
1602
|
-
"thiserror",
|
2962
|
+
"thiserror 1.0.69",
|
1603
2963
|
"walkdir",
|
1604
2964
|
]
|
1605
2965
|
|
2966
|
+
[[package]]
|
2967
|
+
name = "system-configuration"
|
2968
|
+
version = "0.6.1"
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2970
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
2971
|
+
dependencies = [
|
2972
|
+
"bitflags 2.9.1",
|
2973
|
+
"core-foundation",
|
2974
|
+
"system-configuration-sys",
|
2975
|
+
]
|
2976
|
+
|
2977
|
+
[[package]]
|
2978
|
+
name = "system-configuration-sys"
|
2979
|
+
version = "0.6.0"
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2981
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
2982
|
+
dependencies = [
|
2983
|
+
"core-foundation-sys",
|
2984
|
+
"libc",
|
2985
|
+
]
|
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
|
+
|
1606
2998
|
[[package]]
|
1607
2999
|
name = "tempfile"
|
1608
|
-
version = "3.
|
3000
|
+
version = "3.20.0"
|
1609
3001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1610
|
-
checksum = "
|
3002
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
1611
3003
|
dependencies = [
|
1612
|
-
"cfg-if",
|
1613
3004
|
"fastrand",
|
3005
|
+
"getrandom 0.3.3",
|
3006
|
+
"once_cell",
|
1614
3007
|
"rustix",
|
1615
|
-
"windows-sys 0.
|
3008
|
+
"windows-sys 0.59.0",
|
3009
|
+
]
|
3010
|
+
|
3011
|
+
[[package]]
|
3012
|
+
name = "thiserror"
|
3013
|
+
version = "1.0.69"
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3015
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
3016
|
+
dependencies = [
|
3017
|
+
"thiserror-impl 1.0.69",
|
1616
3018
|
]
|
1617
3019
|
|
1618
3020
|
[[package]]
|
1619
3021
|
name = "thiserror"
|
1620
|
-
version = "
|
3022
|
+
version = "2.0.12"
|
1621
3023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
-
checksum = "
|
3024
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1623
3025
|
dependencies = [
|
1624
|
-
"thiserror-impl",
|
3026
|
+
"thiserror-impl 2.0.12",
|
1625
3027
|
]
|
1626
3028
|
|
1627
3029
|
[[package]]
|
1628
3030
|
name = "thiserror-impl"
|
1629
|
-
version = "1.0.
|
3031
|
+
version = "1.0.69"
|
1630
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
-
checksum = "
|
3033
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
1632
3034
|
dependencies = [
|
1633
3035
|
"proc-macro2",
|
1634
3036
|
"quote",
|
1635
|
-
"syn
|
3037
|
+
"syn",
|
1636
3038
|
]
|
1637
3039
|
|
1638
3040
|
[[package]]
|
1639
|
-
name = "
|
1640
|
-
version = "
|
3041
|
+
name = "thiserror-impl"
|
3042
|
+
version = "2.0.12"
|
1641
3043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1642
|
-
checksum = "
|
3044
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1643
3045
|
dependencies = [
|
1644
|
-
"
|
3046
|
+
"proc-macro2",
|
3047
|
+
"quote",
|
3048
|
+
"syn",
|
1645
3049
|
]
|
1646
3050
|
|
1647
3051
|
[[package]]
|
1648
|
-
name = "
|
1649
|
-
version = "0.
|
3052
|
+
name = "tinystr"
|
3053
|
+
version = "0.8.1"
|
1650
3054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1651
|
-
checksum = "
|
3055
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
3056
|
+
dependencies = [
|
3057
|
+
"displaydoc",
|
3058
|
+
"zerovec",
|
3059
|
+
]
|
1652
3060
|
|
1653
3061
|
[[package]]
|
1654
3062
|
name = "tokenizers"
|
1655
|
-
version = "0.
|
3063
|
+
version = "0.21.2"
|
1656
3064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1657
|
-
checksum = "
|
3065
|
+
checksum = "4c3846d8588abed0daba25a0e47edd58ea15e450a6088b2575f5116fdb0b27ca"
|
1658
3066
|
dependencies = [
|
3067
|
+
"ahash",
|
1659
3068
|
"aho-corasick",
|
1660
|
-
"
|
3069
|
+
"compact_str",
|
3070
|
+
"dary_heap",
|
1661
3071
|
"derive_builder",
|
1662
3072
|
"esaxx-rs",
|
1663
|
-
"fancy-regex",
|
1664
|
-
"getrandom",
|
3073
|
+
"fancy-regex 0.14.0",
|
3074
|
+
"getrandom 0.3.3",
|
1665
3075
|
"indicatif",
|
1666
|
-
"itertools 0.
|
1667
|
-
"lazy_static",
|
3076
|
+
"itertools 0.14.0",
|
1668
3077
|
"log",
|
1669
3078
|
"macro_rules_attribute",
|
1670
3079
|
"monostate",
|
1671
3080
|
"onig",
|
1672
3081
|
"paste",
|
1673
|
-
"rand",
|
3082
|
+
"rand 0.9.1",
|
1674
3083
|
"rayon",
|
1675
3084
|
"rayon-cond",
|
1676
3085
|
"regex",
|
@@ -1678,17 +3087,165 @@ dependencies = [
|
|
1678
3087
|
"serde",
|
1679
3088
|
"serde_json",
|
1680
3089
|
"spm_precompiled",
|
1681
|
-
"thiserror",
|
3090
|
+
"thiserror 2.0.12",
|
1682
3091
|
"unicode-normalization-alignments",
|
1683
3092
|
"unicode-segmentation",
|
1684
3093
|
"unicode_categories",
|
1685
3094
|
]
|
1686
3095
|
|
3096
|
+
[[package]]
|
3097
|
+
name = "tokio"
|
3098
|
+
version = "1.46.1"
|
3099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3100
|
+
checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
|
3101
|
+
dependencies = [
|
3102
|
+
"backtrace",
|
3103
|
+
"bytes",
|
3104
|
+
"io-uring",
|
3105
|
+
"libc",
|
3106
|
+
"mio",
|
3107
|
+
"pin-project-lite",
|
3108
|
+
"slab",
|
3109
|
+
"socket2",
|
3110
|
+
"tokio-macros",
|
3111
|
+
"windows-sys 0.52.0",
|
3112
|
+
]
|
3113
|
+
|
3114
|
+
[[package]]
|
3115
|
+
name = "tokio-macros"
|
3116
|
+
version = "2.5.0"
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3118
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
3119
|
+
dependencies = [
|
3120
|
+
"proc-macro2",
|
3121
|
+
"quote",
|
3122
|
+
"syn",
|
3123
|
+
]
|
3124
|
+
|
3125
|
+
[[package]]
|
3126
|
+
name = "tokio-native-tls"
|
3127
|
+
version = "0.3.1"
|
3128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3129
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
3130
|
+
dependencies = [
|
3131
|
+
"native-tls",
|
3132
|
+
"tokio",
|
3133
|
+
]
|
3134
|
+
|
3135
|
+
[[package]]
|
3136
|
+
name = "tokio-rustls"
|
3137
|
+
version = "0.26.2"
|
3138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3139
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
3140
|
+
dependencies = [
|
3141
|
+
"rustls",
|
3142
|
+
"tokio",
|
3143
|
+
]
|
3144
|
+
|
3145
|
+
[[package]]
|
3146
|
+
name = "tokio-util"
|
3147
|
+
version = "0.7.15"
|
3148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3149
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
3150
|
+
dependencies = [
|
3151
|
+
"bytes",
|
3152
|
+
"futures-core",
|
3153
|
+
"futures-sink",
|
3154
|
+
"pin-project-lite",
|
3155
|
+
"tokio",
|
3156
|
+
]
|
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
|
+
|
3199
|
+
[[package]]
|
3200
|
+
name = "tower"
|
3201
|
+
version = "0.5.2"
|
3202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3203
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
3204
|
+
dependencies = [
|
3205
|
+
"futures-core",
|
3206
|
+
"futures-util",
|
3207
|
+
"pin-project-lite",
|
3208
|
+
"sync_wrapper",
|
3209
|
+
"tokio",
|
3210
|
+
"tower-layer",
|
3211
|
+
"tower-service",
|
3212
|
+
]
|
3213
|
+
|
3214
|
+
[[package]]
|
3215
|
+
name = "tower-http"
|
3216
|
+
version = "0.6.6"
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3218
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
3219
|
+
dependencies = [
|
3220
|
+
"bitflags 2.9.1",
|
3221
|
+
"bytes",
|
3222
|
+
"futures-util",
|
3223
|
+
"http",
|
3224
|
+
"http-body",
|
3225
|
+
"iri-string",
|
3226
|
+
"pin-project-lite",
|
3227
|
+
"tower",
|
3228
|
+
"tower-layer",
|
3229
|
+
"tower-service",
|
3230
|
+
]
|
3231
|
+
|
3232
|
+
[[package]]
|
3233
|
+
name = "tower-layer"
|
3234
|
+
version = "0.3.3"
|
3235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3236
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
3237
|
+
|
3238
|
+
[[package]]
|
3239
|
+
name = "tower-service"
|
3240
|
+
version = "0.3.3"
|
3241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3242
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
3243
|
+
|
1687
3244
|
[[package]]
|
1688
3245
|
name = "tracing"
|
1689
|
-
version = "0.1.
|
3246
|
+
version = "0.1.41"
|
1690
3247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1691
|
-
checksum = "
|
3248
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
1692
3249
|
dependencies = [
|
1693
3250
|
"pin-project-lite",
|
1694
3251
|
"tracing-attributes",
|
@@ -1697,142 +3254,335 @@ dependencies = [
|
|
1697
3254
|
|
1698
3255
|
[[package]]
|
1699
3256
|
name = "tracing-attributes"
|
1700
|
-
version = "0.1.
|
3257
|
+
version = "0.1.30"
|
3258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3259
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
3260
|
+
dependencies = [
|
3261
|
+
"proc-macro2",
|
3262
|
+
"quote",
|
3263
|
+
"syn",
|
3264
|
+
]
|
3265
|
+
|
3266
|
+
[[package]]
|
3267
|
+
name = "tracing-core"
|
3268
|
+
version = "0.1.34"
|
3269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3270
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
3271
|
+
dependencies = [
|
3272
|
+
"once_cell",
|
3273
|
+
]
|
3274
|
+
|
3275
|
+
[[package]]
|
3276
|
+
name = "try-lock"
|
3277
|
+
version = "0.2.5"
|
3278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3279
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
3280
|
+
|
3281
|
+
[[package]]
|
3282
|
+
name = "typenum"
|
3283
|
+
version = "1.18.0"
|
3284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3285
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
3286
|
+
|
3287
|
+
[[package]]
|
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"
|
3311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3312
|
+
checksum = "14053653d0b7fa7b21015aa9a62edc8af2f60aa6f9c54e66386ecce55f22ed29"
|
3313
|
+
dependencies = [
|
3314
|
+
"cudarc",
|
3315
|
+
"half",
|
3316
|
+
"serde",
|
3317
|
+
"thiserror 1.0.69",
|
3318
|
+
"ug",
|
3319
|
+
]
|
3320
|
+
|
3321
|
+
[[package]]
|
3322
|
+
name = "ug-metal"
|
3323
|
+
version = "0.4.0"
|
3324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3325
|
+
checksum = "76daec3c7a32a1b4a0e3307b6b057fa067aa64e750713987410a2c402e5cd731"
|
3326
|
+
dependencies = [
|
3327
|
+
"half",
|
3328
|
+
"metal 0.29.0",
|
3329
|
+
"objc",
|
3330
|
+
"serde",
|
3331
|
+
"thiserror 1.0.69",
|
3332
|
+
"ug",
|
3333
|
+
]
|
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
|
+
|
3341
|
+
[[package]]
|
3342
|
+
name = "unicode-normalization-alignments"
|
3343
|
+
version = "0.1.12"
|
3344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3345
|
+
checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
|
3346
|
+
dependencies = [
|
3347
|
+
"smallvec",
|
3348
|
+
]
|
3349
|
+
|
3350
|
+
[[package]]
|
3351
|
+
name = "unicode-segmentation"
|
3352
|
+
version = "1.12.0"
|
3353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3354
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
3355
|
+
|
3356
|
+
[[package]]
|
3357
|
+
name = "unicode-width"
|
3358
|
+
version = "0.2.1"
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3360
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
3361
|
+
|
3362
|
+
[[package]]
|
3363
|
+
name = "unicode_categories"
|
3364
|
+
version = "0.1.1"
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3366
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
3367
|
+
|
3368
|
+
[[package]]
|
3369
|
+
name = "untrusted"
|
3370
|
+
version = "0.9.0"
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3372
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
3373
|
+
|
3374
|
+
[[package]]
|
3375
|
+
name = "ureq"
|
3376
|
+
version = "2.12.1"
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3378
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
3379
|
+
dependencies = [
|
3380
|
+
"base64 0.22.1",
|
3381
|
+
"flate2",
|
3382
|
+
"log",
|
3383
|
+
"native-tls",
|
3384
|
+
"once_cell",
|
3385
|
+
"rustls",
|
3386
|
+
"rustls-pki-types",
|
3387
|
+
"serde",
|
3388
|
+
"serde_json",
|
3389
|
+
"socks",
|
3390
|
+
"url",
|
3391
|
+
"webpki-roots 0.26.11",
|
3392
|
+
]
|
3393
|
+
|
3394
|
+
[[package]]
|
3395
|
+
name = "url"
|
3396
|
+
version = "2.5.4"
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3398
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
3399
|
+
dependencies = [
|
3400
|
+
"form_urlencoded",
|
3401
|
+
"idna",
|
3402
|
+
"percent-encoding",
|
3403
|
+
]
|
3404
|
+
|
3405
|
+
[[package]]
|
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"
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3415
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
3416
|
+
dependencies = [
|
3417
|
+
"getrandom 0.3.3",
|
3418
|
+
"js-sys",
|
3419
|
+
"wasm-bindgen",
|
3420
|
+
]
|
3421
|
+
|
3422
|
+
[[package]]
|
3423
|
+
name = "vcpkg"
|
3424
|
+
version = "0.2.15"
|
3425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3426
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
3427
|
+
|
3428
|
+
[[package]]
|
3429
|
+
name = "version_check"
|
3430
|
+
version = "0.9.5"
|
1701
3431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1702
|
-
checksum = "
|
1703
|
-
dependencies = [
|
1704
|
-
"proc-macro2",
|
1705
|
-
"quote",
|
1706
|
-
"syn 2.0.52",
|
1707
|
-
]
|
3432
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
1708
3433
|
|
1709
3434
|
[[package]]
|
1710
|
-
name = "
|
1711
|
-
version = "
|
3435
|
+
name = "walkdir"
|
3436
|
+
version = "2.5.0"
|
1712
3437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1713
|
-
checksum = "
|
3438
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1714
3439
|
dependencies = [
|
1715
|
-
"
|
3440
|
+
"same-file",
|
3441
|
+
"winapi-util",
|
1716
3442
|
]
|
1717
3443
|
|
1718
3444
|
[[package]]
|
1719
|
-
name = "
|
1720
|
-
version = "0.3.
|
3445
|
+
name = "want"
|
3446
|
+
version = "0.3.1"
|
1721
3447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1722
|
-
checksum = "
|
3448
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
3449
|
+
dependencies = [
|
3450
|
+
"try-lock",
|
3451
|
+
]
|
1723
3452
|
|
1724
3453
|
[[package]]
|
1725
|
-
name = "
|
1726
|
-
version = "
|
3454
|
+
name = "wasi"
|
3455
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
1727
3456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1728
|
-
checksum = "
|
3457
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
1729
3458
|
|
1730
3459
|
[[package]]
|
1731
|
-
name = "
|
1732
|
-
version = "0.
|
3460
|
+
name = "wasi"
|
3461
|
+
version = "0.14.2+wasi-0.2.4"
|
1733
3462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1734
|
-
checksum = "
|
3463
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
1735
3464
|
dependencies = [
|
1736
|
-
"
|
3465
|
+
"wit-bindgen-rt",
|
1737
3466
|
]
|
1738
3467
|
|
1739
3468
|
[[package]]
|
1740
|
-
name = "
|
1741
|
-
version = "0.
|
3469
|
+
name = "wasm-bindgen"
|
3470
|
+
version = "0.2.100"
|
1742
3471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1743
|
-
checksum = "
|
3472
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
1744
3473
|
dependencies = [
|
1745
|
-
"
|
3474
|
+
"cfg-if",
|
3475
|
+
"once_cell",
|
3476
|
+
"rustversion",
|
3477
|
+
"wasm-bindgen-macro",
|
1746
3478
|
]
|
1747
3479
|
|
1748
3480
|
[[package]]
|
1749
|
-
name = "
|
1750
|
-
version = "
|
1751
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1752
|
-
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
1753
|
-
|
1754
|
-
[[package]]
|
1755
|
-
name = "unicode-width"
|
1756
|
-
version = "0.1.11"
|
3481
|
+
name = "wasm-bindgen-backend"
|
3482
|
+
version = "0.2.100"
|
1757
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1758
|
-
checksum = "
|
3484
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
3485
|
+
dependencies = [
|
3486
|
+
"bumpalo",
|
3487
|
+
"log",
|
3488
|
+
"proc-macro2",
|
3489
|
+
"quote",
|
3490
|
+
"syn",
|
3491
|
+
"wasm-bindgen-shared",
|
3492
|
+
]
|
1759
3493
|
|
1760
3494
|
[[package]]
|
1761
|
-
name = "
|
1762
|
-
version = "0.
|
3495
|
+
name = "wasm-bindgen-futures"
|
3496
|
+
version = "0.4.50"
|
1763
3497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1764
|
-
checksum = "
|
3498
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
3499
|
+
dependencies = [
|
3500
|
+
"cfg-if",
|
3501
|
+
"js-sys",
|
3502
|
+
"once_cell",
|
3503
|
+
"wasm-bindgen",
|
3504
|
+
"web-sys",
|
3505
|
+
]
|
1765
3506
|
|
1766
3507
|
[[package]]
|
1767
|
-
name = "
|
1768
|
-
version = "0.
|
3508
|
+
name = "wasm-bindgen-macro"
|
3509
|
+
version = "0.2.100"
|
1769
3510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1770
|
-
checksum = "
|
3511
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
3512
|
+
dependencies = [
|
3513
|
+
"quote",
|
3514
|
+
"wasm-bindgen-macro-support",
|
3515
|
+
]
|
1771
3516
|
|
1772
3517
|
[[package]]
|
1773
|
-
name = "
|
1774
|
-
version = "2.
|
3518
|
+
name = "wasm-bindgen-macro-support"
|
3519
|
+
version = "0.2.100"
|
1775
3520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1776
|
-
checksum = "
|
3521
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
1777
3522
|
dependencies = [
|
1778
|
-
"
|
1779
|
-
"
|
1780
|
-
"
|
1781
|
-
"
|
1782
|
-
"
|
1783
|
-
"rustls",
|
1784
|
-
"rustls-pki-types",
|
1785
|
-
"rustls-webpki",
|
1786
|
-
"serde",
|
1787
|
-
"serde_json",
|
1788
|
-
"url",
|
1789
|
-
"webpki-roots",
|
3523
|
+
"proc-macro2",
|
3524
|
+
"quote",
|
3525
|
+
"syn",
|
3526
|
+
"wasm-bindgen-backend",
|
3527
|
+
"wasm-bindgen-shared",
|
1790
3528
|
]
|
1791
3529
|
|
1792
3530
|
[[package]]
|
1793
|
-
name = "
|
1794
|
-
version = "2.
|
3531
|
+
name = "wasm-bindgen-shared"
|
3532
|
+
version = "0.2.100"
|
1795
3533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1796
|
-
checksum = "
|
3534
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
1797
3535
|
dependencies = [
|
1798
|
-
"
|
1799
|
-
"idna",
|
1800
|
-
"percent-encoding",
|
3536
|
+
"unicode-ident",
|
1801
3537
|
]
|
1802
3538
|
|
1803
3539
|
[[package]]
|
1804
|
-
name = "
|
1805
|
-
version = "0.2
|
3540
|
+
name = "wasm-streams"
|
3541
|
+
version = "0.4.2"
|
1806
3542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1807
|
-
checksum = "
|
3543
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
3544
|
+
dependencies = [
|
3545
|
+
"futures-util",
|
3546
|
+
"js-sys",
|
3547
|
+
"wasm-bindgen",
|
3548
|
+
"wasm-bindgen-futures",
|
3549
|
+
"web-sys",
|
3550
|
+
]
|
1808
3551
|
|
1809
3552
|
[[package]]
|
1810
|
-
name = "
|
1811
|
-
version = "0.
|
3553
|
+
name = "web-sys"
|
3554
|
+
version = "0.3.77"
|
1812
3555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1813
|
-
checksum = "
|
3556
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
3557
|
+
dependencies = [
|
3558
|
+
"js-sys",
|
3559
|
+
"wasm-bindgen",
|
3560
|
+
]
|
1814
3561
|
|
1815
3562
|
[[package]]
|
1816
|
-
name = "
|
1817
|
-
version = "
|
3563
|
+
name = "web-time"
|
3564
|
+
version = "1.1.0"
|
1818
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1819
|
-
checksum = "
|
3566
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
1820
3567
|
dependencies = [
|
1821
|
-
"
|
1822
|
-
"
|
3568
|
+
"js-sys",
|
3569
|
+
"wasm-bindgen",
|
1823
3570
|
]
|
1824
3571
|
|
1825
3572
|
[[package]]
|
1826
|
-
name = "
|
1827
|
-
version = "0.11
|
3573
|
+
name = "webpki-roots"
|
3574
|
+
version = "0.26.11"
|
1828
3575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1829
|
-
checksum = "
|
3576
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
3577
|
+
dependencies = [
|
3578
|
+
"webpki-roots 1.0.1",
|
3579
|
+
]
|
1830
3580
|
|
1831
3581
|
[[package]]
|
1832
3582
|
name = "webpki-roots"
|
1833
|
-
version = "0.
|
3583
|
+
version = "1.0.1"
|
1834
3584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1835
|
-
checksum = "
|
3585
|
+
checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502"
|
1836
3586
|
dependencies = [
|
1837
3587
|
"rustls-pki-types",
|
1838
3588
|
]
|
@@ -1855,11 +3605,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1855
3605
|
|
1856
3606
|
[[package]]
|
1857
3607
|
name = "winapi-util"
|
1858
|
-
version = "0.1.
|
3608
|
+
version = "0.1.9"
|
1859
3609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
-
checksum = "
|
3610
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1861
3611
|
dependencies = [
|
1862
|
-
"
|
3612
|
+
"windows-sys 0.59.0",
|
1863
3613
|
]
|
1864
3614
|
|
1865
3615
|
[[package]]
|
@@ -1868,6 +3618,76 @@ version = "0.4.0"
|
|
1868
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1869
3619
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1870
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
|
+
|
3656
|
+
[[package]]
|
3657
|
+
name = "windows-link"
|
3658
|
+
version = "0.1.3"
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3660
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
3661
|
+
|
3662
|
+
[[package]]
|
3663
|
+
name = "windows-registry"
|
3664
|
+
version = "0.5.3"
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3666
|
+
checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
|
3667
|
+
dependencies = [
|
3668
|
+
"windows-link",
|
3669
|
+
"windows-result",
|
3670
|
+
"windows-strings",
|
3671
|
+
]
|
3672
|
+
|
3673
|
+
[[package]]
|
3674
|
+
name = "windows-result"
|
3675
|
+
version = "0.3.4"
|
3676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3677
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
3678
|
+
dependencies = [
|
3679
|
+
"windows-link",
|
3680
|
+
]
|
3681
|
+
|
3682
|
+
[[package]]
|
3683
|
+
name = "windows-strings"
|
3684
|
+
version = "0.4.2"
|
3685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3686
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
3687
|
+
dependencies = [
|
3688
|
+
"windows-link",
|
3689
|
+
]
|
3690
|
+
|
1871
3691
|
[[package]]
|
1872
3692
|
name = "windows-sys"
|
1873
3693
|
version = "0.48.0"
|
@@ -1883,7 +3703,25 @@ version = "0.52.0"
|
|
1883
3703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1884
3704
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1885
3705
|
dependencies = [
|
1886
|
-
"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",
|
3716
|
+
]
|
3717
|
+
|
3718
|
+
[[package]]
|
3719
|
+
name = "windows-sys"
|
3720
|
+
version = "0.60.2"
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3722
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
3723
|
+
dependencies = [
|
3724
|
+
"windows-targets 0.53.2",
|
1887
3725
|
]
|
1888
3726
|
|
1889
3727
|
[[package]]
|
@@ -1903,17 +3741,34 @@ dependencies = [
|
|
1903
3741
|
|
1904
3742
|
[[package]]
|
1905
3743
|
name = "windows-targets"
|
1906
|
-
version = "0.52.
|
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",
|
3756
|
+
]
|
3757
|
+
|
3758
|
+
[[package]]
|
3759
|
+
name = "windows-targets"
|
3760
|
+
version = "0.53.2"
|
1907
3761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1908
|
-
checksum = "
|
3762
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
1909
3763
|
dependencies = [
|
1910
|
-
"windows_aarch64_gnullvm 0.
|
1911
|
-
"windows_aarch64_msvc 0.
|
1912
|
-
"windows_i686_gnu 0.
|
1913
|
-
"
|
1914
|
-
"
|
1915
|
-
"
|
1916
|
-
"
|
3764
|
+
"windows_aarch64_gnullvm 0.53.0",
|
3765
|
+
"windows_aarch64_msvc 0.53.0",
|
3766
|
+
"windows_i686_gnu 0.53.0",
|
3767
|
+
"windows_i686_gnullvm 0.53.0",
|
3768
|
+
"windows_i686_msvc 0.53.0",
|
3769
|
+
"windows_x86_64_gnu 0.53.0",
|
3770
|
+
"windows_x86_64_gnullvm 0.53.0",
|
3771
|
+
"windows_x86_64_msvc 0.53.0",
|
1917
3772
|
]
|
1918
3773
|
|
1919
3774
|
[[package]]
|
@@ -1924,9 +3779,15 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1924
3779
|
|
1925
3780
|
[[package]]
|
1926
3781
|
name = "windows_aarch64_gnullvm"
|
1927
|
-
version = "0.52.
|
3782
|
+
version = "0.52.6"
|
3783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3784
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
3785
|
+
|
3786
|
+
[[package]]
|
3787
|
+
name = "windows_aarch64_gnullvm"
|
3788
|
+
version = "0.53.0"
|
1928
3789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1929
|
-
checksum = "
|
3790
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1930
3791
|
|
1931
3792
|
[[package]]
|
1932
3793
|
name = "windows_aarch64_msvc"
|
@@ -1936,9 +3797,15 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1936
3797
|
|
1937
3798
|
[[package]]
|
1938
3799
|
name = "windows_aarch64_msvc"
|
1939
|
-
version = "0.52.
|
3800
|
+
version = "0.52.6"
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3802
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
3803
|
+
|
3804
|
+
[[package]]
|
3805
|
+
name = "windows_aarch64_msvc"
|
3806
|
+
version = "0.53.0"
|
1940
3807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1941
|
-
checksum = "
|
3808
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1942
3809
|
|
1943
3810
|
[[package]]
|
1944
3811
|
name = "windows_i686_gnu"
|
@@ -1948,9 +3815,27 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1948
3815
|
|
1949
3816
|
[[package]]
|
1950
3817
|
name = "windows_i686_gnu"
|
1951
|
-
version = "0.52.
|
3818
|
+
version = "0.52.6"
|
3819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3820
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
3821
|
+
|
3822
|
+
[[package]]
|
3823
|
+
name = "windows_i686_gnu"
|
3824
|
+
version = "0.53.0"
|
3825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3826
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
3827
|
+
|
3828
|
+
[[package]]
|
3829
|
+
name = "windows_i686_gnullvm"
|
3830
|
+
version = "0.52.6"
|
1952
3831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1953
|
-
checksum = "
|
3832
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
3833
|
+
|
3834
|
+
[[package]]
|
3835
|
+
name = "windows_i686_gnullvm"
|
3836
|
+
version = "0.53.0"
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3838
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1954
3839
|
|
1955
3840
|
[[package]]
|
1956
3841
|
name = "windows_i686_msvc"
|
@@ -1960,9 +3845,15 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1960
3845
|
|
1961
3846
|
[[package]]
|
1962
3847
|
name = "windows_i686_msvc"
|
1963
|
-
version = "0.52.
|
3848
|
+
version = "0.52.6"
|
3849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3850
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
3851
|
+
|
3852
|
+
[[package]]
|
3853
|
+
name = "windows_i686_msvc"
|
3854
|
+
version = "0.53.0"
|
1964
3855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1965
|
-
checksum = "
|
3856
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1966
3857
|
|
1967
3858
|
[[package]]
|
1968
3859
|
name = "windows_x86_64_gnu"
|
@@ -1972,9 +3863,15 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1972
3863
|
|
1973
3864
|
[[package]]
|
1974
3865
|
name = "windows_x86_64_gnu"
|
1975
|
-
version = "0.52.
|
3866
|
+
version = "0.52.6"
|
3867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3868
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
3869
|
+
|
3870
|
+
[[package]]
|
3871
|
+
name = "windows_x86_64_gnu"
|
3872
|
+
version = "0.53.0"
|
1976
3873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1977
|
-
checksum = "
|
3874
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1978
3875
|
|
1979
3876
|
[[package]]
|
1980
3877
|
name = "windows_x86_64_gnullvm"
|
@@ -1984,9 +3881,15 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1984
3881
|
|
1985
3882
|
[[package]]
|
1986
3883
|
name = "windows_x86_64_gnullvm"
|
1987
|
-
version = "0.52.
|
3884
|
+
version = "0.52.6"
|
3885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3886
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
3887
|
+
|
3888
|
+
[[package]]
|
3889
|
+
name = "windows_x86_64_gnullvm"
|
3890
|
+
version = "0.53.0"
|
1988
3891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1989
|
-
checksum = "
|
3892
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1990
3893
|
|
1991
3894
|
[[package]]
|
1992
3895
|
name = "windows_x86_64_msvc"
|
@@ -1996,68 +3899,189 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1996
3899
|
|
1997
3900
|
[[package]]
|
1998
3901
|
name = "windows_x86_64_msvc"
|
1999
|
-
version = "0.52.
|
3902
|
+
version = "0.52.6"
|
3903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3904
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
3905
|
+
|
3906
|
+
[[package]]
|
3907
|
+
name = "windows_x86_64_msvc"
|
3908
|
+
version = "0.53.0"
|
3909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3910
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
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
|
+
|
3921
|
+
[[package]]
|
3922
|
+
name = "wit-bindgen-rt"
|
3923
|
+
version = "0.39.0"
|
3924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3925
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
3926
|
+
dependencies = [
|
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"
|
2000
3949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2001
|
-
checksum = "
|
3950
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
3951
|
+
dependencies = [
|
3952
|
+
"serde",
|
3953
|
+
"stable_deref_trait",
|
3954
|
+
"yoke-derive 0.7.5",
|
3955
|
+
"zerofrom",
|
3956
|
+
]
|
2002
3957
|
|
2003
3958
|
[[package]]
|
2004
3959
|
name = "yoke"
|
2005
|
-
version = "0.
|
3960
|
+
version = "0.8.0"
|
2006
3961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2007
|
-
checksum = "
|
3962
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
2008
3963
|
dependencies = [
|
2009
3964
|
"serde",
|
2010
3965
|
"stable_deref_trait",
|
2011
|
-
"yoke-derive",
|
3966
|
+
"yoke-derive 0.8.0",
|
2012
3967
|
"zerofrom",
|
2013
3968
|
]
|
2014
3969
|
|
2015
3970
|
[[package]]
|
2016
3971
|
name = "yoke-derive"
|
2017
|
-
version = "0.7.
|
3972
|
+
version = "0.7.5"
|
3973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3974
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
3975
|
+
dependencies = [
|
3976
|
+
"proc-macro2",
|
3977
|
+
"quote",
|
3978
|
+
"syn",
|
3979
|
+
"synstructure",
|
3980
|
+
]
|
3981
|
+
|
3982
|
+
[[package]]
|
3983
|
+
name = "yoke-derive"
|
3984
|
+
version = "0.8.0"
|
2018
3985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "
|
3986
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
2020
3987
|
dependencies = [
|
2021
3988
|
"proc-macro2",
|
2022
3989
|
"quote",
|
2023
|
-
"syn
|
3990
|
+
"syn",
|
2024
3991
|
"synstructure",
|
2025
3992
|
]
|
2026
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
|
+
|
2027
4014
|
[[package]]
|
2028
4015
|
name = "zerofrom"
|
2029
|
-
version = "0.1.
|
4016
|
+
version = "0.1.6"
|
2030
4017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2031
|
-
checksum = "
|
4018
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
2032
4019
|
dependencies = [
|
2033
4020
|
"zerofrom-derive",
|
2034
4021
|
]
|
2035
4022
|
|
2036
4023
|
[[package]]
|
2037
4024
|
name = "zerofrom-derive"
|
2038
|
-
version = "0.1.
|
4025
|
+
version = "0.1.6"
|
2039
4026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2040
|
-
checksum = "
|
4027
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
2041
4028
|
dependencies = [
|
2042
4029
|
"proc-macro2",
|
2043
4030
|
"quote",
|
2044
|
-
"syn
|
4031
|
+
"syn",
|
2045
4032
|
"synstructure",
|
2046
4033
|
]
|
2047
4034
|
|
2048
4035
|
[[package]]
|
2049
4036
|
name = "zeroize"
|
2050
|
-
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"
|
2051
4066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2052
|
-
checksum = "
|
4067
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
4068
|
+
dependencies = [
|
4069
|
+
"proc-macro2",
|
4070
|
+
"quote",
|
4071
|
+
"syn",
|
4072
|
+
]
|
2053
4073
|
|
2054
4074
|
[[package]]
|
2055
4075
|
name = "zip"
|
2056
|
-
version = "
|
4076
|
+
version = "1.1.4"
|
2057
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2058
|
-
checksum = "
|
4078
|
+
checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164"
|
2059
4079
|
dependencies = [
|
2060
|
-
"
|
4080
|
+
"arbitrary",
|
2061
4081
|
"crc32fast",
|
2062
4082
|
"crossbeam-utils",
|
4083
|
+
"displaydoc",
|
4084
|
+
"indexmap",
|
4085
|
+
"num_enum",
|
4086
|
+
"thiserror 1.0.69",
|
2063
4087
|
]
|