red-candle 1.8.0-aarch64-linux
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 +7 -0
- data/Cargo.lock +5021 -0
- data/Cargo.toml +6 -0
- data/Gemfile +3 -0
- data/LICENSE +22 -0
- data/README.md +1171 -0
- data/Rakefile +167 -0
- data/bin/console +11 -0
- data/bin/setup +17 -0
- data/ext/candle/Cargo.toml +38 -0
- data/ext/candle/build.rs +117 -0
- data/ext/candle/extconf.rb +79 -0
- data/ext/candle/rustfmt.toml +63 -0
- data/ext/candle/src/gvl.rs +58 -0
- data/ext/candle/src/lib.rs +59 -0
- data/ext/candle/src/llm/constrained_generation_test.rs +395 -0
- data/ext/candle/src/llm/gemma.rs +313 -0
- data/ext/candle/src/llm/generation_config.rs +63 -0
- data/ext/candle/src/llm/glm4.rs +236 -0
- data/ext/candle/src/llm/granite.rs +308 -0
- data/ext/candle/src/llm/granitemoehybrid.rs +315 -0
- data/ext/candle/src/llm/llama.rs +396 -0
- data/ext/candle/src/llm/mistral.rs +309 -0
- data/ext/candle/src/llm/mod.rs +49 -0
- data/ext/candle/src/llm/phi.rs +369 -0
- data/ext/candle/src/llm/quantized_gguf.rs +734 -0
- data/ext/candle/src/llm/qwen.rs +261 -0
- data/ext/candle/src/llm/qwen3.rs +257 -0
- data/ext/candle/src/llm/text_generation.rs +284 -0
- data/ext/candle/src/ruby/device.rs +234 -0
- data/ext/candle/src/ruby/dtype.rs +39 -0
- data/ext/candle/src/ruby/embedding_model.rs +477 -0
- data/ext/candle/src/ruby/errors.rs +16 -0
- data/ext/candle/src/ruby/llm.rs +730 -0
- data/ext/candle/src/ruby/mod.rs +24 -0
- data/ext/candle/src/ruby/ner.rs +444 -0
- data/ext/candle/src/ruby/reranker.rs +488 -0
- data/ext/candle/src/ruby/result.rs +3 -0
- data/ext/candle/src/ruby/structured.rs +92 -0
- data/ext/candle/src/ruby/tensor.rs +731 -0
- data/ext/candle/src/ruby/tokenizer.rs +343 -0
- data/ext/candle/src/ruby/utils.rs +96 -0
- data/ext/candle/src/ruby/vlm.rs +330 -0
- data/ext/candle/src/structured/integration_test.rs +130 -0
- data/ext/candle/src/structured/mod.rs +31 -0
- data/ext/candle/src/structured/schema_processor.rs +215 -0
- data/ext/candle/src/structured/vocabulary_adapter.rs +152 -0
- data/ext/candle/src/structured/vocabulary_adapter_real_test.rs +66 -0
- data/ext/candle/src/structured/vocabulary_adapter_simple_test.rs +70 -0
- data/ext/candle/src/tokenizer/loader.rs +108 -0
- data/ext/candle/src/tokenizer/mod.rs +104 -0
- data/ext/candle/tests/device_tests.rs +43 -0
- data/ext/candle/tests/tensor_tests.rs +162 -0
- data/lib/candle/3.1/candle.so +0 -0
- data/lib/candle/3.2/candle.so +0 -0
- data/lib/candle/3.3/candle.so +0 -0
- data/lib/candle/3.4/candle.so +0 -0
- data/lib/candle/4.0/candle.so +0 -0
- data/lib/candle/agent.rb +68 -0
- data/lib/candle/build_info.rb +67 -0
- data/lib/candle/device_utils.rb +10 -0
- data/lib/candle/embedding_model.rb +75 -0
- data/lib/candle/embedding_model_type.rb +31 -0
- data/lib/candle/llm.rb +595 -0
- data/lib/candle/logger.rb +149 -0
- data/lib/candle/ner.rb +368 -0
- data/lib/candle/reranker.rb +45 -0
- data/lib/candle/tensor.rb +99 -0
- data/lib/candle/tokenizer.rb +139 -0
- data/lib/candle/tool.rb +47 -0
- data/lib/candle/tool_call_parser.rb +57 -0
- data/lib/candle/version.rb +5 -0
- data/lib/candle/vlm.rb +31 -0
- data/lib/candle.rb +29 -0
- data/lib/red-candle.rb +1 -0
- metadata +309 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,5021 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "accelerate-src"
|
|
7
|
+
version = "0.3.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "415ed64958754dbe991900f3940677e6a7eefb4d7367afd70d642677b0c7d19d"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "addr2line"
|
|
13
|
+
version = "0.24.2"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"gimli",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
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"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"cfg-if",
|
|
33
|
+
"getrandom 0.3.3",
|
|
34
|
+
"once_cell",
|
|
35
|
+
"serde",
|
|
36
|
+
"version_check",
|
|
37
|
+
"zerocopy",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
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 = "aligned"
|
|
51
|
+
version = "0.4.3"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"as-slice",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "aligned-vec"
|
|
60
|
+
version = "0.6.4"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"equator",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "allocator-api2"
|
|
69
|
+
version = "0.2.21"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "android_system_properties"
|
|
75
|
+
version = "0.1.5"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"libc",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "anyhow"
|
|
84
|
+
version = "1.0.99"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "arbitrary"
|
|
90
|
+
version = "1.4.2"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "arg_enum_proc_macro"
|
|
96
|
+
version = "0.3.4"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"proc-macro2",
|
|
101
|
+
"quote",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "arrayvec"
|
|
107
|
+
version = "0.7.6"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "as-slice"
|
|
113
|
+
version = "0.2.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"stable_deref_trait",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "atomic-waker"
|
|
122
|
+
version = "1.1.2"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "autocfg"
|
|
128
|
+
version = "1.5.0"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "av-scenechange"
|
|
134
|
+
version = "0.14.1"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"aligned",
|
|
139
|
+
"anyhow",
|
|
140
|
+
"arg_enum_proc_macro",
|
|
141
|
+
"arrayvec",
|
|
142
|
+
"log",
|
|
143
|
+
"num-rational",
|
|
144
|
+
"num-traits",
|
|
145
|
+
"pastey",
|
|
146
|
+
"rayon",
|
|
147
|
+
"thiserror 2.0.16",
|
|
148
|
+
"v_frame",
|
|
149
|
+
"y4m",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "av1-grain"
|
|
154
|
+
version = "0.2.5"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"anyhow",
|
|
159
|
+
"arrayvec",
|
|
160
|
+
"log",
|
|
161
|
+
"nom 8.0.0",
|
|
162
|
+
"num-rational",
|
|
163
|
+
"v_frame",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "avif-serialize"
|
|
168
|
+
version = "0.8.8"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"arrayvec",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "aws-lc-rs"
|
|
177
|
+
version = "1.17.0"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"aws-lc-sys",
|
|
182
|
+
"zeroize",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "aws-lc-sys"
|
|
187
|
+
version = "0.41.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"cc",
|
|
192
|
+
"cmake",
|
|
193
|
+
"dunce",
|
|
194
|
+
"fs_extra",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "backtrace"
|
|
199
|
+
version = "0.3.75"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"addr2line",
|
|
204
|
+
"cfg-if",
|
|
205
|
+
"libc",
|
|
206
|
+
"miniz_oxide",
|
|
207
|
+
"object",
|
|
208
|
+
"rustc-demangle",
|
|
209
|
+
"windows-targets 0.52.6",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "base16ct"
|
|
214
|
+
version = "0.2.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "base64"
|
|
220
|
+
version = "0.13.1"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "base64"
|
|
226
|
+
version = "0.22.1"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "bincode"
|
|
232
|
+
version = "2.0.1"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"bincode_derive",
|
|
237
|
+
"serde",
|
|
238
|
+
"unty",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "bincode_derive"
|
|
243
|
+
version = "2.0.1"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"virtue",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "bindgen"
|
|
252
|
+
version = "0.69.5"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"bitflags 2.9.4",
|
|
257
|
+
"cexpr",
|
|
258
|
+
"clang-sys",
|
|
259
|
+
"itertools 0.11.0",
|
|
260
|
+
"lazy_static",
|
|
261
|
+
"lazycell",
|
|
262
|
+
"proc-macro2",
|
|
263
|
+
"quote",
|
|
264
|
+
"regex",
|
|
265
|
+
"rustc-hash 1.1.0",
|
|
266
|
+
"shlex",
|
|
267
|
+
"syn",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "bindgen_cuda"
|
|
272
|
+
version = "0.1.6"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "282be55fb326843bb67cccceeeaf21c961ef303f60018f9a2ab69494dad8eaf9"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"glob",
|
|
277
|
+
"num_cpus",
|
|
278
|
+
"rayon",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "bit-set"
|
|
283
|
+
version = "0.8.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"bit-vec",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "bit-vec"
|
|
292
|
+
version = "0.8.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "bit_field"
|
|
298
|
+
version = "0.10.3"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "bitflags"
|
|
304
|
+
version = "1.3.2"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "bitflags"
|
|
310
|
+
version = "2.9.4"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "bitstream-io"
|
|
316
|
+
version = "4.9.0"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"core2",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "block"
|
|
325
|
+
version = "0.1.6"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "block-buffer"
|
|
331
|
+
version = "0.10.4"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"generic-array",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "block2"
|
|
340
|
+
version = "0.6.2"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"objc2",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "built"
|
|
349
|
+
version = "0.8.0"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "bumpalo"
|
|
355
|
+
version = "3.19.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "bytemuck"
|
|
361
|
+
version = "1.23.2"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"bytemuck_derive",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "bytemuck_derive"
|
|
370
|
+
version = "1.10.1"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"proc-macro2",
|
|
375
|
+
"quote",
|
|
376
|
+
"syn",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "byteorder"
|
|
381
|
+
version = "1.5.0"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "byteorder-lite"
|
|
387
|
+
version = "0.1.0"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "bytes"
|
|
393
|
+
version = "1.11.1"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "candle"
|
|
399
|
+
version = "0.1.0"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"candle-core",
|
|
402
|
+
"candle-nn",
|
|
403
|
+
"candle-transformers",
|
|
404
|
+
"half",
|
|
405
|
+
"hf-hub",
|
|
406
|
+
"image",
|
|
407
|
+
"magnus",
|
|
408
|
+
"outlines-core",
|
|
409
|
+
"rand 0.10.1",
|
|
410
|
+
"safetensors 0.3.3",
|
|
411
|
+
"serde",
|
|
412
|
+
"serde_json",
|
|
413
|
+
"tokenizers 0.22.0",
|
|
414
|
+
"tokio",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "candle-core"
|
|
419
|
+
version = "0.9.2"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "c15b675b80d994b2eadb20a4bbe434eabeb454eac3ee5e2b4cf6f147ee9be091"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"accelerate-src",
|
|
424
|
+
"byteorder",
|
|
425
|
+
"candle-kernels",
|
|
426
|
+
"candle-metal-kernels",
|
|
427
|
+
"candle-ug",
|
|
428
|
+
"cudarc 0.19.3",
|
|
429
|
+
"float8 0.6.1",
|
|
430
|
+
"gemm 0.19.0",
|
|
431
|
+
"half",
|
|
432
|
+
"intel-mkl-src",
|
|
433
|
+
"libc",
|
|
434
|
+
"libm",
|
|
435
|
+
"memmap2",
|
|
436
|
+
"num-traits",
|
|
437
|
+
"num_cpus",
|
|
438
|
+
"objc2-foundation",
|
|
439
|
+
"objc2-metal",
|
|
440
|
+
"rand 0.9.4",
|
|
441
|
+
"rand_distr",
|
|
442
|
+
"rayon",
|
|
443
|
+
"safetensors 0.7.0",
|
|
444
|
+
"thiserror 2.0.16",
|
|
445
|
+
"yoke 0.8.1",
|
|
446
|
+
"zip",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "candle-kernels"
|
|
451
|
+
version = "0.9.2"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "b8455f84bd810047c7c41216683c1020c915a9f8a740b3b0eabdd4fb2fbaa660"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"bindgen_cuda",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "candle-metal-kernels"
|
|
460
|
+
version = "0.9.2"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "2fdfe9d06de16ce49961e49084e5b79a75a9bdf157246e7c7b6328e87a7aa25d"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"half",
|
|
465
|
+
"objc2",
|
|
466
|
+
"objc2-foundation",
|
|
467
|
+
"objc2-metal",
|
|
468
|
+
"once_cell",
|
|
469
|
+
"thiserror 2.0.16",
|
|
470
|
+
"tracing",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "candle-nn"
|
|
475
|
+
version = "0.9.2"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "3045fa9e7aef8567d209a27d56b692f60b96f4d0569f4c3011f8ca6715c65e03"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"candle-core",
|
|
480
|
+
"candle-metal-kernels",
|
|
481
|
+
"half",
|
|
482
|
+
"libc",
|
|
483
|
+
"num-traits",
|
|
484
|
+
"objc2-metal",
|
|
485
|
+
"rayon",
|
|
486
|
+
"safetensors 0.7.0",
|
|
487
|
+
"serde",
|
|
488
|
+
"thiserror 2.0.16",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "candle-transformers"
|
|
493
|
+
version = "0.9.2"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "b538ec4aa807c416a2ddd3621044888f188827862e2a6fcacba4738e89795d01"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"byteorder",
|
|
498
|
+
"candle-core",
|
|
499
|
+
"candle-nn",
|
|
500
|
+
"fancy-regex 0.17.0",
|
|
501
|
+
"num-traits",
|
|
502
|
+
"rand 0.9.4",
|
|
503
|
+
"rayon",
|
|
504
|
+
"serde",
|
|
505
|
+
"serde_json",
|
|
506
|
+
"serde_plain",
|
|
507
|
+
"tracing",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "candle-ug"
|
|
512
|
+
version = "0.9.2"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "c22d62be69068bf58987a45f690612739d8d2ea1bf508c1b87dc6815a019575d"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"ug",
|
|
517
|
+
"ug-cuda",
|
|
518
|
+
"ug-metal",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "castaway"
|
|
523
|
+
version = "0.2.4"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"rustversion",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "cc"
|
|
532
|
+
version = "1.2.37"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"find-msvc-tools",
|
|
537
|
+
"jobserver",
|
|
538
|
+
"libc",
|
|
539
|
+
"shlex",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "cexpr"
|
|
544
|
+
version = "0.6.0"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"nom 7.1.3",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "cfg-if"
|
|
553
|
+
version = "1.0.3"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "cfg_aliases"
|
|
559
|
+
version = "0.2.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "chacha20"
|
|
565
|
+
version = "0.10.0"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"cfg-if",
|
|
570
|
+
"cpufeatures 0.3.0",
|
|
571
|
+
"rand_core 0.10.1",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "chrono"
|
|
576
|
+
version = "0.4.42"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"iana-time-zone",
|
|
581
|
+
"js-sys",
|
|
582
|
+
"num-traits",
|
|
583
|
+
"wasm-bindgen",
|
|
584
|
+
"windows-link 0.2.0",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "clang-sys"
|
|
589
|
+
version = "1.8.1"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"glob",
|
|
594
|
+
"libc",
|
|
595
|
+
"libloading 0.8.8",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "cmake"
|
|
600
|
+
version = "0.1.54"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"cc",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "color_quant"
|
|
609
|
+
version = "1.1.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "compact_str"
|
|
615
|
+
version = "0.9.0"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"castaway",
|
|
620
|
+
"cfg-if",
|
|
621
|
+
"itoa",
|
|
622
|
+
"rustversion",
|
|
623
|
+
"ryu",
|
|
624
|
+
"serde",
|
|
625
|
+
"static_assertions",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "console"
|
|
630
|
+
version = "0.15.11"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"encode_unicode",
|
|
635
|
+
"libc",
|
|
636
|
+
"once_cell",
|
|
637
|
+
"unicode-width",
|
|
638
|
+
"windows-sys 0.59.0",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "core-foundation"
|
|
643
|
+
version = "0.9.4"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"core-foundation-sys",
|
|
648
|
+
"libc",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "core-foundation-sys"
|
|
653
|
+
version = "0.8.7"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "core-graphics-types"
|
|
659
|
+
version = "0.1.3"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"bitflags 1.3.2",
|
|
664
|
+
"core-foundation",
|
|
665
|
+
"libc",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "core2"
|
|
670
|
+
version = "0.4.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"memchr",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "cpufeatures"
|
|
679
|
+
version = "0.2.17"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"libc",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "cpufeatures"
|
|
688
|
+
version = "0.3.0"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"libc",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "crc32fast"
|
|
697
|
+
version = "1.5.0"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"cfg-if",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "crossbeam-deque"
|
|
706
|
+
version = "0.8.6"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"crossbeam-epoch",
|
|
711
|
+
"crossbeam-utils",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "crossbeam-epoch"
|
|
716
|
+
version = "0.9.18"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"crossbeam-utils",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "crossbeam-utils"
|
|
725
|
+
version = "0.8.21"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "crunchy"
|
|
731
|
+
version = "0.2.4"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "crypto-common"
|
|
737
|
+
version = "0.1.6"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"generic-array",
|
|
742
|
+
"typenum",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "cudarc"
|
|
747
|
+
version = "0.17.8"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "0bf99ab37ee7072d64d906aa2dada9a3422f1d975cdf8c8055a573bc84897ed8"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"half",
|
|
752
|
+
"libloading 0.8.8",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "cudarc"
|
|
757
|
+
version = "0.19.3"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "6468cb7fa330840f3ebcd8df51edc0e7bf5c18df524792ce6004c6821851cdf3"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"float8 0.7.0",
|
|
762
|
+
"half",
|
|
763
|
+
"libloading 0.9.0",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "darling"
|
|
768
|
+
version = "0.20.11"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"darling_core",
|
|
773
|
+
"darling_macro",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "darling_core"
|
|
778
|
+
version = "0.20.11"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"fnv",
|
|
783
|
+
"ident_case",
|
|
784
|
+
"proc-macro2",
|
|
785
|
+
"quote",
|
|
786
|
+
"strsim",
|
|
787
|
+
"syn",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "darling_macro"
|
|
792
|
+
version = "0.20.11"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"darling_core",
|
|
797
|
+
"quote",
|
|
798
|
+
"syn",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "dary_heap"
|
|
803
|
+
version = "0.3.7"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"serde",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "derive_builder"
|
|
812
|
+
version = "0.20.2"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"derive_builder_macro",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "derive_builder_core"
|
|
821
|
+
version = "0.20.2"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"darling",
|
|
826
|
+
"proc-macro2",
|
|
827
|
+
"quote",
|
|
828
|
+
"syn",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "derive_builder_macro"
|
|
833
|
+
version = "0.20.2"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"derive_builder_core",
|
|
838
|
+
"syn",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "digest"
|
|
843
|
+
version = "0.10.7"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"block-buffer",
|
|
848
|
+
"crypto-common",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "directories"
|
|
853
|
+
version = "5.0.1"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"dirs-sys",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "dirs"
|
|
862
|
+
version = "5.0.1"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"dirs-sys",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "dirs-sys"
|
|
871
|
+
version = "0.4.1"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"libc",
|
|
876
|
+
"option-ext",
|
|
877
|
+
"redox_users",
|
|
878
|
+
"windows-sys 0.48.0",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "dispatch2"
|
|
883
|
+
version = "0.3.1"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"bitflags 2.9.4",
|
|
888
|
+
"objc2",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "displaydoc"
|
|
893
|
+
version = "0.2.5"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"proc-macro2",
|
|
898
|
+
"quote",
|
|
899
|
+
"syn",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "dunce"
|
|
904
|
+
version = "1.0.5"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "dyn-stack"
|
|
910
|
+
version = "0.13.0"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "490bd48eb68fffcfed519b4edbfd82c69cbe741d175b84f0e0cbe8c57cbe0bdd"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"bytemuck",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "either"
|
|
919
|
+
version = "1.15.0"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "encode_unicode"
|
|
925
|
+
version = "1.0.0"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "encoding_rs"
|
|
931
|
+
version = "0.8.35"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"cfg-if",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "enum-as-inner"
|
|
940
|
+
version = "0.6.1"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"heck",
|
|
945
|
+
"proc-macro2",
|
|
946
|
+
"quote",
|
|
947
|
+
"syn",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "equator"
|
|
952
|
+
version = "0.4.2"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"equator-macro",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "equator-macro"
|
|
961
|
+
version = "0.4.2"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"proc-macro2",
|
|
966
|
+
"quote",
|
|
967
|
+
"syn",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "equivalent"
|
|
972
|
+
version = "1.0.2"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "errno"
|
|
978
|
+
version = "0.3.14"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"libc",
|
|
983
|
+
"windows-sys 0.52.0",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "esaxx-rs"
|
|
988
|
+
version = "0.1.10"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"cc",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "exr"
|
|
997
|
+
version = "1.74.0"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"bit_field",
|
|
1002
|
+
"half",
|
|
1003
|
+
"lebe",
|
|
1004
|
+
"miniz_oxide",
|
|
1005
|
+
"rayon-core",
|
|
1006
|
+
"smallvec",
|
|
1007
|
+
"zune-inflate",
|
|
1008
|
+
]
|
|
1009
|
+
|
|
1010
|
+
[[package]]
|
|
1011
|
+
name = "fancy-regex"
|
|
1012
|
+
version = "0.14.0"
|
|
1013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
|
1015
|
+
dependencies = [
|
|
1016
|
+
"bit-set",
|
|
1017
|
+
"regex-automata",
|
|
1018
|
+
"regex-syntax",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "fancy-regex"
|
|
1023
|
+
version = "0.17.0"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"bit-set",
|
|
1028
|
+
"regex-automata",
|
|
1029
|
+
"regex-syntax",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "fax"
|
|
1034
|
+
version = "0.2.6"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"fax_derive",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "fax_derive"
|
|
1043
|
+
version = "0.2.0"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"proc-macro2",
|
|
1048
|
+
"quote",
|
|
1049
|
+
"syn",
|
|
1050
|
+
]
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "fdeflate"
|
|
1054
|
+
version = "0.3.7"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"simd-adler32",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "filetime"
|
|
1063
|
+
version = "0.2.26"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"cfg-if",
|
|
1068
|
+
"libc",
|
|
1069
|
+
"libredox",
|
|
1070
|
+
"windows-sys 0.60.2",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "find-msvc-tools"
|
|
1075
|
+
version = "0.1.1"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "flate2"
|
|
1081
|
+
version = "1.1.2"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"crc32fast",
|
|
1086
|
+
"miniz_oxide",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "float8"
|
|
1091
|
+
version = "0.6.1"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "719a903cc23e4a89e87962c2a80fdb45cdaad0983a89bd150bb57b4c8571a7d5"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"cudarc 0.19.3",
|
|
1096
|
+
"half",
|
|
1097
|
+
"num-traits",
|
|
1098
|
+
"rand 0.9.4",
|
|
1099
|
+
"rand_distr",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "float8"
|
|
1104
|
+
version = "0.7.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "c2d1f04709a8ac06e8e8042875a3c466cc4832d3c1a18dbcb9dba3c6e83046bc"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"half",
|
|
1109
|
+
]
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "fnv"
|
|
1113
|
+
version = "1.0.7"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "foldhash"
|
|
1119
|
+
version = "0.1.5"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "foldhash"
|
|
1125
|
+
version = "0.2.0"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "foreign-types"
|
|
1131
|
+
version = "0.5.0"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"foreign-types-macros",
|
|
1136
|
+
"foreign-types-shared",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "foreign-types-macros"
|
|
1141
|
+
version = "0.2.3"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"proc-macro2",
|
|
1146
|
+
"quote",
|
|
1147
|
+
"syn",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "foreign-types-shared"
|
|
1152
|
+
version = "0.3.1"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "form_urlencoded"
|
|
1158
|
+
version = "1.2.2"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1161
|
+
dependencies = [
|
|
1162
|
+
"percent-encoding",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "fs_extra"
|
|
1167
|
+
version = "1.3.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "futures"
|
|
1173
|
+
version = "0.3.31"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"futures-channel",
|
|
1178
|
+
"futures-core",
|
|
1179
|
+
"futures-executor",
|
|
1180
|
+
"futures-io",
|
|
1181
|
+
"futures-sink",
|
|
1182
|
+
"futures-task",
|
|
1183
|
+
"futures-util",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "futures-channel"
|
|
1188
|
+
version = "0.3.31"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"futures-core",
|
|
1193
|
+
"futures-sink",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "futures-core"
|
|
1198
|
+
version = "0.3.31"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "futures-executor"
|
|
1204
|
+
version = "0.3.31"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"futures-core",
|
|
1209
|
+
"futures-task",
|
|
1210
|
+
"futures-util",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "futures-io"
|
|
1215
|
+
version = "0.3.31"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "futures-macro"
|
|
1221
|
+
version = "0.3.31"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"proc-macro2",
|
|
1226
|
+
"quote",
|
|
1227
|
+
"syn",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "futures-sink"
|
|
1232
|
+
version = "0.3.31"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "futures-task"
|
|
1238
|
+
version = "0.3.31"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "futures-util"
|
|
1244
|
+
version = "0.3.31"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"futures-channel",
|
|
1249
|
+
"futures-core",
|
|
1250
|
+
"futures-io",
|
|
1251
|
+
"futures-macro",
|
|
1252
|
+
"futures-sink",
|
|
1253
|
+
"futures-task",
|
|
1254
|
+
"memchr",
|
|
1255
|
+
"pin-project-lite",
|
|
1256
|
+
"pin-utils",
|
|
1257
|
+
"slab",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "gemm"
|
|
1262
|
+
version = "0.18.2"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"dyn-stack",
|
|
1267
|
+
"gemm-c32 0.18.2",
|
|
1268
|
+
"gemm-c64 0.18.2",
|
|
1269
|
+
"gemm-common 0.18.2",
|
|
1270
|
+
"gemm-f16 0.18.2",
|
|
1271
|
+
"gemm-f32 0.18.2",
|
|
1272
|
+
"gemm-f64 0.18.2",
|
|
1273
|
+
"num-complex",
|
|
1274
|
+
"num-traits",
|
|
1275
|
+
"paste",
|
|
1276
|
+
"raw-cpuid",
|
|
1277
|
+
"seq-macro",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "gemm"
|
|
1282
|
+
version = "0.19.0"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"dyn-stack",
|
|
1287
|
+
"gemm-c32 0.19.0",
|
|
1288
|
+
"gemm-c64 0.19.0",
|
|
1289
|
+
"gemm-common 0.19.0",
|
|
1290
|
+
"gemm-f16 0.19.0",
|
|
1291
|
+
"gemm-f32 0.19.0",
|
|
1292
|
+
"gemm-f64 0.19.0",
|
|
1293
|
+
"num-complex",
|
|
1294
|
+
"num-traits",
|
|
1295
|
+
"paste",
|
|
1296
|
+
"raw-cpuid",
|
|
1297
|
+
"seq-macro",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "gemm-c32"
|
|
1302
|
+
version = "0.18.2"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"dyn-stack",
|
|
1307
|
+
"gemm-common 0.18.2",
|
|
1308
|
+
"num-complex",
|
|
1309
|
+
"num-traits",
|
|
1310
|
+
"paste",
|
|
1311
|
+
"raw-cpuid",
|
|
1312
|
+
"seq-macro",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "gemm-c32"
|
|
1317
|
+
version = "0.19.0"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"dyn-stack",
|
|
1322
|
+
"gemm-common 0.19.0",
|
|
1323
|
+
"num-complex",
|
|
1324
|
+
"num-traits",
|
|
1325
|
+
"paste",
|
|
1326
|
+
"raw-cpuid",
|
|
1327
|
+
"seq-macro",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "gemm-c64"
|
|
1332
|
+
version = "0.18.2"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"dyn-stack",
|
|
1337
|
+
"gemm-common 0.18.2",
|
|
1338
|
+
"num-complex",
|
|
1339
|
+
"num-traits",
|
|
1340
|
+
"paste",
|
|
1341
|
+
"raw-cpuid",
|
|
1342
|
+
"seq-macro",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "gemm-c64"
|
|
1347
|
+
version = "0.19.0"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"dyn-stack",
|
|
1352
|
+
"gemm-common 0.19.0",
|
|
1353
|
+
"num-complex",
|
|
1354
|
+
"num-traits",
|
|
1355
|
+
"paste",
|
|
1356
|
+
"raw-cpuid",
|
|
1357
|
+
"seq-macro",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "gemm-common"
|
|
1362
|
+
version = "0.18.2"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"bytemuck",
|
|
1367
|
+
"dyn-stack",
|
|
1368
|
+
"half",
|
|
1369
|
+
"libm",
|
|
1370
|
+
"num-complex",
|
|
1371
|
+
"num-traits",
|
|
1372
|
+
"once_cell",
|
|
1373
|
+
"paste",
|
|
1374
|
+
"pulp 0.21.5",
|
|
1375
|
+
"raw-cpuid",
|
|
1376
|
+
"rayon",
|
|
1377
|
+
"seq-macro",
|
|
1378
|
+
"sysctl",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "gemm-common"
|
|
1383
|
+
version = "0.19.0"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"bytemuck",
|
|
1388
|
+
"dyn-stack",
|
|
1389
|
+
"half",
|
|
1390
|
+
"libm",
|
|
1391
|
+
"num-complex",
|
|
1392
|
+
"num-traits",
|
|
1393
|
+
"once_cell",
|
|
1394
|
+
"paste",
|
|
1395
|
+
"pulp 0.22.2",
|
|
1396
|
+
"raw-cpuid",
|
|
1397
|
+
"rayon",
|
|
1398
|
+
"seq-macro",
|
|
1399
|
+
"sysctl",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "gemm-f16"
|
|
1404
|
+
version = "0.18.2"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"dyn-stack",
|
|
1409
|
+
"gemm-common 0.18.2",
|
|
1410
|
+
"gemm-f32 0.18.2",
|
|
1411
|
+
"half",
|
|
1412
|
+
"num-complex",
|
|
1413
|
+
"num-traits",
|
|
1414
|
+
"paste",
|
|
1415
|
+
"raw-cpuid",
|
|
1416
|
+
"rayon",
|
|
1417
|
+
"seq-macro",
|
|
1418
|
+
]
|
|
1419
|
+
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "gemm-f16"
|
|
1422
|
+
version = "0.19.0"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
|
|
1425
|
+
dependencies = [
|
|
1426
|
+
"dyn-stack",
|
|
1427
|
+
"gemm-common 0.19.0",
|
|
1428
|
+
"gemm-f32 0.19.0",
|
|
1429
|
+
"half",
|
|
1430
|
+
"num-complex",
|
|
1431
|
+
"num-traits",
|
|
1432
|
+
"paste",
|
|
1433
|
+
"raw-cpuid",
|
|
1434
|
+
"rayon",
|
|
1435
|
+
"seq-macro",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "gemm-f32"
|
|
1440
|
+
version = "0.18.2"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"dyn-stack",
|
|
1445
|
+
"gemm-common 0.18.2",
|
|
1446
|
+
"num-complex",
|
|
1447
|
+
"num-traits",
|
|
1448
|
+
"paste",
|
|
1449
|
+
"raw-cpuid",
|
|
1450
|
+
"seq-macro",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "gemm-f32"
|
|
1455
|
+
version = "0.19.0"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"dyn-stack",
|
|
1460
|
+
"gemm-common 0.19.0",
|
|
1461
|
+
"num-complex",
|
|
1462
|
+
"num-traits",
|
|
1463
|
+
"paste",
|
|
1464
|
+
"raw-cpuid",
|
|
1465
|
+
"seq-macro",
|
|
1466
|
+
]
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "gemm-f64"
|
|
1470
|
+
version = "0.18.2"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"dyn-stack",
|
|
1475
|
+
"gemm-common 0.18.2",
|
|
1476
|
+
"num-complex",
|
|
1477
|
+
"num-traits",
|
|
1478
|
+
"paste",
|
|
1479
|
+
"raw-cpuid",
|
|
1480
|
+
"seq-macro",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "gemm-f64"
|
|
1485
|
+
version = "0.19.0"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"dyn-stack",
|
|
1490
|
+
"gemm-common 0.19.0",
|
|
1491
|
+
"num-complex",
|
|
1492
|
+
"num-traits",
|
|
1493
|
+
"paste",
|
|
1494
|
+
"raw-cpuid",
|
|
1495
|
+
"seq-macro",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "generic-array"
|
|
1500
|
+
version = "0.14.7"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"typenum",
|
|
1505
|
+
"version_check",
|
|
1506
|
+
]
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "getrandom"
|
|
1510
|
+
version = "0.2.16"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1513
|
+
dependencies = [
|
|
1514
|
+
"cfg-if",
|
|
1515
|
+
"js-sys",
|
|
1516
|
+
"libc",
|
|
1517
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1518
|
+
"wasm-bindgen",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "getrandom"
|
|
1523
|
+
version = "0.3.3"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"cfg-if",
|
|
1528
|
+
"js-sys",
|
|
1529
|
+
"libc",
|
|
1530
|
+
"r-efi 5.3.0",
|
|
1531
|
+
"wasi 0.14.5+wasi-0.2.4",
|
|
1532
|
+
"wasm-bindgen",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "getrandom"
|
|
1537
|
+
version = "0.4.2"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"cfg-if",
|
|
1542
|
+
"libc",
|
|
1543
|
+
"r-efi 6.0.0",
|
|
1544
|
+
"rand_core 0.10.1",
|
|
1545
|
+
"wasip2",
|
|
1546
|
+
"wasip3",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "getset"
|
|
1551
|
+
version = "0.1.6"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"proc-macro-error2",
|
|
1556
|
+
"proc-macro2",
|
|
1557
|
+
"quote",
|
|
1558
|
+
"syn",
|
|
1559
|
+
]
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "gif"
|
|
1563
|
+
version = "0.14.1"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"color_quant",
|
|
1568
|
+
"weezl",
|
|
1569
|
+
]
|
|
1570
|
+
|
|
1571
|
+
[[package]]
|
|
1572
|
+
name = "gimli"
|
|
1573
|
+
version = "0.31.1"
|
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "glob"
|
|
1579
|
+
version = "0.3.3"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "h2"
|
|
1585
|
+
version = "0.4.12"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"atomic-waker",
|
|
1590
|
+
"bytes",
|
|
1591
|
+
"fnv",
|
|
1592
|
+
"futures-core",
|
|
1593
|
+
"futures-sink",
|
|
1594
|
+
"http",
|
|
1595
|
+
"indexmap",
|
|
1596
|
+
"slab",
|
|
1597
|
+
"tokio",
|
|
1598
|
+
"tokio-util",
|
|
1599
|
+
"tracing",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "half"
|
|
1604
|
+
version = "2.6.0"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"bytemuck",
|
|
1609
|
+
"cfg-if",
|
|
1610
|
+
"crunchy",
|
|
1611
|
+
"num-traits",
|
|
1612
|
+
"rand 0.9.4",
|
|
1613
|
+
"rand_distr",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "hashbrown"
|
|
1618
|
+
version = "0.15.5"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"foldhash 0.1.5",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "hashbrown"
|
|
1627
|
+
version = "0.16.1"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1630
|
+
dependencies = [
|
|
1631
|
+
"allocator-api2",
|
|
1632
|
+
"equivalent",
|
|
1633
|
+
"foldhash 0.2.0",
|
|
1634
|
+
"serde",
|
|
1635
|
+
"serde_core",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "heck"
|
|
1640
|
+
version = "0.5.0"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "hermit-abi"
|
|
1646
|
+
version = "0.5.2"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "hf-hub"
|
|
1652
|
+
version = "0.4.1"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "112fa2f6ad4ab815b9e1b938b4b1e437032d055e2f92ed10fd6ab2e62d02c6b6"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"dirs",
|
|
1657
|
+
"futures",
|
|
1658
|
+
"http",
|
|
1659
|
+
"indicatif",
|
|
1660
|
+
"log",
|
|
1661
|
+
"num_cpus",
|
|
1662
|
+
"rand 0.8.6",
|
|
1663
|
+
"reqwest",
|
|
1664
|
+
"rustls",
|
|
1665
|
+
"serde",
|
|
1666
|
+
"serde_json",
|
|
1667
|
+
"thiserror 2.0.16",
|
|
1668
|
+
"tokio",
|
|
1669
|
+
"ureq",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "http"
|
|
1674
|
+
version = "1.3.1"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"bytes",
|
|
1679
|
+
"fnv",
|
|
1680
|
+
"itoa",
|
|
1681
|
+
]
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "http-body"
|
|
1685
|
+
version = "1.0.1"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"bytes",
|
|
1690
|
+
"http",
|
|
1691
|
+
]
|
|
1692
|
+
|
|
1693
|
+
[[package]]
|
|
1694
|
+
name = "http-body-util"
|
|
1695
|
+
version = "0.1.3"
|
|
1696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1698
|
+
dependencies = [
|
|
1699
|
+
"bytes",
|
|
1700
|
+
"futures-core",
|
|
1701
|
+
"http",
|
|
1702
|
+
"http-body",
|
|
1703
|
+
"pin-project-lite",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "httparse"
|
|
1708
|
+
version = "1.10.1"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "hyper"
|
|
1714
|
+
version = "1.7.0"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"atomic-waker",
|
|
1719
|
+
"bytes",
|
|
1720
|
+
"futures-channel",
|
|
1721
|
+
"futures-core",
|
|
1722
|
+
"h2",
|
|
1723
|
+
"http",
|
|
1724
|
+
"http-body",
|
|
1725
|
+
"httparse",
|
|
1726
|
+
"itoa",
|
|
1727
|
+
"pin-project-lite",
|
|
1728
|
+
"pin-utils",
|
|
1729
|
+
"smallvec",
|
|
1730
|
+
"tokio",
|
|
1731
|
+
"want",
|
|
1732
|
+
]
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "hyper-rustls"
|
|
1736
|
+
version = "0.27.7"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1739
|
+
dependencies = [
|
|
1740
|
+
"http",
|
|
1741
|
+
"hyper",
|
|
1742
|
+
"hyper-util",
|
|
1743
|
+
"rustls",
|
|
1744
|
+
"rustls-pki-types",
|
|
1745
|
+
"tokio",
|
|
1746
|
+
"tokio-rustls",
|
|
1747
|
+
"tower-service",
|
|
1748
|
+
"webpki-roots 1.0.2",
|
|
1749
|
+
]
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "hyper-util"
|
|
1753
|
+
version = "0.1.16"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"base64 0.22.1",
|
|
1758
|
+
"bytes",
|
|
1759
|
+
"futures-channel",
|
|
1760
|
+
"futures-core",
|
|
1761
|
+
"futures-util",
|
|
1762
|
+
"http",
|
|
1763
|
+
"http-body",
|
|
1764
|
+
"hyper",
|
|
1765
|
+
"ipnet",
|
|
1766
|
+
"libc",
|
|
1767
|
+
"percent-encoding",
|
|
1768
|
+
"pin-project-lite",
|
|
1769
|
+
"socket2",
|
|
1770
|
+
"system-configuration",
|
|
1771
|
+
"tokio",
|
|
1772
|
+
"tower-service",
|
|
1773
|
+
"tracing",
|
|
1774
|
+
"windows-registry",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "iana-time-zone"
|
|
1779
|
+
version = "0.1.64"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"android_system_properties",
|
|
1784
|
+
"core-foundation-sys",
|
|
1785
|
+
"iana-time-zone-haiku",
|
|
1786
|
+
"js-sys",
|
|
1787
|
+
"log",
|
|
1788
|
+
"wasm-bindgen",
|
|
1789
|
+
"windows-core",
|
|
1790
|
+
]
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "iana-time-zone-haiku"
|
|
1794
|
+
version = "0.1.2"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"cc",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "icu_collections"
|
|
1803
|
+
version = "2.0.0"
|
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"displaydoc",
|
|
1808
|
+
"potential_utf",
|
|
1809
|
+
"yoke 0.8.1",
|
|
1810
|
+
"zerofrom",
|
|
1811
|
+
"zerovec",
|
|
1812
|
+
]
|
|
1813
|
+
|
|
1814
|
+
[[package]]
|
|
1815
|
+
name = "icu_locale_core"
|
|
1816
|
+
version = "2.0.0"
|
|
1817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1819
|
+
dependencies = [
|
|
1820
|
+
"displaydoc",
|
|
1821
|
+
"litemap",
|
|
1822
|
+
"tinystr",
|
|
1823
|
+
"writeable",
|
|
1824
|
+
"zerovec",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "icu_normalizer"
|
|
1829
|
+
version = "2.0.0"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"displaydoc",
|
|
1834
|
+
"icu_collections",
|
|
1835
|
+
"icu_normalizer_data",
|
|
1836
|
+
"icu_properties",
|
|
1837
|
+
"icu_provider",
|
|
1838
|
+
"smallvec",
|
|
1839
|
+
"zerovec",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "icu_normalizer_data"
|
|
1844
|
+
version = "2.0.0"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "icu_properties"
|
|
1850
|
+
version = "2.0.1"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"displaydoc",
|
|
1855
|
+
"icu_collections",
|
|
1856
|
+
"icu_locale_core",
|
|
1857
|
+
"icu_properties_data",
|
|
1858
|
+
"icu_provider",
|
|
1859
|
+
"potential_utf",
|
|
1860
|
+
"zerotrie",
|
|
1861
|
+
"zerovec",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "icu_properties_data"
|
|
1866
|
+
version = "2.0.1"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1869
|
+
|
|
1870
|
+
[[package]]
|
|
1871
|
+
name = "icu_provider"
|
|
1872
|
+
version = "2.0.0"
|
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1875
|
+
dependencies = [
|
|
1876
|
+
"displaydoc",
|
|
1877
|
+
"icu_locale_core",
|
|
1878
|
+
"stable_deref_trait",
|
|
1879
|
+
"tinystr",
|
|
1880
|
+
"writeable",
|
|
1881
|
+
"yoke 0.8.1",
|
|
1882
|
+
"zerofrom",
|
|
1883
|
+
"zerotrie",
|
|
1884
|
+
"zerovec",
|
|
1885
|
+
]
|
|
1886
|
+
|
|
1887
|
+
[[package]]
|
|
1888
|
+
name = "id-arena"
|
|
1889
|
+
version = "2.3.0"
|
|
1890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "ident_case"
|
|
1895
|
+
version = "1.0.1"
|
|
1896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "idna"
|
|
1901
|
+
version = "1.1.0"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"idna_adapter",
|
|
1906
|
+
"smallvec",
|
|
1907
|
+
"utf8_iter",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "idna_adapter"
|
|
1912
|
+
version = "1.2.1"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"icu_normalizer",
|
|
1917
|
+
"icu_properties",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "image"
|
|
1922
|
+
version = "0.25.10"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"bytemuck",
|
|
1927
|
+
"byteorder-lite",
|
|
1928
|
+
"color_quant",
|
|
1929
|
+
"exr",
|
|
1930
|
+
"gif",
|
|
1931
|
+
"image-webp",
|
|
1932
|
+
"moxcms",
|
|
1933
|
+
"num-traits",
|
|
1934
|
+
"png",
|
|
1935
|
+
"qoi",
|
|
1936
|
+
"ravif",
|
|
1937
|
+
"rayon",
|
|
1938
|
+
"rgb",
|
|
1939
|
+
"tiff",
|
|
1940
|
+
"zune-core",
|
|
1941
|
+
"zune-jpeg",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "image-webp"
|
|
1946
|
+
version = "0.2.4"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"byteorder-lite",
|
|
1951
|
+
"quick-error",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "imgref"
|
|
1956
|
+
version = "1.12.0"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
|
|
1959
|
+
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "indexmap"
|
|
1962
|
+
version = "2.11.1"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"equivalent",
|
|
1967
|
+
"hashbrown 0.15.5",
|
|
1968
|
+
"serde",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "indicatif"
|
|
1973
|
+
version = "0.17.11"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"console",
|
|
1978
|
+
"number_prefix",
|
|
1979
|
+
"portable-atomic",
|
|
1980
|
+
"unicode-width",
|
|
1981
|
+
"web-time",
|
|
1982
|
+
]
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "intel-mkl-src"
|
|
1986
|
+
version = "0.8.1"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "2ee70586cd5b3e772a8739a1bd43eaa90d4f4bf0fb2a4edc202e979937ee7f5e"
|
|
1989
|
+
dependencies = [
|
|
1990
|
+
"anyhow",
|
|
1991
|
+
"intel-mkl-tool",
|
|
1992
|
+
"ocipkg",
|
|
1993
|
+
]
|
|
1994
|
+
|
|
1995
|
+
[[package]]
|
|
1996
|
+
name = "intel-mkl-tool"
|
|
1997
|
+
version = "0.8.1"
|
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1999
|
+
checksum = "887a16b4537d82227af54d3372971cfa5e0cde53322e60f57584056c16ada1b4"
|
|
2000
|
+
dependencies = [
|
|
2001
|
+
"anyhow",
|
|
2002
|
+
"log",
|
|
2003
|
+
"walkdir",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "interpolate_name"
|
|
2008
|
+
version = "0.2.4"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
2011
|
+
dependencies = [
|
|
2012
|
+
"proc-macro2",
|
|
2013
|
+
"quote",
|
|
2014
|
+
"syn",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "io-uring"
|
|
2019
|
+
version = "0.7.10"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"bitflags 2.9.4",
|
|
2024
|
+
"cfg-if",
|
|
2025
|
+
"libc",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "ipnet"
|
|
2030
|
+
version = "2.11.0"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "iri-string"
|
|
2036
|
+
version = "0.7.8"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"memchr",
|
|
2041
|
+
"serde",
|
|
2042
|
+
]
|
|
2043
|
+
|
|
2044
|
+
[[package]]
|
|
2045
|
+
name = "itertools"
|
|
2046
|
+
version = "0.11.0"
|
|
2047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2048
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
2049
|
+
dependencies = [
|
|
2050
|
+
"either",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "itertools"
|
|
2055
|
+
version = "0.13.0"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"either",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "itertools"
|
|
2064
|
+
version = "0.14.0"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"either",
|
|
2069
|
+
]
|
|
2070
|
+
|
|
2071
|
+
[[package]]
|
|
2072
|
+
name = "itoa"
|
|
2073
|
+
version = "1.0.15"
|
|
2074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
2076
|
+
|
|
2077
|
+
[[package]]
|
|
2078
|
+
name = "jobserver"
|
|
2079
|
+
version = "0.1.34"
|
|
2080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
2082
|
+
dependencies = [
|
|
2083
|
+
"getrandom 0.3.3",
|
|
2084
|
+
"libc",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "js-sys"
|
|
2089
|
+
version = "0.3.78"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"once_cell",
|
|
2094
|
+
"wasm-bindgen",
|
|
2095
|
+
]
|
|
2096
|
+
|
|
2097
|
+
[[package]]
|
|
2098
|
+
name = "lazy_static"
|
|
2099
|
+
version = "1.5.0"
|
|
2100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2102
|
+
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "lazycell"
|
|
2105
|
+
version = "1.3.0"
|
|
2106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
2108
|
+
|
|
2109
|
+
[[package]]
|
|
2110
|
+
name = "leb128fmt"
|
|
2111
|
+
version = "0.1.0"
|
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "lebe"
|
|
2117
|
+
version = "0.5.3"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "libc"
|
|
2123
|
+
version = "0.2.175"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "libfuzzer-sys"
|
|
2129
|
+
version = "0.4.12"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
|
|
2132
|
+
dependencies = [
|
|
2133
|
+
"arbitrary",
|
|
2134
|
+
"cc",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "libloading"
|
|
2139
|
+
version = "0.8.8"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
2142
|
+
dependencies = [
|
|
2143
|
+
"cfg-if",
|
|
2144
|
+
"windows-targets 0.52.6",
|
|
2145
|
+
]
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "libloading"
|
|
2149
|
+
version = "0.9.0"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
2152
|
+
dependencies = [
|
|
2153
|
+
"cfg-if",
|
|
2154
|
+
"windows-link 0.2.0",
|
|
2155
|
+
]
|
|
2156
|
+
|
|
2157
|
+
[[package]]
|
|
2158
|
+
name = "libm"
|
|
2159
|
+
version = "0.2.15"
|
|
2160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "libredox"
|
|
2165
|
+
version = "0.1.9"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"bitflags 2.9.4",
|
|
2170
|
+
"libc",
|
|
2171
|
+
"redox_syscall",
|
|
2172
|
+
]
|
|
2173
|
+
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "linux-raw-sys"
|
|
2176
|
+
version = "0.11.0"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "litemap"
|
|
2182
|
+
version = "0.8.0"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "log"
|
|
2188
|
+
version = "0.4.28"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
2191
|
+
|
|
2192
|
+
[[package]]
|
|
2193
|
+
name = "loop9"
|
|
2194
|
+
version = "0.1.5"
|
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
2197
|
+
dependencies = [
|
|
2198
|
+
"imgref",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "lru-slab"
|
|
2203
|
+
version = "0.1.2"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2206
|
+
|
|
2207
|
+
[[package]]
|
|
2208
|
+
name = "macro_rules_attribute"
|
|
2209
|
+
version = "0.2.2"
|
|
2210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
+
checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
|
|
2212
|
+
dependencies = [
|
|
2213
|
+
"macro_rules_attribute-proc_macro",
|
|
2214
|
+
"paste",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "macro_rules_attribute-proc_macro"
|
|
2219
|
+
version = "0.2.2"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "magnus"
|
|
2225
|
+
version = "0.8.2"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"magnus-macros",
|
|
2230
|
+
"rb-sys",
|
|
2231
|
+
"rb-sys-env",
|
|
2232
|
+
"seq-macro",
|
|
2233
|
+
]
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "magnus-macros"
|
|
2237
|
+
version = "0.8.0"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"proc-macro2",
|
|
2242
|
+
"quote",
|
|
2243
|
+
"syn",
|
|
2244
|
+
]
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "malloc_buf"
|
|
2248
|
+
version = "0.0.6"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
2251
|
+
dependencies = [
|
|
2252
|
+
"libc",
|
|
2253
|
+
]
|
|
2254
|
+
|
|
2255
|
+
[[package]]
|
|
2256
|
+
name = "maybe-rayon"
|
|
2257
|
+
version = "0.1.1"
|
|
2258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
2260
|
+
dependencies = [
|
|
2261
|
+
"cfg-if",
|
|
2262
|
+
"rayon",
|
|
2263
|
+
]
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "memchr"
|
|
2267
|
+
version = "2.7.5"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "memmap2"
|
|
2273
|
+
version = "0.9.8"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"libc",
|
|
2278
|
+
"stable_deref_trait",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "metal"
|
|
2283
|
+
version = "0.29.0"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21"
|
|
2286
|
+
dependencies = [
|
|
2287
|
+
"bitflags 2.9.4",
|
|
2288
|
+
"block",
|
|
2289
|
+
"core-graphics-types",
|
|
2290
|
+
"foreign-types",
|
|
2291
|
+
"log",
|
|
2292
|
+
"objc",
|
|
2293
|
+
"paste",
|
|
2294
|
+
]
|
|
2295
|
+
|
|
2296
|
+
[[package]]
|
|
2297
|
+
name = "mime"
|
|
2298
|
+
version = "0.3.17"
|
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2301
|
+
|
|
2302
|
+
[[package]]
|
|
2303
|
+
name = "minimal-lexical"
|
|
2304
|
+
version = "0.2.1"
|
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "miniz_oxide"
|
|
2310
|
+
version = "0.8.9"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"adler2",
|
|
2315
|
+
"simd-adler32",
|
|
2316
|
+
]
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "mio"
|
|
2320
|
+
version = "1.0.4"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"libc",
|
|
2325
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
2326
|
+
"windows-sys 0.59.0",
|
|
2327
|
+
]
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "monostate"
|
|
2331
|
+
version = "0.1.14"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "aafe1be9d0c75642e3e50fedc7ecadf1ef1cbce6eb66462153fc44245343fbee"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"monostate-impl",
|
|
2336
|
+
"serde",
|
|
2337
|
+
]
|
|
2338
|
+
|
|
2339
|
+
[[package]]
|
|
2340
|
+
name = "monostate-impl"
|
|
2341
|
+
version = "0.1.14"
|
|
2342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
+
checksum = "c402a4092d5e204f32c9e155431046831fa712637043c58cb73bc6bc6c9663b5"
|
|
2344
|
+
dependencies = [
|
|
2345
|
+
"proc-macro2",
|
|
2346
|
+
"quote",
|
|
2347
|
+
"syn",
|
|
2348
|
+
]
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "moxcms"
|
|
2352
|
+
version = "0.8.1"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"num-traits",
|
|
2357
|
+
"pxfm",
|
|
2358
|
+
]
|
|
2359
|
+
|
|
2360
|
+
[[package]]
|
|
2361
|
+
name = "new_debug_unreachable"
|
|
2362
|
+
version = "1.0.6"
|
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
2365
|
+
|
|
2366
|
+
[[package]]
|
|
2367
|
+
name = "nom"
|
|
2368
|
+
version = "7.1.3"
|
|
2369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2371
|
+
dependencies = [
|
|
2372
|
+
"memchr",
|
|
2373
|
+
"minimal-lexical",
|
|
2374
|
+
]
|
|
2375
|
+
|
|
2376
|
+
[[package]]
|
|
2377
|
+
name = "nom"
|
|
2378
|
+
version = "8.0.0"
|
|
2379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
2381
|
+
dependencies = [
|
|
2382
|
+
"memchr",
|
|
2383
|
+
]
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "noop_proc_macro"
|
|
2387
|
+
version = "0.3.0"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "num"
|
|
2393
|
+
version = "0.4.3"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"num-bigint",
|
|
2398
|
+
"num-complex",
|
|
2399
|
+
"num-integer",
|
|
2400
|
+
"num-iter",
|
|
2401
|
+
"num-rational",
|
|
2402
|
+
"num-traits",
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "num-bigint"
|
|
2407
|
+
version = "0.4.6"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2410
|
+
dependencies = [
|
|
2411
|
+
"num-integer",
|
|
2412
|
+
"num-traits",
|
|
2413
|
+
]
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "num-complex"
|
|
2417
|
+
version = "0.4.6"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"bytemuck",
|
|
2422
|
+
"num-traits",
|
|
2423
|
+
]
|
|
2424
|
+
|
|
2425
|
+
[[package]]
|
|
2426
|
+
name = "num-derive"
|
|
2427
|
+
version = "0.4.2"
|
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
2430
|
+
dependencies = [
|
|
2431
|
+
"proc-macro2",
|
|
2432
|
+
"quote",
|
|
2433
|
+
"syn",
|
|
2434
|
+
]
|
|
2435
|
+
|
|
2436
|
+
[[package]]
|
|
2437
|
+
name = "num-integer"
|
|
2438
|
+
version = "0.1.46"
|
|
2439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2440
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2441
|
+
dependencies = [
|
|
2442
|
+
"num-traits",
|
|
2443
|
+
]
|
|
2444
|
+
|
|
2445
|
+
[[package]]
|
|
2446
|
+
name = "num-iter"
|
|
2447
|
+
version = "0.1.45"
|
|
2448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2449
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2450
|
+
dependencies = [
|
|
2451
|
+
"autocfg",
|
|
2452
|
+
"num-integer",
|
|
2453
|
+
"num-traits",
|
|
2454
|
+
]
|
|
2455
|
+
|
|
2456
|
+
[[package]]
|
|
2457
|
+
name = "num-rational"
|
|
2458
|
+
version = "0.4.2"
|
|
2459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2460
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
2461
|
+
dependencies = [
|
|
2462
|
+
"num-bigint",
|
|
2463
|
+
"num-integer",
|
|
2464
|
+
"num-traits",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "num-traits"
|
|
2469
|
+
version = "0.2.19"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"autocfg",
|
|
2474
|
+
"libm",
|
|
2475
|
+
]
|
|
2476
|
+
|
|
2477
|
+
[[package]]
|
|
2478
|
+
name = "num_cpus"
|
|
2479
|
+
version = "1.17.0"
|
|
2480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
2482
|
+
dependencies = [
|
|
2483
|
+
"hermit-abi",
|
|
2484
|
+
"libc",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "number_prefix"
|
|
2489
|
+
version = "0.4.0"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
2492
|
+
|
|
2493
|
+
[[package]]
|
|
2494
|
+
name = "objc"
|
|
2495
|
+
version = "0.2.7"
|
|
2496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2498
|
+
dependencies = [
|
|
2499
|
+
"malloc_buf",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "objc2"
|
|
2504
|
+
version = "0.6.4"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"objc2-encode",
|
|
2509
|
+
]
|
|
2510
|
+
|
|
2511
|
+
[[package]]
|
|
2512
|
+
name = "objc2-core-foundation"
|
|
2513
|
+
version = "0.3.2"
|
|
2514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
2516
|
+
dependencies = [
|
|
2517
|
+
"bitflags 2.9.4",
|
|
2518
|
+
"dispatch2",
|
|
2519
|
+
"objc2",
|
|
2520
|
+
]
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "objc2-encode"
|
|
2524
|
+
version = "4.1.0"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "objc2-foundation"
|
|
2530
|
+
version = "0.3.2"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"bitflags 2.9.4",
|
|
2535
|
+
"block2",
|
|
2536
|
+
"libc",
|
|
2537
|
+
"objc2",
|
|
2538
|
+
"objc2-core-foundation",
|
|
2539
|
+
]
|
|
2540
|
+
|
|
2541
|
+
[[package]]
|
|
2542
|
+
name = "objc2-metal"
|
|
2543
|
+
version = "0.3.2"
|
|
2544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
+
checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
|
|
2546
|
+
dependencies = [
|
|
2547
|
+
"bitflags 2.9.4",
|
|
2548
|
+
"block2",
|
|
2549
|
+
"dispatch2",
|
|
2550
|
+
"objc2",
|
|
2551
|
+
"objc2-core-foundation",
|
|
2552
|
+
"objc2-foundation",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "object"
|
|
2557
|
+
version = "0.36.7"
|
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2560
|
+
dependencies = [
|
|
2561
|
+
"memchr",
|
|
2562
|
+
]
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "oci-spec"
|
|
2566
|
+
version = "0.6.7"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "bdf88ddc01cc6bccbe1044adb6a29057333f523deadcb4953c011a73158cfa5e"
|
|
2569
|
+
dependencies = [
|
|
2570
|
+
"derive_builder",
|
|
2571
|
+
"getset",
|
|
2572
|
+
"serde",
|
|
2573
|
+
"serde_json",
|
|
2574
|
+
"strum",
|
|
2575
|
+
"strum_macros",
|
|
2576
|
+
"thiserror 1.0.69",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "ocipkg"
|
|
2581
|
+
version = "0.2.9"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "9bb3293021f06540803301af45e7ab81693d50e89a7398a3420bdab139e7ba5e"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"base16ct",
|
|
2586
|
+
"base64 0.22.1",
|
|
2587
|
+
"chrono",
|
|
2588
|
+
"directories",
|
|
2589
|
+
"flate2",
|
|
2590
|
+
"lazy_static",
|
|
2591
|
+
"log",
|
|
2592
|
+
"oci-spec",
|
|
2593
|
+
"regex",
|
|
2594
|
+
"serde",
|
|
2595
|
+
"serde_json",
|
|
2596
|
+
"sha2",
|
|
2597
|
+
"tar",
|
|
2598
|
+
"thiserror 1.0.69",
|
|
2599
|
+
"toml",
|
|
2600
|
+
"ureq",
|
|
2601
|
+
"url",
|
|
2602
|
+
"uuid",
|
|
2603
|
+
"walkdir",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "once_cell"
|
|
2608
|
+
version = "1.21.3"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "onig"
|
|
2614
|
+
version = "6.5.1"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"bitflags 2.9.4",
|
|
2619
|
+
"libc",
|
|
2620
|
+
"once_cell",
|
|
2621
|
+
"onig_sys",
|
|
2622
|
+
]
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "onig_sys"
|
|
2626
|
+
version = "69.9.1"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"cc",
|
|
2631
|
+
"pkg-config",
|
|
2632
|
+
]
|
|
2633
|
+
|
|
2634
|
+
[[package]]
|
|
2635
|
+
name = "option-ext"
|
|
2636
|
+
version = "0.2.0"
|
|
2637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "outlines-core"
|
|
2642
|
+
version = "0.2.11"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "0cc7e5b64a320690fb5a6f4c695ea9526ffacabb66827b4f7f611161e857c5c1"
|
|
2645
|
+
dependencies = [
|
|
2646
|
+
"bincode",
|
|
2647
|
+
"hf-hub",
|
|
2648
|
+
"once_cell",
|
|
2649
|
+
"regex",
|
|
2650
|
+
"regex-automata",
|
|
2651
|
+
"rustc-hash 2.1.1",
|
|
2652
|
+
"serde",
|
|
2653
|
+
"serde_json",
|
|
2654
|
+
"thiserror 2.0.16",
|
|
2655
|
+
"tokenizers 0.21.1",
|
|
2656
|
+
]
|
|
2657
|
+
|
|
2658
|
+
[[package]]
|
|
2659
|
+
name = "paste"
|
|
2660
|
+
version = "1.0.15"
|
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "pastey"
|
|
2666
|
+
version = "0.1.1"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "percent-encoding"
|
|
2672
|
+
version = "2.3.2"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2675
|
+
|
|
2676
|
+
[[package]]
|
|
2677
|
+
name = "pin-project-lite"
|
|
2678
|
+
version = "0.2.16"
|
|
2679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "pin-utils"
|
|
2684
|
+
version = "0.1.0"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "pkg-config"
|
|
2690
|
+
version = "0.3.32"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "png"
|
|
2696
|
+
version = "0.18.1"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"bitflags 2.9.4",
|
|
2701
|
+
"crc32fast",
|
|
2702
|
+
"fdeflate",
|
|
2703
|
+
"flate2",
|
|
2704
|
+
"miniz_oxide",
|
|
2705
|
+
]
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "portable-atomic"
|
|
2709
|
+
version = "1.11.1"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
2712
|
+
|
|
2713
|
+
[[package]]
|
|
2714
|
+
name = "potential_utf"
|
|
2715
|
+
version = "0.1.3"
|
|
2716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
2718
|
+
dependencies = [
|
|
2719
|
+
"zerovec",
|
|
2720
|
+
]
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "ppv-lite86"
|
|
2724
|
+
version = "0.2.21"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2727
|
+
dependencies = [
|
|
2728
|
+
"zerocopy",
|
|
2729
|
+
]
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "prettyplease"
|
|
2733
|
+
version = "0.2.37"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"proc-macro2",
|
|
2738
|
+
"syn",
|
|
2739
|
+
]
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "proc-macro-error-attr2"
|
|
2743
|
+
version = "2.0.0"
|
|
2744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
2746
|
+
dependencies = [
|
|
2747
|
+
"proc-macro2",
|
|
2748
|
+
"quote",
|
|
2749
|
+
]
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "proc-macro-error2"
|
|
2753
|
+
version = "2.0.1"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
2756
|
+
dependencies = [
|
|
2757
|
+
"proc-macro-error-attr2",
|
|
2758
|
+
"proc-macro2",
|
|
2759
|
+
"quote",
|
|
2760
|
+
"syn",
|
|
2761
|
+
]
|
|
2762
|
+
|
|
2763
|
+
[[package]]
|
|
2764
|
+
name = "proc-macro2"
|
|
2765
|
+
version = "1.0.101"
|
|
2766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
2768
|
+
dependencies = [
|
|
2769
|
+
"unicode-ident",
|
|
2770
|
+
]
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "profiling"
|
|
2774
|
+
version = "1.0.17"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"profiling-procmacros",
|
|
2779
|
+
]
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "profiling-procmacros"
|
|
2783
|
+
version = "1.0.17"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"quote",
|
|
2788
|
+
"syn",
|
|
2789
|
+
]
|
|
2790
|
+
|
|
2791
|
+
[[package]]
|
|
2792
|
+
name = "pulp"
|
|
2793
|
+
version = "0.21.5"
|
|
2794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2795
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
|
2796
|
+
dependencies = [
|
|
2797
|
+
"bytemuck",
|
|
2798
|
+
"cfg-if",
|
|
2799
|
+
"libm",
|
|
2800
|
+
"num-complex",
|
|
2801
|
+
"reborrow",
|
|
2802
|
+
"version_check",
|
|
2803
|
+
]
|
|
2804
|
+
|
|
2805
|
+
[[package]]
|
|
2806
|
+
name = "pulp"
|
|
2807
|
+
version = "0.22.2"
|
|
2808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
+
checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
|
|
2810
|
+
dependencies = [
|
|
2811
|
+
"bytemuck",
|
|
2812
|
+
"cfg-if",
|
|
2813
|
+
"libm",
|
|
2814
|
+
"num-complex",
|
|
2815
|
+
"paste",
|
|
2816
|
+
"pulp-wasm-simd-flag",
|
|
2817
|
+
"raw-cpuid",
|
|
2818
|
+
"reborrow",
|
|
2819
|
+
"version_check",
|
|
2820
|
+
]
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "pulp-wasm-simd-flag"
|
|
2824
|
+
version = "0.1.0"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
|
|
2827
|
+
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "pxfm"
|
|
2830
|
+
version = "0.1.28"
|
|
2831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
+
checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "qoi"
|
|
2836
|
+
version = "0.4.1"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
2839
|
+
dependencies = [
|
|
2840
|
+
"bytemuck",
|
|
2841
|
+
]
|
|
2842
|
+
|
|
2843
|
+
[[package]]
|
|
2844
|
+
name = "quick-error"
|
|
2845
|
+
version = "2.0.1"
|
|
2846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
2848
|
+
|
|
2849
|
+
[[package]]
|
|
2850
|
+
name = "quinn"
|
|
2851
|
+
version = "0.11.9"
|
|
2852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2853
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2854
|
+
dependencies = [
|
|
2855
|
+
"bytes",
|
|
2856
|
+
"cfg_aliases",
|
|
2857
|
+
"pin-project-lite",
|
|
2858
|
+
"quinn-proto",
|
|
2859
|
+
"quinn-udp",
|
|
2860
|
+
"rustc-hash 2.1.1",
|
|
2861
|
+
"rustls",
|
|
2862
|
+
"socket2",
|
|
2863
|
+
"thiserror 2.0.16",
|
|
2864
|
+
"tokio",
|
|
2865
|
+
"tracing",
|
|
2866
|
+
"web-time",
|
|
2867
|
+
]
|
|
2868
|
+
|
|
2869
|
+
[[package]]
|
|
2870
|
+
name = "quinn-proto"
|
|
2871
|
+
version = "0.11.14"
|
|
2872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
2874
|
+
dependencies = [
|
|
2875
|
+
"bytes",
|
|
2876
|
+
"getrandom 0.3.3",
|
|
2877
|
+
"lru-slab",
|
|
2878
|
+
"rand 0.9.4",
|
|
2879
|
+
"ring",
|
|
2880
|
+
"rustc-hash 2.1.1",
|
|
2881
|
+
"rustls",
|
|
2882
|
+
"rustls-pki-types",
|
|
2883
|
+
"slab",
|
|
2884
|
+
"thiserror 2.0.16",
|
|
2885
|
+
"tinyvec",
|
|
2886
|
+
"tracing",
|
|
2887
|
+
"web-time",
|
|
2888
|
+
]
|
|
2889
|
+
|
|
2890
|
+
[[package]]
|
|
2891
|
+
name = "quinn-udp"
|
|
2892
|
+
version = "0.5.14"
|
|
2893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2895
|
+
dependencies = [
|
|
2896
|
+
"cfg_aliases",
|
|
2897
|
+
"libc",
|
|
2898
|
+
"once_cell",
|
|
2899
|
+
"socket2",
|
|
2900
|
+
"tracing",
|
|
2901
|
+
"windows-sys 0.52.0",
|
|
2902
|
+
]
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "quote"
|
|
2906
|
+
version = "1.0.40"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2909
|
+
dependencies = [
|
|
2910
|
+
"proc-macro2",
|
|
2911
|
+
]
|
|
2912
|
+
|
|
2913
|
+
[[package]]
|
|
2914
|
+
name = "r-efi"
|
|
2915
|
+
version = "5.3.0"
|
|
2916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2917
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2918
|
+
|
|
2919
|
+
[[package]]
|
|
2920
|
+
name = "r-efi"
|
|
2921
|
+
version = "6.0.0"
|
|
2922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2924
|
+
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "rand"
|
|
2927
|
+
version = "0.8.6"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2930
|
+
dependencies = [
|
|
2931
|
+
"libc",
|
|
2932
|
+
"rand_chacha 0.3.1",
|
|
2933
|
+
"rand_core 0.6.4",
|
|
2934
|
+
]
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "rand"
|
|
2938
|
+
version = "0.9.4"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2941
|
+
dependencies = [
|
|
2942
|
+
"rand_chacha 0.9.0",
|
|
2943
|
+
"rand_core 0.9.3",
|
|
2944
|
+
]
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "rand"
|
|
2948
|
+
version = "0.10.1"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"chacha20",
|
|
2953
|
+
"getrandom 0.4.2",
|
|
2954
|
+
"rand_core 0.10.1",
|
|
2955
|
+
]
|
|
2956
|
+
|
|
2957
|
+
[[package]]
|
|
2958
|
+
name = "rand_chacha"
|
|
2959
|
+
version = "0.3.1"
|
|
2960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2962
|
+
dependencies = [
|
|
2963
|
+
"ppv-lite86",
|
|
2964
|
+
"rand_core 0.6.4",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "rand_chacha"
|
|
2969
|
+
version = "0.9.0"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"ppv-lite86",
|
|
2974
|
+
"rand_core 0.9.3",
|
|
2975
|
+
]
|
|
2976
|
+
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "rand_core"
|
|
2979
|
+
version = "0.6.4"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2982
|
+
dependencies = [
|
|
2983
|
+
"getrandom 0.2.16",
|
|
2984
|
+
]
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "rand_core"
|
|
2988
|
+
version = "0.9.3"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2991
|
+
dependencies = [
|
|
2992
|
+
"getrandom 0.3.3",
|
|
2993
|
+
]
|
|
2994
|
+
|
|
2995
|
+
[[package]]
|
|
2996
|
+
name = "rand_core"
|
|
2997
|
+
version = "0.10.1"
|
|
2998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3000
|
+
|
|
3001
|
+
[[package]]
|
|
3002
|
+
name = "rand_distr"
|
|
3003
|
+
version = "0.5.1"
|
|
3004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
3006
|
+
dependencies = [
|
|
3007
|
+
"num-traits",
|
|
3008
|
+
"rand 0.9.4",
|
|
3009
|
+
]
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "rav1e"
|
|
3013
|
+
version = "0.8.1"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
|
|
3016
|
+
dependencies = [
|
|
3017
|
+
"aligned-vec",
|
|
3018
|
+
"arbitrary",
|
|
3019
|
+
"arg_enum_proc_macro",
|
|
3020
|
+
"arrayvec",
|
|
3021
|
+
"av-scenechange",
|
|
3022
|
+
"av1-grain",
|
|
3023
|
+
"bitstream-io",
|
|
3024
|
+
"built",
|
|
3025
|
+
"cfg-if",
|
|
3026
|
+
"interpolate_name",
|
|
3027
|
+
"itertools 0.14.0",
|
|
3028
|
+
"libc",
|
|
3029
|
+
"libfuzzer-sys",
|
|
3030
|
+
"log",
|
|
3031
|
+
"maybe-rayon",
|
|
3032
|
+
"new_debug_unreachable",
|
|
3033
|
+
"noop_proc_macro",
|
|
3034
|
+
"num-derive",
|
|
3035
|
+
"num-traits",
|
|
3036
|
+
"paste",
|
|
3037
|
+
"profiling",
|
|
3038
|
+
"rand 0.9.4",
|
|
3039
|
+
"rand_chacha 0.9.0",
|
|
3040
|
+
"simd_helpers",
|
|
3041
|
+
"thiserror 2.0.16",
|
|
3042
|
+
"v_frame",
|
|
3043
|
+
"wasm-bindgen",
|
|
3044
|
+
]
|
|
3045
|
+
|
|
3046
|
+
[[package]]
|
|
3047
|
+
name = "ravif"
|
|
3048
|
+
version = "0.13.0"
|
|
3049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
+
checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
|
|
3051
|
+
dependencies = [
|
|
3052
|
+
"avif-serialize",
|
|
3053
|
+
"imgref",
|
|
3054
|
+
"loop9",
|
|
3055
|
+
"quick-error",
|
|
3056
|
+
"rav1e",
|
|
3057
|
+
"rayon",
|
|
3058
|
+
"rgb",
|
|
3059
|
+
]
|
|
3060
|
+
|
|
3061
|
+
[[package]]
|
|
3062
|
+
name = "raw-cpuid"
|
|
3063
|
+
version = "11.6.0"
|
|
3064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
3066
|
+
dependencies = [
|
|
3067
|
+
"bitflags 2.9.4",
|
|
3068
|
+
]
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "rayon"
|
|
3072
|
+
version = "1.11.0"
|
|
3073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
3075
|
+
dependencies = [
|
|
3076
|
+
"either",
|
|
3077
|
+
"rayon-core",
|
|
3078
|
+
]
|
|
3079
|
+
|
|
3080
|
+
[[package]]
|
|
3081
|
+
name = "rayon-cond"
|
|
3082
|
+
version = "0.3.0"
|
|
3083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
+
checksum = "059f538b55efd2309c9794130bc149c6a553db90e9d99c2030785c82f0bd7df9"
|
|
3085
|
+
dependencies = [
|
|
3086
|
+
"either",
|
|
3087
|
+
"itertools 0.11.0",
|
|
3088
|
+
"rayon",
|
|
3089
|
+
]
|
|
3090
|
+
|
|
3091
|
+
[[package]]
|
|
3092
|
+
name = "rayon-cond"
|
|
3093
|
+
version = "0.4.0"
|
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
+
checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
|
|
3096
|
+
dependencies = [
|
|
3097
|
+
"either",
|
|
3098
|
+
"itertools 0.14.0",
|
|
3099
|
+
"rayon",
|
|
3100
|
+
]
|
|
3101
|
+
|
|
3102
|
+
[[package]]
|
|
3103
|
+
name = "rayon-core"
|
|
3104
|
+
version = "1.13.0"
|
|
3105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
3107
|
+
dependencies = [
|
|
3108
|
+
"crossbeam-deque",
|
|
3109
|
+
"crossbeam-utils",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "rb-sys"
|
|
3114
|
+
version = "0.9.124"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"rb-sys-build",
|
|
3119
|
+
]
|
|
3120
|
+
|
|
3121
|
+
[[package]]
|
|
3122
|
+
name = "rb-sys-build"
|
|
3123
|
+
version = "0.9.124"
|
|
3124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
+
checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
|
|
3126
|
+
dependencies = [
|
|
3127
|
+
"bindgen",
|
|
3128
|
+
"lazy_static",
|
|
3129
|
+
"proc-macro2",
|
|
3130
|
+
"quote",
|
|
3131
|
+
"regex",
|
|
3132
|
+
"shell-words",
|
|
3133
|
+
"syn",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "rb-sys-env"
|
|
3138
|
+
version = "0.2.3"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
3141
|
+
|
|
3142
|
+
[[package]]
|
|
3143
|
+
name = "reborrow"
|
|
3144
|
+
version = "0.5.5"
|
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
3147
|
+
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "redox_syscall"
|
|
3150
|
+
version = "0.5.17"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
|
|
3153
|
+
dependencies = [
|
|
3154
|
+
"bitflags 2.9.4",
|
|
3155
|
+
]
|
|
3156
|
+
|
|
3157
|
+
[[package]]
|
|
3158
|
+
name = "redox_users"
|
|
3159
|
+
version = "0.4.6"
|
|
3160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3161
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
3162
|
+
dependencies = [
|
|
3163
|
+
"getrandom 0.2.16",
|
|
3164
|
+
"libredox",
|
|
3165
|
+
"thiserror 1.0.69",
|
|
3166
|
+
]
|
|
3167
|
+
|
|
3168
|
+
[[package]]
|
|
3169
|
+
name = "regex"
|
|
3170
|
+
version = "1.11.2"
|
|
3171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
3173
|
+
dependencies = [
|
|
3174
|
+
"aho-corasick",
|
|
3175
|
+
"memchr",
|
|
3176
|
+
"regex-automata",
|
|
3177
|
+
"regex-syntax",
|
|
3178
|
+
]
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "regex-automata"
|
|
3182
|
+
version = "0.4.10"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
|
3185
|
+
dependencies = [
|
|
3186
|
+
"aho-corasick",
|
|
3187
|
+
"memchr",
|
|
3188
|
+
"regex-syntax",
|
|
3189
|
+
]
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "regex-syntax"
|
|
3193
|
+
version = "0.8.6"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
3196
|
+
|
|
3197
|
+
[[package]]
|
|
3198
|
+
name = "reqwest"
|
|
3199
|
+
version = "0.12.23"
|
|
3200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3201
|
+
checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
|
|
3202
|
+
dependencies = [
|
|
3203
|
+
"base64 0.22.1",
|
|
3204
|
+
"bytes",
|
|
3205
|
+
"encoding_rs",
|
|
3206
|
+
"futures-core",
|
|
3207
|
+
"futures-util",
|
|
3208
|
+
"h2",
|
|
3209
|
+
"http",
|
|
3210
|
+
"http-body",
|
|
3211
|
+
"http-body-util",
|
|
3212
|
+
"hyper",
|
|
3213
|
+
"hyper-rustls",
|
|
3214
|
+
"hyper-util",
|
|
3215
|
+
"js-sys",
|
|
3216
|
+
"log",
|
|
3217
|
+
"mime",
|
|
3218
|
+
"percent-encoding",
|
|
3219
|
+
"pin-project-lite",
|
|
3220
|
+
"quinn",
|
|
3221
|
+
"rustls",
|
|
3222
|
+
"rustls-pki-types",
|
|
3223
|
+
"serde",
|
|
3224
|
+
"serde_json",
|
|
3225
|
+
"serde_urlencoded",
|
|
3226
|
+
"sync_wrapper",
|
|
3227
|
+
"tokio",
|
|
3228
|
+
"tokio-rustls",
|
|
3229
|
+
"tokio-util",
|
|
3230
|
+
"tower",
|
|
3231
|
+
"tower-http",
|
|
3232
|
+
"tower-service",
|
|
3233
|
+
"url",
|
|
3234
|
+
"wasm-bindgen",
|
|
3235
|
+
"wasm-bindgen-futures",
|
|
3236
|
+
"wasm-streams",
|
|
3237
|
+
"web-sys",
|
|
3238
|
+
"webpki-roots 1.0.2",
|
|
3239
|
+
]
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "rgb"
|
|
3243
|
+
version = "0.8.53"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
3246
|
+
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "ring"
|
|
3249
|
+
version = "0.17.14"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
3252
|
+
dependencies = [
|
|
3253
|
+
"cc",
|
|
3254
|
+
"cfg-if",
|
|
3255
|
+
"getrandom 0.2.16",
|
|
3256
|
+
"libc",
|
|
3257
|
+
"untrusted",
|
|
3258
|
+
"windows-sys 0.52.0",
|
|
3259
|
+
]
|
|
3260
|
+
|
|
3261
|
+
[[package]]
|
|
3262
|
+
name = "rustc-demangle"
|
|
3263
|
+
version = "0.1.26"
|
|
3264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
3266
|
+
|
|
3267
|
+
[[package]]
|
|
3268
|
+
name = "rustc-hash"
|
|
3269
|
+
version = "1.1.0"
|
|
3270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
3272
|
+
|
|
3273
|
+
[[package]]
|
|
3274
|
+
name = "rustc-hash"
|
|
3275
|
+
version = "2.1.1"
|
|
3276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3278
|
+
|
|
3279
|
+
[[package]]
|
|
3280
|
+
name = "rustix"
|
|
3281
|
+
version = "1.1.2"
|
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
3284
|
+
dependencies = [
|
|
3285
|
+
"bitflags 2.9.4",
|
|
3286
|
+
"errno",
|
|
3287
|
+
"libc",
|
|
3288
|
+
"linux-raw-sys",
|
|
3289
|
+
"windows-sys 0.52.0",
|
|
3290
|
+
]
|
|
3291
|
+
|
|
3292
|
+
[[package]]
|
|
3293
|
+
name = "rustls"
|
|
3294
|
+
version = "0.23.31"
|
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
+
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
|
|
3297
|
+
dependencies = [
|
|
3298
|
+
"aws-lc-rs",
|
|
3299
|
+
"log",
|
|
3300
|
+
"once_cell",
|
|
3301
|
+
"ring",
|
|
3302
|
+
"rustls-pki-types",
|
|
3303
|
+
"rustls-webpki",
|
|
3304
|
+
"subtle",
|
|
3305
|
+
"zeroize",
|
|
3306
|
+
]
|
|
3307
|
+
|
|
3308
|
+
[[package]]
|
|
3309
|
+
name = "rustls-pki-types"
|
|
3310
|
+
version = "1.12.0"
|
|
3311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3312
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
3313
|
+
dependencies = [
|
|
3314
|
+
"web-time",
|
|
3315
|
+
"zeroize",
|
|
3316
|
+
]
|
|
3317
|
+
|
|
3318
|
+
[[package]]
|
|
3319
|
+
name = "rustls-webpki"
|
|
3320
|
+
version = "0.103.13"
|
|
3321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3322
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3323
|
+
dependencies = [
|
|
3324
|
+
"aws-lc-rs",
|
|
3325
|
+
"ring",
|
|
3326
|
+
"rustls-pki-types",
|
|
3327
|
+
"untrusted",
|
|
3328
|
+
]
|
|
3329
|
+
|
|
3330
|
+
[[package]]
|
|
3331
|
+
name = "rustversion"
|
|
3332
|
+
version = "1.0.22"
|
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3335
|
+
|
|
3336
|
+
[[package]]
|
|
3337
|
+
name = "ryu"
|
|
3338
|
+
version = "1.0.20"
|
|
3339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
3341
|
+
|
|
3342
|
+
[[package]]
|
|
3343
|
+
name = "safetensors"
|
|
3344
|
+
version = "0.3.3"
|
|
3345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
+
checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df"
|
|
3347
|
+
dependencies = [
|
|
3348
|
+
"serde",
|
|
3349
|
+
"serde_json",
|
|
3350
|
+
]
|
|
3351
|
+
|
|
3352
|
+
[[package]]
|
|
3353
|
+
name = "safetensors"
|
|
3354
|
+
version = "0.4.5"
|
|
3355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
+
checksum = "44560c11236a6130a46ce36c836a62936dc81ebf8c36a37947423571be0e55b6"
|
|
3357
|
+
dependencies = [
|
|
3358
|
+
"serde",
|
|
3359
|
+
"serde_json",
|
|
3360
|
+
]
|
|
3361
|
+
|
|
3362
|
+
[[package]]
|
|
3363
|
+
name = "safetensors"
|
|
3364
|
+
version = "0.7.0"
|
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
+
checksum = "675656c1eabb620b921efea4f9199f97fc86e36dd6ffd1fbbe48d0f59a4987f5"
|
|
3367
|
+
dependencies = [
|
|
3368
|
+
"hashbrown 0.16.1",
|
|
3369
|
+
"serde",
|
|
3370
|
+
"serde_json",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
3373
|
+
[[package]]
|
|
3374
|
+
name = "same-file"
|
|
3375
|
+
version = "1.0.6"
|
|
3376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3378
|
+
dependencies = [
|
|
3379
|
+
"winapi-util",
|
|
3380
|
+
]
|
|
3381
|
+
|
|
3382
|
+
[[package]]
|
|
3383
|
+
name = "semver"
|
|
3384
|
+
version = "1.0.28"
|
|
3385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3387
|
+
|
|
3388
|
+
[[package]]
|
|
3389
|
+
name = "seq-macro"
|
|
3390
|
+
version = "0.3.6"
|
|
3391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
3393
|
+
|
|
3394
|
+
[[package]]
|
|
3395
|
+
name = "serde"
|
|
3396
|
+
version = "1.0.228"
|
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3399
|
+
dependencies = [
|
|
3400
|
+
"serde_core",
|
|
3401
|
+
"serde_derive",
|
|
3402
|
+
]
|
|
3403
|
+
|
|
3404
|
+
[[package]]
|
|
3405
|
+
name = "serde_core"
|
|
3406
|
+
version = "1.0.228"
|
|
3407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3408
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3409
|
+
dependencies = [
|
|
3410
|
+
"serde_derive",
|
|
3411
|
+
]
|
|
3412
|
+
|
|
3413
|
+
[[package]]
|
|
3414
|
+
name = "serde_derive"
|
|
3415
|
+
version = "1.0.228"
|
|
3416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3418
|
+
dependencies = [
|
|
3419
|
+
"proc-macro2",
|
|
3420
|
+
"quote",
|
|
3421
|
+
"syn",
|
|
3422
|
+
]
|
|
3423
|
+
|
|
3424
|
+
[[package]]
|
|
3425
|
+
name = "serde_json"
|
|
3426
|
+
version = "1.0.143"
|
|
3427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
3429
|
+
dependencies = [
|
|
3430
|
+
"indexmap",
|
|
3431
|
+
"itoa",
|
|
3432
|
+
"memchr",
|
|
3433
|
+
"ryu",
|
|
3434
|
+
"serde",
|
|
3435
|
+
]
|
|
3436
|
+
|
|
3437
|
+
[[package]]
|
|
3438
|
+
name = "serde_plain"
|
|
3439
|
+
version = "1.0.2"
|
|
3440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
+
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
|
|
3442
|
+
dependencies = [
|
|
3443
|
+
"serde",
|
|
3444
|
+
]
|
|
3445
|
+
|
|
3446
|
+
[[package]]
|
|
3447
|
+
name = "serde_spanned"
|
|
3448
|
+
version = "0.6.9"
|
|
3449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3450
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
3451
|
+
dependencies = [
|
|
3452
|
+
"serde",
|
|
3453
|
+
]
|
|
3454
|
+
|
|
3455
|
+
[[package]]
|
|
3456
|
+
name = "serde_urlencoded"
|
|
3457
|
+
version = "0.7.1"
|
|
3458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3459
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3460
|
+
dependencies = [
|
|
3461
|
+
"form_urlencoded",
|
|
3462
|
+
"itoa",
|
|
3463
|
+
"ryu",
|
|
3464
|
+
"serde",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "sha2"
|
|
3469
|
+
version = "0.10.9"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"cfg-if",
|
|
3474
|
+
"cpufeatures 0.2.17",
|
|
3475
|
+
"digest",
|
|
3476
|
+
]
|
|
3477
|
+
|
|
3478
|
+
[[package]]
|
|
3479
|
+
name = "shell-words"
|
|
3480
|
+
version = "1.1.0"
|
|
3481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3482
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
3483
|
+
|
|
3484
|
+
[[package]]
|
|
3485
|
+
name = "shlex"
|
|
3486
|
+
version = "1.3.0"
|
|
3487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3489
|
+
|
|
3490
|
+
[[package]]
|
|
3491
|
+
name = "simd-adler32"
|
|
3492
|
+
version = "0.3.9"
|
|
3493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3494
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3495
|
+
|
|
3496
|
+
[[package]]
|
|
3497
|
+
name = "simd_helpers"
|
|
3498
|
+
version = "0.1.0"
|
|
3499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
3501
|
+
dependencies = [
|
|
3502
|
+
"quote",
|
|
3503
|
+
]
|
|
3504
|
+
|
|
3505
|
+
[[package]]
|
|
3506
|
+
name = "slab"
|
|
3507
|
+
version = "0.4.11"
|
|
3508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3509
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3510
|
+
|
|
3511
|
+
[[package]]
|
|
3512
|
+
name = "smallvec"
|
|
3513
|
+
version = "1.15.1"
|
|
3514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3515
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3516
|
+
|
|
3517
|
+
[[package]]
|
|
3518
|
+
name = "socket2"
|
|
3519
|
+
version = "0.6.0"
|
|
3520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3521
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
3522
|
+
dependencies = [
|
|
3523
|
+
"libc",
|
|
3524
|
+
"windows-sys 0.59.0",
|
|
3525
|
+
]
|
|
3526
|
+
|
|
3527
|
+
[[package]]
|
|
3528
|
+
name = "socks"
|
|
3529
|
+
version = "0.3.4"
|
|
3530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3531
|
+
checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
|
|
3532
|
+
dependencies = [
|
|
3533
|
+
"byteorder",
|
|
3534
|
+
"libc",
|
|
3535
|
+
"winapi",
|
|
3536
|
+
]
|
|
3537
|
+
|
|
3538
|
+
[[package]]
|
|
3539
|
+
name = "spm_precompiled"
|
|
3540
|
+
version = "0.1.4"
|
|
3541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
|
3543
|
+
dependencies = [
|
|
3544
|
+
"base64 0.13.1",
|
|
3545
|
+
"nom 7.1.3",
|
|
3546
|
+
"serde",
|
|
3547
|
+
"unicode-segmentation",
|
|
3548
|
+
]
|
|
3549
|
+
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "stable_deref_trait"
|
|
3552
|
+
version = "1.2.0"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3555
|
+
|
|
3556
|
+
[[package]]
|
|
3557
|
+
name = "static_assertions"
|
|
3558
|
+
version = "1.1.0"
|
|
3559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3561
|
+
|
|
3562
|
+
[[package]]
|
|
3563
|
+
name = "strsim"
|
|
3564
|
+
version = "0.11.1"
|
|
3565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3567
|
+
|
|
3568
|
+
[[package]]
|
|
3569
|
+
name = "strum"
|
|
3570
|
+
version = "0.26.3"
|
|
3571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3573
|
+
|
|
3574
|
+
[[package]]
|
|
3575
|
+
name = "strum_macros"
|
|
3576
|
+
version = "0.26.4"
|
|
3577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3578
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
3579
|
+
dependencies = [
|
|
3580
|
+
"heck",
|
|
3581
|
+
"proc-macro2",
|
|
3582
|
+
"quote",
|
|
3583
|
+
"rustversion",
|
|
3584
|
+
"syn",
|
|
3585
|
+
]
|
|
3586
|
+
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "subtle"
|
|
3589
|
+
version = "2.6.1"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3592
|
+
|
|
3593
|
+
[[package]]
|
|
3594
|
+
name = "syn"
|
|
3595
|
+
version = "2.0.106"
|
|
3596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3597
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
3598
|
+
dependencies = [
|
|
3599
|
+
"proc-macro2",
|
|
3600
|
+
"quote",
|
|
3601
|
+
"unicode-ident",
|
|
3602
|
+
]
|
|
3603
|
+
|
|
3604
|
+
[[package]]
|
|
3605
|
+
name = "sync_wrapper"
|
|
3606
|
+
version = "1.0.2"
|
|
3607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3608
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3609
|
+
dependencies = [
|
|
3610
|
+
"futures-core",
|
|
3611
|
+
]
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "synstructure"
|
|
3615
|
+
version = "0.13.2"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3618
|
+
dependencies = [
|
|
3619
|
+
"proc-macro2",
|
|
3620
|
+
"quote",
|
|
3621
|
+
"syn",
|
|
3622
|
+
]
|
|
3623
|
+
|
|
3624
|
+
[[package]]
|
|
3625
|
+
name = "sysctl"
|
|
3626
|
+
version = "0.6.0"
|
|
3627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3628
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
|
3629
|
+
dependencies = [
|
|
3630
|
+
"bitflags 2.9.4",
|
|
3631
|
+
"byteorder",
|
|
3632
|
+
"enum-as-inner",
|
|
3633
|
+
"libc",
|
|
3634
|
+
"thiserror 1.0.69",
|
|
3635
|
+
"walkdir",
|
|
3636
|
+
]
|
|
3637
|
+
|
|
3638
|
+
[[package]]
|
|
3639
|
+
name = "system-configuration"
|
|
3640
|
+
version = "0.6.1"
|
|
3641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3642
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
3643
|
+
dependencies = [
|
|
3644
|
+
"bitflags 2.9.4",
|
|
3645
|
+
"core-foundation",
|
|
3646
|
+
"system-configuration-sys",
|
|
3647
|
+
]
|
|
3648
|
+
|
|
3649
|
+
[[package]]
|
|
3650
|
+
name = "system-configuration-sys"
|
|
3651
|
+
version = "0.6.0"
|
|
3652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
3654
|
+
dependencies = [
|
|
3655
|
+
"core-foundation-sys",
|
|
3656
|
+
"libc",
|
|
3657
|
+
]
|
|
3658
|
+
|
|
3659
|
+
[[package]]
|
|
3660
|
+
name = "tar"
|
|
3661
|
+
version = "0.4.46"
|
|
3662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
3664
|
+
dependencies = [
|
|
3665
|
+
"filetime",
|
|
3666
|
+
"libc",
|
|
3667
|
+
"xattr",
|
|
3668
|
+
]
|
|
3669
|
+
|
|
3670
|
+
[[package]]
|
|
3671
|
+
name = "thiserror"
|
|
3672
|
+
version = "1.0.69"
|
|
3673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3674
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3675
|
+
dependencies = [
|
|
3676
|
+
"thiserror-impl 1.0.69",
|
|
3677
|
+
]
|
|
3678
|
+
|
|
3679
|
+
[[package]]
|
|
3680
|
+
name = "thiserror"
|
|
3681
|
+
version = "2.0.16"
|
|
3682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
3684
|
+
dependencies = [
|
|
3685
|
+
"thiserror-impl 2.0.16",
|
|
3686
|
+
]
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "thiserror-impl"
|
|
3690
|
+
version = "1.0.69"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3693
|
+
dependencies = [
|
|
3694
|
+
"proc-macro2",
|
|
3695
|
+
"quote",
|
|
3696
|
+
"syn",
|
|
3697
|
+
]
|
|
3698
|
+
|
|
3699
|
+
[[package]]
|
|
3700
|
+
name = "thiserror-impl"
|
|
3701
|
+
version = "2.0.16"
|
|
3702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3703
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
3704
|
+
dependencies = [
|
|
3705
|
+
"proc-macro2",
|
|
3706
|
+
"quote",
|
|
3707
|
+
"syn",
|
|
3708
|
+
]
|
|
3709
|
+
|
|
3710
|
+
[[package]]
|
|
3711
|
+
name = "tiff"
|
|
3712
|
+
version = "0.11.3"
|
|
3713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3714
|
+
checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
|
|
3715
|
+
dependencies = [
|
|
3716
|
+
"fax",
|
|
3717
|
+
"flate2",
|
|
3718
|
+
"half",
|
|
3719
|
+
"quick-error",
|
|
3720
|
+
"weezl",
|
|
3721
|
+
"zune-jpeg",
|
|
3722
|
+
]
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "tinystr"
|
|
3726
|
+
version = "0.8.1"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"displaydoc",
|
|
3731
|
+
"zerovec",
|
|
3732
|
+
]
|
|
3733
|
+
|
|
3734
|
+
[[package]]
|
|
3735
|
+
name = "tinyvec"
|
|
3736
|
+
version = "1.10.0"
|
|
3737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3738
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3739
|
+
dependencies = [
|
|
3740
|
+
"tinyvec_macros",
|
|
3741
|
+
]
|
|
3742
|
+
|
|
3743
|
+
[[package]]
|
|
3744
|
+
name = "tinyvec_macros"
|
|
3745
|
+
version = "0.1.1"
|
|
3746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3748
|
+
|
|
3749
|
+
[[package]]
|
|
3750
|
+
name = "tokenizers"
|
|
3751
|
+
version = "0.21.1"
|
|
3752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3753
|
+
checksum = "3169b3195f925496c895caee7978a335d49218488ef22375267fba5a46a40bd7"
|
|
3754
|
+
dependencies = [
|
|
3755
|
+
"aho-corasick",
|
|
3756
|
+
"derive_builder",
|
|
3757
|
+
"esaxx-rs",
|
|
3758
|
+
"getrandom 0.2.16",
|
|
3759
|
+
"hf-hub",
|
|
3760
|
+
"itertools 0.13.0",
|
|
3761
|
+
"lazy_static",
|
|
3762
|
+
"log",
|
|
3763
|
+
"macro_rules_attribute",
|
|
3764
|
+
"monostate",
|
|
3765
|
+
"onig",
|
|
3766
|
+
"paste",
|
|
3767
|
+
"rand 0.8.6",
|
|
3768
|
+
"rayon",
|
|
3769
|
+
"rayon-cond 0.3.0",
|
|
3770
|
+
"regex",
|
|
3771
|
+
"regex-syntax",
|
|
3772
|
+
"serde",
|
|
3773
|
+
"serde_json",
|
|
3774
|
+
"spm_precompiled",
|
|
3775
|
+
"thiserror 2.0.16",
|
|
3776
|
+
"unicode-normalization-alignments",
|
|
3777
|
+
"unicode-segmentation",
|
|
3778
|
+
"unicode_categories",
|
|
3779
|
+
]
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "tokenizers"
|
|
3783
|
+
version = "0.22.0"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "af10f51be57162b69d90a15cb226eef12c9e4faecbd5e3ea98a86bfb920b3d71"
|
|
3786
|
+
dependencies = [
|
|
3787
|
+
"ahash",
|
|
3788
|
+
"aho-corasick",
|
|
3789
|
+
"compact_str",
|
|
3790
|
+
"dary_heap",
|
|
3791
|
+
"derive_builder",
|
|
3792
|
+
"esaxx-rs",
|
|
3793
|
+
"fancy-regex 0.14.0",
|
|
3794
|
+
"getrandom 0.3.3",
|
|
3795
|
+
"indicatif",
|
|
3796
|
+
"itertools 0.14.0",
|
|
3797
|
+
"log",
|
|
3798
|
+
"macro_rules_attribute",
|
|
3799
|
+
"monostate",
|
|
3800
|
+
"onig",
|
|
3801
|
+
"paste",
|
|
3802
|
+
"rand 0.9.4",
|
|
3803
|
+
"rayon",
|
|
3804
|
+
"rayon-cond 0.4.0",
|
|
3805
|
+
"regex",
|
|
3806
|
+
"regex-syntax",
|
|
3807
|
+
"serde",
|
|
3808
|
+
"serde_json",
|
|
3809
|
+
"spm_precompiled",
|
|
3810
|
+
"thiserror 2.0.16",
|
|
3811
|
+
"unicode-normalization-alignments",
|
|
3812
|
+
"unicode-segmentation",
|
|
3813
|
+
"unicode_categories",
|
|
3814
|
+
]
|
|
3815
|
+
|
|
3816
|
+
[[package]]
|
|
3817
|
+
name = "tokio"
|
|
3818
|
+
version = "1.47.1"
|
|
3819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3820
|
+
checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
|
|
3821
|
+
dependencies = [
|
|
3822
|
+
"backtrace",
|
|
3823
|
+
"bytes",
|
|
3824
|
+
"io-uring",
|
|
3825
|
+
"libc",
|
|
3826
|
+
"mio",
|
|
3827
|
+
"pin-project-lite",
|
|
3828
|
+
"slab",
|
|
3829
|
+
"socket2",
|
|
3830
|
+
"tokio-macros",
|
|
3831
|
+
"windows-sys 0.59.0",
|
|
3832
|
+
]
|
|
3833
|
+
|
|
3834
|
+
[[package]]
|
|
3835
|
+
name = "tokio-macros"
|
|
3836
|
+
version = "2.5.0"
|
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
3839
|
+
dependencies = [
|
|
3840
|
+
"proc-macro2",
|
|
3841
|
+
"quote",
|
|
3842
|
+
"syn",
|
|
3843
|
+
]
|
|
3844
|
+
|
|
3845
|
+
[[package]]
|
|
3846
|
+
name = "tokio-rustls"
|
|
3847
|
+
version = "0.26.2"
|
|
3848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3849
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
3850
|
+
dependencies = [
|
|
3851
|
+
"rustls",
|
|
3852
|
+
"tokio",
|
|
3853
|
+
]
|
|
3854
|
+
|
|
3855
|
+
[[package]]
|
|
3856
|
+
name = "tokio-util"
|
|
3857
|
+
version = "0.7.16"
|
|
3858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
3860
|
+
dependencies = [
|
|
3861
|
+
"bytes",
|
|
3862
|
+
"futures-core",
|
|
3863
|
+
"futures-sink",
|
|
3864
|
+
"pin-project-lite",
|
|
3865
|
+
"tokio",
|
|
3866
|
+
]
|
|
3867
|
+
|
|
3868
|
+
[[package]]
|
|
3869
|
+
name = "toml"
|
|
3870
|
+
version = "0.8.23"
|
|
3871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
3873
|
+
dependencies = [
|
|
3874
|
+
"serde",
|
|
3875
|
+
"serde_spanned",
|
|
3876
|
+
"toml_datetime",
|
|
3877
|
+
"toml_edit",
|
|
3878
|
+
]
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "toml_datetime"
|
|
3882
|
+
version = "0.6.11"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3885
|
+
dependencies = [
|
|
3886
|
+
"serde",
|
|
3887
|
+
]
|
|
3888
|
+
|
|
3889
|
+
[[package]]
|
|
3890
|
+
name = "toml_edit"
|
|
3891
|
+
version = "0.22.27"
|
|
3892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3893
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3894
|
+
dependencies = [
|
|
3895
|
+
"indexmap",
|
|
3896
|
+
"serde",
|
|
3897
|
+
"serde_spanned",
|
|
3898
|
+
"toml_datetime",
|
|
3899
|
+
"toml_write",
|
|
3900
|
+
"winnow",
|
|
3901
|
+
]
|
|
3902
|
+
|
|
3903
|
+
[[package]]
|
|
3904
|
+
name = "toml_write"
|
|
3905
|
+
version = "0.1.2"
|
|
3906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3907
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3908
|
+
|
|
3909
|
+
[[package]]
|
|
3910
|
+
name = "tower"
|
|
3911
|
+
version = "0.5.2"
|
|
3912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3913
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3914
|
+
dependencies = [
|
|
3915
|
+
"futures-core",
|
|
3916
|
+
"futures-util",
|
|
3917
|
+
"pin-project-lite",
|
|
3918
|
+
"sync_wrapper",
|
|
3919
|
+
"tokio",
|
|
3920
|
+
"tower-layer",
|
|
3921
|
+
"tower-service",
|
|
3922
|
+
]
|
|
3923
|
+
|
|
3924
|
+
[[package]]
|
|
3925
|
+
name = "tower-http"
|
|
3926
|
+
version = "0.6.6"
|
|
3927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
3929
|
+
dependencies = [
|
|
3930
|
+
"bitflags 2.9.4",
|
|
3931
|
+
"bytes",
|
|
3932
|
+
"futures-util",
|
|
3933
|
+
"http",
|
|
3934
|
+
"http-body",
|
|
3935
|
+
"iri-string",
|
|
3936
|
+
"pin-project-lite",
|
|
3937
|
+
"tower",
|
|
3938
|
+
"tower-layer",
|
|
3939
|
+
"tower-service",
|
|
3940
|
+
]
|
|
3941
|
+
|
|
3942
|
+
[[package]]
|
|
3943
|
+
name = "tower-layer"
|
|
3944
|
+
version = "0.3.3"
|
|
3945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3946
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3947
|
+
|
|
3948
|
+
[[package]]
|
|
3949
|
+
name = "tower-service"
|
|
3950
|
+
version = "0.3.3"
|
|
3951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3952
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3953
|
+
|
|
3954
|
+
[[package]]
|
|
3955
|
+
name = "tracing"
|
|
3956
|
+
version = "0.1.41"
|
|
3957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3959
|
+
dependencies = [
|
|
3960
|
+
"pin-project-lite",
|
|
3961
|
+
"tracing-attributes",
|
|
3962
|
+
"tracing-core",
|
|
3963
|
+
]
|
|
3964
|
+
|
|
3965
|
+
[[package]]
|
|
3966
|
+
name = "tracing-attributes"
|
|
3967
|
+
version = "0.1.30"
|
|
3968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3969
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
3970
|
+
dependencies = [
|
|
3971
|
+
"proc-macro2",
|
|
3972
|
+
"quote",
|
|
3973
|
+
"syn",
|
|
3974
|
+
]
|
|
3975
|
+
|
|
3976
|
+
[[package]]
|
|
3977
|
+
name = "tracing-core"
|
|
3978
|
+
version = "0.1.34"
|
|
3979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3980
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3981
|
+
dependencies = [
|
|
3982
|
+
"once_cell",
|
|
3983
|
+
]
|
|
3984
|
+
|
|
3985
|
+
[[package]]
|
|
3986
|
+
name = "try-lock"
|
|
3987
|
+
version = "0.2.5"
|
|
3988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3990
|
+
|
|
3991
|
+
[[package]]
|
|
3992
|
+
name = "typed-path"
|
|
3993
|
+
version = "0.12.3"
|
|
3994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3995
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
3996
|
+
|
|
3997
|
+
[[package]]
|
|
3998
|
+
name = "typenum"
|
|
3999
|
+
version = "1.18.0"
|
|
4000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4001
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
4002
|
+
|
|
4003
|
+
[[package]]
|
|
4004
|
+
name = "ug"
|
|
4005
|
+
version = "0.5.0"
|
|
4006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4007
|
+
checksum = "76b761acf8af3494640d826a8609e2265e19778fb43306c7f15379c78c9b05b0"
|
|
4008
|
+
dependencies = [
|
|
4009
|
+
"gemm 0.18.2",
|
|
4010
|
+
"half",
|
|
4011
|
+
"libloading 0.8.8",
|
|
4012
|
+
"memmap2",
|
|
4013
|
+
"num",
|
|
4014
|
+
"num-traits",
|
|
4015
|
+
"num_cpus",
|
|
4016
|
+
"rayon",
|
|
4017
|
+
"safetensors 0.4.5",
|
|
4018
|
+
"serde",
|
|
4019
|
+
"thiserror 1.0.69",
|
|
4020
|
+
"tracing",
|
|
4021
|
+
"yoke 0.7.5",
|
|
4022
|
+
]
|
|
4023
|
+
|
|
4024
|
+
[[package]]
|
|
4025
|
+
name = "ug-cuda"
|
|
4026
|
+
version = "0.5.0"
|
|
4027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4028
|
+
checksum = "9f0a1fa748f26166778c33b8498255ebb7c6bffb472bcc0a72839e07ebb1d9b5"
|
|
4029
|
+
dependencies = [
|
|
4030
|
+
"cudarc 0.17.8",
|
|
4031
|
+
"half",
|
|
4032
|
+
"serde",
|
|
4033
|
+
"thiserror 1.0.69",
|
|
4034
|
+
"ug",
|
|
4035
|
+
]
|
|
4036
|
+
|
|
4037
|
+
[[package]]
|
|
4038
|
+
name = "ug-metal"
|
|
4039
|
+
version = "0.5.0"
|
|
4040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4041
|
+
checksum = "9f7adf545a99a086d362efc739e7cf4317c18cbeda22706000fd434d70ea3d95"
|
|
4042
|
+
dependencies = [
|
|
4043
|
+
"half",
|
|
4044
|
+
"metal",
|
|
4045
|
+
"objc",
|
|
4046
|
+
"serde",
|
|
4047
|
+
"thiserror 1.0.69",
|
|
4048
|
+
"ug",
|
|
4049
|
+
]
|
|
4050
|
+
|
|
4051
|
+
[[package]]
|
|
4052
|
+
name = "unicode-ident"
|
|
4053
|
+
version = "1.0.19"
|
|
4054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4055
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
|
4056
|
+
|
|
4057
|
+
[[package]]
|
|
4058
|
+
name = "unicode-normalization-alignments"
|
|
4059
|
+
version = "0.1.12"
|
|
4060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4061
|
+
checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
|
|
4062
|
+
dependencies = [
|
|
4063
|
+
"smallvec",
|
|
4064
|
+
]
|
|
4065
|
+
|
|
4066
|
+
[[package]]
|
|
4067
|
+
name = "unicode-segmentation"
|
|
4068
|
+
version = "1.12.0"
|
|
4069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4070
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
4071
|
+
|
|
4072
|
+
[[package]]
|
|
4073
|
+
name = "unicode-width"
|
|
4074
|
+
version = "0.2.1"
|
|
4075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4076
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
4077
|
+
|
|
4078
|
+
[[package]]
|
|
4079
|
+
name = "unicode-xid"
|
|
4080
|
+
version = "0.2.6"
|
|
4081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4082
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
4083
|
+
|
|
4084
|
+
[[package]]
|
|
4085
|
+
name = "unicode_categories"
|
|
4086
|
+
version = "0.1.1"
|
|
4087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4088
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
4089
|
+
|
|
4090
|
+
[[package]]
|
|
4091
|
+
name = "untrusted"
|
|
4092
|
+
version = "0.9.0"
|
|
4093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4094
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
4095
|
+
|
|
4096
|
+
[[package]]
|
|
4097
|
+
name = "unty"
|
|
4098
|
+
version = "0.0.4"
|
|
4099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4100
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
4101
|
+
|
|
4102
|
+
[[package]]
|
|
4103
|
+
name = "ureq"
|
|
4104
|
+
version = "2.12.1"
|
|
4105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4106
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
4107
|
+
dependencies = [
|
|
4108
|
+
"base64 0.22.1",
|
|
4109
|
+
"flate2",
|
|
4110
|
+
"log",
|
|
4111
|
+
"once_cell",
|
|
4112
|
+
"rustls",
|
|
4113
|
+
"rustls-pki-types",
|
|
4114
|
+
"serde",
|
|
4115
|
+
"serde_json",
|
|
4116
|
+
"socks",
|
|
4117
|
+
"url",
|
|
4118
|
+
"webpki-roots 0.26.11",
|
|
4119
|
+
]
|
|
4120
|
+
|
|
4121
|
+
[[package]]
|
|
4122
|
+
name = "url"
|
|
4123
|
+
version = "2.5.7"
|
|
4124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4125
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
4126
|
+
dependencies = [
|
|
4127
|
+
"form_urlencoded",
|
|
4128
|
+
"idna",
|
|
4129
|
+
"percent-encoding",
|
|
4130
|
+
"serde",
|
|
4131
|
+
]
|
|
4132
|
+
|
|
4133
|
+
[[package]]
|
|
4134
|
+
name = "utf8_iter"
|
|
4135
|
+
version = "1.0.4"
|
|
4136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4137
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4138
|
+
|
|
4139
|
+
[[package]]
|
|
4140
|
+
name = "uuid"
|
|
4141
|
+
version = "1.18.1"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
4144
|
+
dependencies = [
|
|
4145
|
+
"getrandom 0.3.3",
|
|
4146
|
+
"js-sys",
|
|
4147
|
+
"wasm-bindgen",
|
|
4148
|
+
]
|
|
4149
|
+
|
|
4150
|
+
[[package]]
|
|
4151
|
+
name = "v_frame"
|
|
4152
|
+
version = "0.3.9"
|
|
4153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4154
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
4155
|
+
dependencies = [
|
|
4156
|
+
"aligned-vec",
|
|
4157
|
+
"num-traits",
|
|
4158
|
+
"wasm-bindgen",
|
|
4159
|
+
]
|
|
4160
|
+
|
|
4161
|
+
[[package]]
|
|
4162
|
+
name = "version_check"
|
|
4163
|
+
version = "0.9.5"
|
|
4164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4166
|
+
|
|
4167
|
+
[[package]]
|
|
4168
|
+
name = "virtue"
|
|
4169
|
+
version = "0.0.18"
|
|
4170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4171
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
4172
|
+
|
|
4173
|
+
[[package]]
|
|
4174
|
+
name = "walkdir"
|
|
4175
|
+
version = "2.5.0"
|
|
4176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4177
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4178
|
+
dependencies = [
|
|
4179
|
+
"same-file",
|
|
4180
|
+
"winapi-util",
|
|
4181
|
+
]
|
|
4182
|
+
|
|
4183
|
+
[[package]]
|
|
4184
|
+
name = "want"
|
|
4185
|
+
version = "0.3.1"
|
|
4186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4187
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4188
|
+
dependencies = [
|
|
4189
|
+
"try-lock",
|
|
4190
|
+
]
|
|
4191
|
+
|
|
4192
|
+
[[package]]
|
|
4193
|
+
name = "wasi"
|
|
4194
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
4195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4196
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4197
|
+
|
|
4198
|
+
[[package]]
|
|
4199
|
+
name = "wasi"
|
|
4200
|
+
version = "0.14.5+wasi-0.2.4"
|
|
4201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4202
|
+
checksum = "a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4"
|
|
4203
|
+
dependencies = [
|
|
4204
|
+
"wasip2",
|
|
4205
|
+
]
|
|
4206
|
+
|
|
4207
|
+
[[package]]
|
|
4208
|
+
name = "wasip2"
|
|
4209
|
+
version = "1.0.0+wasi-0.2.4"
|
|
4210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4211
|
+
checksum = "03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24"
|
|
4212
|
+
dependencies = [
|
|
4213
|
+
"wit-bindgen 0.45.1",
|
|
4214
|
+
]
|
|
4215
|
+
|
|
4216
|
+
[[package]]
|
|
4217
|
+
name = "wasip3"
|
|
4218
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
4219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4220
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
4221
|
+
dependencies = [
|
|
4222
|
+
"wit-bindgen 0.51.0",
|
|
4223
|
+
]
|
|
4224
|
+
|
|
4225
|
+
[[package]]
|
|
4226
|
+
name = "wasm-bindgen"
|
|
4227
|
+
version = "0.2.101"
|
|
4228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4229
|
+
checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
|
|
4230
|
+
dependencies = [
|
|
4231
|
+
"cfg-if",
|
|
4232
|
+
"once_cell",
|
|
4233
|
+
"rustversion",
|
|
4234
|
+
"wasm-bindgen-macro",
|
|
4235
|
+
"wasm-bindgen-shared",
|
|
4236
|
+
]
|
|
4237
|
+
|
|
4238
|
+
[[package]]
|
|
4239
|
+
name = "wasm-bindgen-backend"
|
|
4240
|
+
version = "0.2.101"
|
|
4241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4242
|
+
checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
|
|
4243
|
+
dependencies = [
|
|
4244
|
+
"bumpalo",
|
|
4245
|
+
"log",
|
|
4246
|
+
"proc-macro2",
|
|
4247
|
+
"quote",
|
|
4248
|
+
"syn",
|
|
4249
|
+
"wasm-bindgen-shared",
|
|
4250
|
+
]
|
|
4251
|
+
|
|
4252
|
+
[[package]]
|
|
4253
|
+
name = "wasm-bindgen-futures"
|
|
4254
|
+
version = "0.4.51"
|
|
4255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4256
|
+
checksum = "0ca85039a9b469b38336411d6d6ced91f3fc87109a2a27b0c197663f5144dffe"
|
|
4257
|
+
dependencies = [
|
|
4258
|
+
"cfg-if",
|
|
4259
|
+
"js-sys",
|
|
4260
|
+
"once_cell",
|
|
4261
|
+
"wasm-bindgen",
|
|
4262
|
+
"web-sys",
|
|
4263
|
+
]
|
|
4264
|
+
|
|
4265
|
+
[[package]]
|
|
4266
|
+
name = "wasm-bindgen-macro"
|
|
4267
|
+
version = "0.2.101"
|
|
4268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4269
|
+
checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
|
|
4270
|
+
dependencies = [
|
|
4271
|
+
"quote",
|
|
4272
|
+
"wasm-bindgen-macro-support",
|
|
4273
|
+
]
|
|
4274
|
+
|
|
4275
|
+
[[package]]
|
|
4276
|
+
name = "wasm-bindgen-macro-support"
|
|
4277
|
+
version = "0.2.101"
|
|
4278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4279
|
+
checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
|
|
4280
|
+
dependencies = [
|
|
4281
|
+
"proc-macro2",
|
|
4282
|
+
"quote",
|
|
4283
|
+
"syn",
|
|
4284
|
+
"wasm-bindgen-backend",
|
|
4285
|
+
"wasm-bindgen-shared",
|
|
4286
|
+
]
|
|
4287
|
+
|
|
4288
|
+
[[package]]
|
|
4289
|
+
name = "wasm-bindgen-shared"
|
|
4290
|
+
version = "0.2.101"
|
|
4291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4292
|
+
checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
|
|
4293
|
+
dependencies = [
|
|
4294
|
+
"unicode-ident",
|
|
4295
|
+
]
|
|
4296
|
+
|
|
4297
|
+
[[package]]
|
|
4298
|
+
name = "wasm-encoder"
|
|
4299
|
+
version = "0.244.0"
|
|
4300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4301
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
4302
|
+
dependencies = [
|
|
4303
|
+
"leb128fmt",
|
|
4304
|
+
"wasmparser",
|
|
4305
|
+
]
|
|
4306
|
+
|
|
4307
|
+
[[package]]
|
|
4308
|
+
name = "wasm-metadata"
|
|
4309
|
+
version = "0.244.0"
|
|
4310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
4312
|
+
dependencies = [
|
|
4313
|
+
"anyhow",
|
|
4314
|
+
"indexmap",
|
|
4315
|
+
"wasm-encoder",
|
|
4316
|
+
"wasmparser",
|
|
4317
|
+
]
|
|
4318
|
+
|
|
4319
|
+
[[package]]
|
|
4320
|
+
name = "wasm-streams"
|
|
4321
|
+
version = "0.4.2"
|
|
4322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4323
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4324
|
+
dependencies = [
|
|
4325
|
+
"futures-util",
|
|
4326
|
+
"js-sys",
|
|
4327
|
+
"wasm-bindgen",
|
|
4328
|
+
"wasm-bindgen-futures",
|
|
4329
|
+
"web-sys",
|
|
4330
|
+
]
|
|
4331
|
+
|
|
4332
|
+
[[package]]
|
|
4333
|
+
name = "wasmparser"
|
|
4334
|
+
version = "0.244.0"
|
|
4335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4336
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
4337
|
+
dependencies = [
|
|
4338
|
+
"bitflags 2.9.4",
|
|
4339
|
+
"hashbrown 0.15.5",
|
|
4340
|
+
"indexmap",
|
|
4341
|
+
"semver",
|
|
4342
|
+
]
|
|
4343
|
+
|
|
4344
|
+
[[package]]
|
|
4345
|
+
name = "web-sys"
|
|
4346
|
+
version = "0.3.78"
|
|
4347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4348
|
+
checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12"
|
|
4349
|
+
dependencies = [
|
|
4350
|
+
"js-sys",
|
|
4351
|
+
"wasm-bindgen",
|
|
4352
|
+
]
|
|
4353
|
+
|
|
4354
|
+
[[package]]
|
|
4355
|
+
name = "web-time"
|
|
4356
|
+
version = "1.1.0"
|
|
4357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4358
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4359
|
+
dependencies = [
|
|
4360
|
+
"js-sys",
|
|
4361
|
+
"wasm-bindgen",
|
|
4362
|
+
]
|
|
4363
|
+
|
|
4364
|
+
[[package]]
|
|
4365
|
+
name = "webpki-roots"
|
|
4366
|
+
version = "0.26.11"
|
|
4367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4368
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
4369
|
+
dependencies = [
|
|
4370
|
+
"webpki-roots 1.0.2",
|
|
4371
|
+
]
|
|
4372
|
+
|
|
4373
|
+
[[package]]
|
|
4374
|
+
name = "webpki-roots"
|
|
4375
|
+
version = "1.0.2"
|
|
4376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4377
|
+
checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
|
|
4378
|
+
dependencies = [
|
|
4379
|
+
"rustls-pki-types",
|
|
4380
|
+
]
|
|
4381
|
+
|
|
4382
|
+
[[package]]
|
|
4383
|
+
name = "weezl"
|
|
4384
|
+
version = "0.1.12"
|
|
4385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4386
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
4387
|
+
|
|
4388
|
+
[[package]]
|
|
4389
|
+
name = "winapi"
|
|
4390
|
+
version = "0.3.9"
|
|
4391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4392
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4393
|
+
dependencies = [
|
|
4394
|
+
"winapi-i686-pc-windows-gnu",
|
|
4395
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4396
|
+
]
|
|
4397
|
+
|
|
4398
|
+
[[package]]
|
|
4399
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4400
|
+
version = "0.4.0"
|
|
4401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4402
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4403
|
+
|
|
4404
|
+
[[package]]
|
|
4405
|
+
name = "winapi-util"
|
|
4406
|
+
version = "0.1.11"
|
|
4407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4408
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4409
|
+
dependencies = [
|
|
4410
|
+
"windows-sys 0.48.0",
|
|
4411
|
+
]
|
|
4412
|
+
|
|
4413
|
+
[[package]]
|
|
4414
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4415
|
+
version = "0.4.0"
|
|
4416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4417
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4418
|
+
|
|
4419
|
+
[[package]]
|
|
4420
|
+
name = "windows-core"
|
|
4421
|
+
version = "0.62.0"
|
|
4422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4423
|
+
checksum = "57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c"
|
|
4424
|
+
dependencies = [
|
|
4425
|
+
"windows-implement",
|
|
4426
|
+
"windows-interface",
|
|
4427
|
+
"windows-link 0.2.0",
|
|
4428
|
+
"windows-result 0.4.0",
|
|
4429
|
+
"windows-strings 0.5.0",
|
|
4430
|
+
]
|
|
4431
|
+
|
|
4432
|
+
[[package]]
|
|
4433
|
+
name = "windows-implement"
|
|
4434
|
+
version = "0.60.0"
|
|
4435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4436
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
4437
|
+
dependencies = [
|
|
4438
|
+
"proc-macro2",
|
|
4439
|
+
"quote",
|
|
4440
|
+
"syn",
|
|
4441
|
+
]
|
|
4442
|
+
|
|
4443
|
+
[[package]]
|
|
4444
|
+
name = "windows-interface"
|
|
4445
|
+
version = "0.59.1"
|
|
4446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4447
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
4448
|
+
dependencies = [
|
|
4449
|
+
"proc-macro2",
|
|
4450
|
+
"quote",
|
|
4451
|
+
"syn",
|
|
4452
|
+
]
|
|
4453
|
+
|
|
4454
|
+
[[package]]
|
|
4455
|
+
name = "windows-link"
|
|
4456
|
+
version = "0.1.3"
|
|
4457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4458
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
4459
|
+
|
|
4460
|
+
[[package]]
|
|
4461
|
+
name = "windows-link"
|
|
4462
|
+
version = "0.2.0"
|
|
4463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4464
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
4465
|
+
|
|
4466
|
+
[[package]]
|
|
4467
|
+
name = "windows-registry"
|
|
4468
|
+
version = "0.5.3"
|
|
4469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4470
|
+
checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
|
|
4471
|
+
dependencies = [
|
|
4472
|
+
"windows-link 0.1.3",
|
|
4473
|
+
"windows-result 0.3.4",
|
|
4474
|
+
"windows-strings 0.4.2",
|
|
4475
|
+
]
|
|
4476
|
+
|
|
4477
|
+
[[package]]
|
|
4478
|
+
name = "windows-result"
|
|
4479
|
+
version = "0.3.4"
|
|
4480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4481
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
4482
|
+
dependencies = [
|
|
4483
|
+
"windows-link 0.1.3",
|
|
4484
|
+
]
|
|
4485
|
+
|
|
4486
|
+
[[package]]
|
|
4487
|
+
name = "windows-result"
|
|
4488
|
+
version = "0.4.0"
|
|
4489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4490
|
+
checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
|
|
4491
|
+
dependencies = [
|
|
4492
|
+
"windows-link 0.2.0",
|
|
4493
|
+
]
|
|
4494
|
+
|
|
4495
|
+
[[package]]
|
|
4496
|
+
name = "windows-strings"
|
|
4497
|
+
version = "0.4.2"
|
|
4498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4499
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
4500
|
+
dependencies = [
|
|
4501
|
+
"windows-link 0.1.3",
|
|
4502
|
+
]
|
|
4503
|
+
|
|
4504
|
+
[[package]]
|
|
4505
|
+
name = "windows-strings"
|
|
4506
|
+
version = "0.5.0"
|
|
4507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4508
|
+
checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
|
|
4509
|
+
dependencies = [
|
|
4510
|
+
"windows-link 0.2.0",
|
|
4511
|
+
]
|
|
4512
|
+
|
|
4513
|
+
[[package]]
|
|
4514
|
+
name = "windows-sys"
|
|
4515
|
+
version = "0.48.0"
|
|
4516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4517
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4518
|
+
dependencies = [
|
|
4519
|
+
"windows-targets 0.48.5",
|
|
4520
|
+
]
|
|
4521
|
+
|
|
4522
|
+
[[package]]
|
|
4523
|
+
name = "windows-sys"
|
|
4524
|
+
version = "0.52.0"
|
|
4525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4526
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4527
|
+
dependencies = [
|
|
4528
|
+
"windows-targets 0.52.6",
|
|
4529
|
+
]
|
|
4530
|
+
|
|
4531
|
+
[[package]]
|
|
4532
|
+
name = "windows-sys"
|
|
4533
|
+
version = "0.59.0"
|
|
4534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4535
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4536
|
+
dependencies = [
|
|
4537
|
+
"windows-targets 0.52.6",
|
|
4538
|
+
]
|
|
4539
|
+
|
|
4540
|
+
[[package]]
|
|
4541
|
+
name = "windows-sys"
|
|
4542
|
+
version = "0.60.2"
|
|
4543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4544
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4545
|
+
dependencies = [
|
|
4546
|
+
"windows-targets 0.53.3",
|
|
4547
|
+
]
|
|
4548
|
+
|
|
4549
|
+
[[package]]
|
|
4550
|
+
name = "windows-targets"
|
|
4551
|
+
version = "0.48.5"
|
|
4552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4553
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4554
|
+
dependencies = [
|
|
4555
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4556
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4557
|
+
"windows_i686_gnu 0.48.5",
|
|
4558
|
+
"windows_i686_msvc 0.48.5",
|
|
4559
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4560
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4561
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4562
|
+
]
|
|
4563
|
+
|
|
4564
|
+
[[package]]
|
|
4565
|
+
name = "windows-targets"
|
|
4566
|
+
version = "0.52.6"
|
|
4567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4568
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4569
|
+
dependencies = [
|
|
4570
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4571
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4572
|
+
"windows_i686_gnu 0.52.6",
|
|
4573
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4574
|
+
"windows_i686_msvc 0.52.6",
|
|
4575
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4576
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4577
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4578
|
+
]
|
|
4579
|
+
|
|
4580
|
+
[[package]]
|
|
4581
|
+
name = "windows-targets"
|
|
4582
|
+
version = "0.53.3"
|
|
4583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4584
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
4585
|
+
dependencies = [
|
|
4586
|
+
"windows-link 0.1.3",
|
|
4587
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
4588
|
+
"windows_aarch64_msvc 0.53.0",
|
|
4589
|
+
"windows_i686_gnu 0.53.0",
|
|
4590
|
+
"windows_i686_gnullvm 0.53.0",
|
|
4591
|
+
"windows_i686_msvc 0.53.0",
|
|
4592
|
+
"windows_x86_64_gnu 0.53.0",
|
|
4593
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
4594
|
+
"windows_x86_64_msvc 0.53.0",
|
|
4595
|
+
]
|
|
4596
|
+
|
|
4597
|
+
[[package]]
|
|
4598
|
+
name = "windows_aarch64_gnullvm"
|
|
4599
|
+
version = "0.48.5"
|
|
4600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4601
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
4602
|
+
|
|
4603
|
+
[[package]]
|
|
4604
|
+
name = "windows_aarch64_gnullvm"
|
|
4605
|
+
version = "0.52.6"
|
|
4606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4607
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4608
|
+
|
|
4609
|
+
[[package]]
|
|
4610
|
+
name = "windows_aarch64_gnullvm"
|
|
4611
|
+
version = "0.53.0"
|
|
4612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4613
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
4614
|
+
|
|
4615
|
+
[[package]]
|
|
4616
|
+
name = "windows_aarch64_msvc"
|
|
4617
|
+
version = "0.48.5"
|
|
4618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
4620
|
+
|
|
4621
|
+
[[package]]
|
|
4622
|
+
name = "windows_aarch64_msvc"
|
|
4623
|
+
version = "0.52.6"
|
|
4624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4625
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4626
|
+
|
|
4627
|
+
[[package]]
|
|
4628
|
+
name = "windows_aarch64_msvc"
|
|
4629
|
+
version = "0.53.0"
|
|
4630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4631
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
4632
|
+
|
|
4633
|
+
[[package]]
|
|
4634
|
+
name = "windows_i686_gnu"
|
|
4635
|
+
version = "0.48.5"
|
|
4636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4637
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
4638
|
+
|
|
4639
|
+
[[package]]
|
|
4640
|
+
name = "windows_i686_gnu"
|
|
4641
|
+
version = "0.52.6"
|
|
4642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4643
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4644
|
+
|
|
4645
|
+
[[package]]
|
|
4646
|
+
name = "windows_i686_gnu"
|
|
4647
|
+
version = "0.53.0"
|
|
4648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4649
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
4650
|
+
|
|
4651
|
+
[[package]]
|
|
4652
|
+
name = "windows_i686_gnullvm"
|
|
4653
|
+
version = "0.52.6"
|
|
4654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4655
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4656
|
+
|
|
4657
|
+
[[package]]
|
|
4658
|
+
name = "windows_i686_gnullvm"
|
|
4659
|
+
version = "0.53.0"
|
|
4660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4661
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
4662
|
+
|
|
4663
|
+
[[package]]
|
|
4664
|
+
name = "windows_i686_msvc"
|
|
4665
|
+
version = "0.48.5"
|
|
4666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4667
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
4668
|
+
|
|
4669
|
+
[[package]]
|
|
4670
|
+
name = "windows_i686_msvc"
|
|
4671
|
+
version = "0.52.6"
|
|
4672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4673
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4674
|
+
|
|
4675
|
+
[[package]]
|
|
4676
|
+
name = "windows_i686_msvc"
|
|
4677
|
+
version = "0.53.0"
|
|
4678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4679
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
4680
|
+
|
|
4681
|
+
[[package]]
|
|
4682
|
+
name = "windows_x86_64_gnu"
|
|
4683
|
+
version = "0.48.5"
|
|
4684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
4686
|
+
|
|
4687
|
+
[[package]]
|
|
4688
|
+
name = "windows_x86_64_gnu"
|
|
4689
|
+
version = "0.52.6"
|
|
4690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4691
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4692
|
+
|
|
4693
|
+
[[package]]
|
|
4694
|
+
name = "windows_x86_64_gnu"
|
|
4695
|
+
version = "0.53.0"
|
|
4696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4697
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
4698
|
+
|
|
4699
|
+
[[package]]
|
|
4700
|
+
name = "windows_x86_64_gnullvm"
|
|
4701
|
+
version = "0.48.5"
|
|
4702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4703
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
4704
|
+
|
|
4705
|
+
[[package]]
|
|
4706
|
+
name = "windows_x86_64_gnullvm"
|
|
4707
|
+
version = "0.52.6"
|
|
4708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4709
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4710
|
+
|
|
4711
|
+
[[package]]
|
|
4712
|
+
name = "windows_x86_64_gnullvm"
|
|
4713
|
+
version = "0.53.0"
|
|
4714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4715
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
4716
|
+
|
|
4717
|
+
[[package]]
|
|
4718
|
+
name = "windows_x86_64_msvc"
|
|
4719
|
+
version = "0.48.5"
|
|
4720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4721
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
4722
|
+
|
|
4723
|
+
[[package]]
|
|
4724
|
+
name = "windows_x86_64_msvc"
|
|
4725
|
+
version = "0.52.6"
|
|
4726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4727
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4728
|
+
|
|
4729
|
+
[[package]]
|
|
4730
|
+
name = "windows_x86_64_msvc"
|
|
4731
|
+
version = "0.53.0"
|
|
4732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4733
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
4734
|
+
|
|
4735
|
+
[[package]]
|
|
4736
|
+
name = "winnow"
|
|
4737
|
+
version = "0.7.13"
|
|
4738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4739
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
4740
|
+
dependencies = [
|
|
4741
|
+
"memchr",
|
|
4742
|
+
]
|
|
4743
|
+
|
|
4744
|
+
[[package]]
|
|
4745
|
+
name = "wit-bindgen"
|
|
4746
|
+
version = "0.45.1"
|
|
4747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4748
|
+
checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36"
|
|
4749
|
+
|
|
4750
|
+
[[package]]
|
|
4751
|
+
name = "wit-bindgen"
|
|
4752
|
+
version = "0.51.0"
|
|
4753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4754
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4755
|
+
dependencies = [
|
|
4756
|
+
"wit-bindgen-rust-macro",
|
|
4757
|
+
]
|
|
4758
|
+
|
|
4759
|
+
[[package]]
|
|
4760
|
+
name = "wit-bindgen-core"
|
|
4761
|
+
version = "0.51.0"
|
|
4762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4763
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
4764
|
+
dependencies = [
|
|
4765
|
+
"anyhow",
|
|
4766
|
+
"heck",
|
|
4767
|
+
"wit-parser",
|
|
4768
|
+
]
|
|
4769
|
+
|
|
4770
|
+
[[package]]
|
|
4771
|
+
name = "wit-bindgen-rust"
|
|
4772
|
+
version = "0.51.0"
|
|
4773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4774
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
4775
|
+
dependencies = [
|
|
4776
|
+
"anyhow",
|
|
4777
|
+
"heck",
|
|
4778
|
+
"indexmap",
|
|
4779
|
+
"prettyplease",
|
|
4780
|
+
"syn",
|
|
4781
|
+
"wasm-metadata",
|
|
4782
|
+
"wit-bindgen-core",
|
|
4783
|
+
"wit-component",
|
|
4784
|
+
]
|
|
4785
|
+
|
|
4786
|
+
[[package]]
|
|
4787
|
+
name = "wit-bindgen-rust-macro"
|
|
4788
|
+
version = "0.51.0"
|
|
4789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4790
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
4791
|
+
dependencies = [
|
|
4792
|
+
"anyhow",
|
|
4793
|
+
"prettyplease",
|
|
4794
|
+
"proc-macro2",
|
|
4795
|
+
"quote",
|
|
4796
|
+
"syn",
|
|
4797
|
+
"wit-bindgen-core",
|
|
4798
|
+
"wit-bindgen-rust",
|
|
4799
|
+
]
|
|
4800
|
+
|
|
4801
|
+
[[package]]
|
|
4802
|
+
name = "wit-component"
|
|
4803
|
+
version = "0.244.0"
|
|
4804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4805
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
4806
|
+
dependencies = [
|
|
4807
|
+
"anyhow",
|
|
4808
|
+
"bitflags 2.9.4",
|
|
4809
|
+
"indexmap",
|
|
4810
|
+
"log",
|
|
4811
|
+
"serde",
|
|
4812
|
+
"serde_derive",
|
|
4813
|
+
"serde_json",
|
|
4814
|
+
"wasm-encoder",
|
|
4815
|
+
"wasm-metadata",
|
|
4816
|
+
"wasmparser",
|
|
4817
|
+
"wit-parser",
|
|
4818
|
+
]
|
|
4819
|
+
|
|
4820
|
+
[[package]]
|
|
4821
|
+
name = "wit-parser"
|
|
4822
|
+
version = "0.244.0"
|
|
4823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4824
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4825
|
+
dependencies = [
|
|
4826
|
+
"anyhow",
|
|
4827
|
+
"id-arena",
|
|
4828
|
+
"indexmap",
|
|
4829
|
+
"log",
|
|
4830
|
+
"semver",
|
|
4831
|
+
"serde",
|
|
4832
|
+
"serde_derive",
|
|
4833
|
+
"serde_json",
|
|
4834
|
+
"unicode-xid",
|
|
4835
|
+
"wasmparser",
|
|
4836
|
+
]
|
|
4837
|
+
|
|
4838
|
+
[[package]]
|
|
4839
|
+
name = "writeable"
|
|
4840
|
+
version = "0.6.1"
|
|
4841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4842
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
4843
|
+
|
|
4844
|
+
[[package]]
|
|
4845
|
+
name = "xattr"
|
|
4846
|
+
version = "1.5.1"
|
|
4847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4848
|
+
checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
|
|
4849
|
+
dependencies = [
|
|
4850
|
+
"libc",
|
|
4851
|
+
"rustix",
|
|
4852
|
+
]
|
|
4853
|
+
|
|
4854
|
+
[[package]]
|
|
4855
|
+
name = "y4m"
|
|
4856
|
+
version = "0.8.0"
|
|
4857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4858
|
+
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
|
|
4859
|
+
|
|
4860
|
+
[[package]]
|
|
4861
|
+
name = "yoke"
|
|
4862
|
+
version = "0.7.5"
|
|
4863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4864
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4865
|
+
dependencies = [
|
|
4866
|
+
"serde",
|
|
4867
|
+
"stable_deref_trait",
|
|
4868
|
+
"yoke-derive 0.7.5",
|
|
4869
|
+
"zerofrom",
|
|
4870
|
+
]
|
|
4871
|
+
|
|
4872
|
+
[[package]]
|
|
4873
|
+
name = "yoke"
|
|
4874
|
+
version = "0.8.1"
|
|
4875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4876
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4877
|
+
dependencies = [
|
|
4878
|
+
"stable_deref_trait",
|
|
4879
|
+
"yoke-derive 0.8.0",
|
|
4880
|
+
"zerofrom",
|
|
4881
|
+
]
|
|
4882
|
+
|
|
4883
|
+
[[package]]
|
|
4884
|
+
name = "yoke-derive"
|
|
4885
|
+
version = "0.7.5"
|
|
4886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4887
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4888
|
+
dependencies = [
|
|
4889
|
+
"proc-macro2",
|
|
4890
|
+
"quote",
|
|
4891
|
+
"syn",
|
|
4892
|
+
"synstructure",
|
|
4893
|
+
]
|
|
4894
|
+
|
|
4895
|
+
[[package]]
|
|
4896
|
+
name = "yoke-derive"
|
|
4897
|
+
version = "0.8.0"
|
|
4898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4899
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
4900
|
+
dependencies = [
|
|
4901
|
+
"proc-macro2",
|
|
4902
|
+
"quote",
|
|
4903
|
+
"syn",
|
|
4904
|
+
"synstructure",
|
|
4905
|
+
]
|
|
4906
|
+
|
|
4907
|
+
[[package]]
|
|
4908
|
+
name = "zerocopy"
|
|
4909
|
+
version = "0.8.27"
|
|
4910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4911
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
4912
|
+
dependencies = [
|
|
4913
|
+
"zerocopy-derive",
|
|
4914
|
+
]
|
|
4915
|
+
|
|
4916
|
+
[[package]]
|
|
4917
|
+
name = "zerocopy-derive"
|
|
4918
|
+
version = "0.8.27"
|
|
4919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4920
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
4921
|
+
dependencies = [
|
|
4922
|
+
"proc-macro2",
|
|
4923
|
+
"quote",
|
|
4924
|
+
"syn",
|
|
4925
|
+
]
|
|
4926
|
+
|
|
4927
|
+
[[package]]
|
|
4928
|
+
name = "zerofrom"
|
|
4929
|
+
version = "0.1.6"
|
|
4930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4931
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4932
|
+
dependencies = [
|
|
4933
|
+
"zerofrom-derive",
|
|
4934
|
+
]
|
|
4935
|
+
|
|
4936
|
+
[[package]]
|
|
4937
|
+
name = "zerofrom-derive"
|
|
4938
|
+
version = "0.1.6"
|
|
4939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4940
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4941
|
+
dependencies = [
|
|
4942
|
+
"proc-macro2",
|
|
4943
|
+
"quote",
|
|
4944
|
+
"syn",
|
|
4945
|
+
"synstructure",
|
|
4946
|
+
]
|
|
4947
|
+
|
|
4948
|
+
[[package]]
|
|
4949
|
+
name = "zeroize"
|
|
4950
|
+
version = "1.8.1"
|
|
4951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4952
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4953
|
+
|
|
4954
|
+
[[package]]
|
|
4955
|
+
name = "zerotrie"
|
|
4956
|
+
version = "0.2.2"
|
|
4957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4958
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
4959
|
+
dependencies = [
|
|
4960
|
+
"displaydoc",
|
|
4961
|
+
"yoke 0.8.1",
|
|
4962
|
+
"zerofrom",
|
|
4963
|
+
]
|
|
4964
|
+
|
|
4965
|
+
[[package]]
|
|
4966
|
+
name = "zerovec"
|
|
4967
|
+
version = "0.11.4"
|
|
4968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4969
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
4970
|
+
dependencies = [
|
|
4971
|
+
"yoke 0.8.1",
|
|
4972
|
+
"zerofrom",
|
|
4973
|
+
"zerovec-derive",
|
|
4974
|
+
]
|
|
4975
|
+
|
|
4976
|
+
[[package]]
|
|
4977
|
+
name = "zerovec-derive"
|
|
4978
|
+
version = "0.11.1"
|
|
4979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4980
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
4981
|
+
dependencies = [
|
|
4982
|
+
"proc-macro2",
|
|
4983
|
+
"quote",
|
|
4984
|
+
"syn",
|
|
4985
|
+
]
|
|
4986
|
+
|
|
4987
|
+
[[package]]
|
|
4988
|
+
name = "zip"
|
|
4989
|
+
version = "7.2.0"
|
|
4990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4991
|
+
checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
|
|
4992
|
+
dependencies = [
|
|
4993
|
+
"crc32fast",
|
|
4994
|
+
"indexmap",
|
|
4995
|
+
"memchr",
|
|
4996
|
+
"typed-path",
|
|
4997
|
+
]
|
|
4998
|
+
|
|
4999
|
+
[[package]]
|
|
5000
|
+
name = "zune-core"
|
|
5001
|
+
version = "0.5.1"
|
|
5002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
5004
|
+
|
|
5005
|
+
[[package]]
|
|
5006
|
+
name = "zune-inflate"
|
|
5007
|
+
version = "0.2.54"
|
|
5008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5009
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
5010
|
+
dependencies = [
|
|
5011
|
+
"simd-adler32",
|
|
5012
|
+
]
|
|
5013
|
+
|
|
5014
|
+
[[package]]
|
|
5015
|
+
name = "zune-jpeg"
|
|
5016
|
+
version = "0.5.15"
|
|
5017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5018
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
5019
|
+
dependencies = [
|
|
5020
|
+
"zune-core",
|
|
5021
|
+
]
|