ruby_llm-turbovec 0.1.0
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/.idea/.gitignore +5 -0
- data/.idea/inspectionProfiles/Project_Default.xml +5 -0
- data/.idea/jsLibraryMappings.xml +6 -0
- data/.idea/misc.xml +17 -0
- data/.idea/modules.xml +8 -0
- data/.idea/ruby_llm-turbovec.iml +55 -0
- data/.idea/vcs.xml +6 -0
- data/.rspec +3 -0
- data/.rubocop.yml +8 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +79 -0
- data/Rakefile +23 -0
- data/build_release.sh +13 -0
- data/docs/api-coverage-matrix.md +64 -0
- data/docs/release-process.md +38 -0
- data/ext/ruby_llm/turbovec/Cargo.lock +1333 -0
- data/ext/ruby_llm/turbovec/Cargo.toml +18 -0
- data/ext/ruby_llm/turbovec/Makefile +592 -0
- data/ext/ruby_llm/turbovec/extconf.rb +6 -0
- data/ext/ruby_llm/turbovec/mkmf.log +16 -0
- data/ext/ruby_llm/turbovec/src/lib.rs +399 -0
- data/lib/ruby_llm/turbovec/version.rb +7 -0
- data/lib/ruby_llm/turbovec.rb +15 -0
- data/sig/ruby_llm/turbovec.rbs +53 -0
- metadata +85 -0
|
@@ -0,0 +1,1333 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "approx"
|
|
16
|
+
version = "0.5.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"num-traits",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "autocfg"
|
|
25
|
+
version = "1.5.1"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "bindgen"
|
|
31
|
+
version = "0.72.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"bitflags",
|
|
36
|
+
"cexpr",
|
|
37
|
+
"clang-sys",
|
|
38
|
+
"itertools",
|
|
39
|
+
"proc-macro2",
|
|
40
|
+
"quote",
|
|
41
|
+
"regex",
|
|
42
|
+
"rustc-hash",
|
|
43
|
+
"shlex",
|
|
44
|
+
"syn",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "bitflags"
|
|
49
|
+
version = "2.13.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "block-buffer"
|
|
55
|
+
version = "0.10.4"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"generic-array",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "bytemuck"
|
|
64
|
+
version = "1.25.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"bytemuck_derive",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "bytemuck_derive"
|
|
73
|
+
version = "1.10.2"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"proc-macro2",
|
|
78
|
+
"quote",
|
|
79
|
+
"syn",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "byteorder"
|
|
84
|
+
version = "1.5.0"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "cblas-sys"
|
|
90
|
+
version = "0.1.4"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "b6feecd82cce51b0204cf063f0041d69f24ce83f680d87514b004248e7b0fa65"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"libc",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "cexpr"
|
|
99
|
+
version = "0.6.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"nom",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "cfg-if"
|
|
108
|
+
version = "1.0.4"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "clang-sys"
|
|
114
|
+
version = "1.8.1"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"glob",
|
|
119
|
+
"libc",
|
|
120
|
+
"libloading",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "coe-rs"
|
|
125
|
+
version = "0.1.2"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "7e8f1e641542c07631228b1e0dc04b69ae3c1d58ef65d5691a439711d805c698"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "cpufeatures"
|
|
131
|
+
version = "0.2.17"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"libc",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "crossbeam-deque"
|
|
140
|
+
version = "0.8.6"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"crossbeam-epoch",
|
|
145
|
+
"crossbeam-utils",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "crossbeam-epoch"
|
|
150
|
+
version = "0.9.18"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"crossbeam-utils",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "crossbeam-utils"
|
|
159
|
+
version = "0.8.21"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "crunchy"
|
|
165
|
+
version = "0.2.4"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "crypto-common"
|
|
171
|
+
version = "0.1.7"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"generic-array",
|
|
176
|
+
"typenum",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "dbgf"
|
|
181
|
+
version = "0.1.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "e6ca96b45ca70b8045e0462f191bd209fcb3c3bfe8dbfb1257ada54c4dd59169"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "digest"
|
|
187
|
+
version = "0.10.7"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"block-buffer",
|
|
192
|
+
"crypto-common",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "dyn-stack"
|
|
197
|
+
version = "0.11.0"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "bf6fa63092e3ca9f602f6500fddd05502412b748c4c4682938565b44eb9e0066"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"bytemuck",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "dyn-stack"
|
|
206
|
+
version = "0.13.2"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"bytemuck",
|
|
211
|
+
"dyn-stack-macros",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "dyn-stack-macros"
|
|
216
|
+
version = "0.1.3"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "either"
|
|
222
|
+
version = "1.16.0"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "enum-as-inner"
|
|
228
|
+
version = "0.6.1"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"heck",
|
|
233
|
+
"proc-macro2",
|
|
234
|
+
"quote",
|
|
235
|
+
"syn",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "equator"
|
|
240
|
+
version = "0.2.2"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"equator-macro 0.2.1",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "equator"
|
|
249
|
+
version = "0.4.2"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"equator-macro 0.4.2",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "equator-macro"
|
|
258
|
+
version = "0.2.1"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"proc-macro2",
|
|
263
|
+
"quote",
|
|
264
|
+
"syn",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "equator-macro"
|
|
269
|
+
version = "0.4.2"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"proc-macro2",
|
|
274
|
+
"quote",
|
|
275
|
+
"syn",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "faer"
|
|
280
|
+
version = "0.20.2"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "c2b19b8c3570ea226e507fe3dbae2aa9d7e0f16676abd35ea3adeeb9f90f7b5d"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"bytemuck",
|
|
285
|
+
"coe-rs",
|
|
286
|
+
"dbgf",
|
|
287
|
+
"dyn-stack 0.11.0",
|
|
288
|
+
"equator 0.4.2",
|
|
289
|
+
"faer-entity",
|
|
290
|
+
"gemm",
|
|
291
|
+
"generativity",
|
|
292
|
+
"libm",
|
|
293
|
+
"matrixcompare",
|
|
294
|
+
"matrixcompare-core",
|
|
295
|
+
"nano-gemm",
|
|
296
|
+
"npyz",
|
|
297
|
+
"num-complex",
|
|
298
|
+
"num-traits",
|
|
299
|
+
"paste",
|
|
300
|
+
"rand",
|
|
301
|
+
"rand_distr",
|
|
302
|
+
"rayon",
|
|
303
|
+
"reborrow",
|
|
304
|
+
"serde",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "faer-entity"
|
|
309
|
+
version = "0.20.1"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "072f96f1bc8b2b30dfc26c086baeadb63aae08019b1ed84721809b9fd2006685"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"bytemuck",
|
|
314
|
+
"coe-rs",
|
|
315
|
+
"libm",
|
|
316
|
+
"num-complex",
|
|
317
|
+
"num-traits",
|
|
318
|
+
"pulp 0.18.22",
|
|
319
|
+
"reborrow",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "gemm"
|
|
324
|
+
version = "0.18.2"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"dyn-stack 0.13.2",
|
|
329
|
+
"gemm-c32",
|
|
330
|
+
"gemm-c64",
|
|
331
|
+
"gemm-common",
|
|
332
|
+
"gemm-f16",
|
|
333
|
+
"gemm-f32",
|
|
334
|
+
"gemm-f64",
|
|
335
|
+
"num-complex",
|
|
336
|
+
"num-traits",
|
|
337
|
+
"paste",
|
|
338
|
+
"raw-cpuid",
|
|
339
|
+
"seq-macro",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "gemm-c32"
|
|
344
|
+
version = "0.18.2"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"dyn-stack 0.13.2",
|
|
349
|
+
"gemm-common",
|
|
350
|
+
"num-complex",
|
|
351
|
+
"num-traits",
|
|
352
|
+
"paste",
|
|
353
|
+
"raw-cpuid",
|
|
354
|
+
"seq-macro",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "gemm-c64"
|
|
359
|
+
version = "0.18.2"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"dyn-stack 0.13.2",
|
|
364
|
+
"gemm-common",
|
|
365
|
+
"num-complex",
|
|
366
|
+
"num-traits",
|
|
367
|
+
"paste",
|
|
368
|
+
"raw-cpuid",
|
|
369
|
+
"seq-macro",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "gemm-common"
|
|
374
|
+
version = "0.18.2"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"bytemuck",
|
|
379
|
+
"dyn-stack 0.13.2",
|
|
380
|
+
"half",
|
|
381
|
+
"libm",
|
|
382
|
+
"num-complex",
|
|
383
|
+
"num-traits",
|
|
384
|
+
"once_cell",
|
|
385
|
+
"paste",
|
|
386
|
+
"pulp 0.21.5",
|
|
387
|
+
"raw-cpuid",
|
|
388
|
+
"rayon",
|
|
389
|
+
"seq-macro",
|
|
390
|
+
"sysctl",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "gemm-f16"
|
|
395
|
+
version = "0.18.2"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"dyn-stack 0.13.2",
|
|
400
|
+
"gemm-common",
|
|
401
|
+
"gemm-f32",
|
|
402
|
+
"half",
|
|
403
|
+
"num-complex",
|
|
404
|
+
"num-traits",
|
|
405
|
+
"paste",
|
|
406
|
+
"raw-cpuid",
|
|
407
|
+
"rayon",
|
|
408
|
+
"seq-macro",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "gemm-f32"
|
|
413
|
+
version = "0.18.2"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"dyn-stack 0.13.2",
|
|
418
|
+
"gemm-common",
|
|
419
|
+
"num-complex",
|
|
420
|
+
"num-traits",
|
|
421
|
+
"paste",
|
|
422
|
+
"raw-cpuid",
|
|
423
|
+
"seq-macro",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "gemm-f64"
|
|
428
|
+
version = "0.18.2"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"dyn-stack 0.13.2",
|
|
433
|
+
"gemm-common",
|
|
434
|
+
"num-complex",
|
|
435
|
+
"num-traits",
|
|
436
|
+
"paste",
|
|
437
|
+
"raw-cpuid",
|
|
438
|
+
"seq-macro",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "generativity"
|
|
443
|
+
version = "1.2.1"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "d2c81fb5260e37854d09d5c87183309fd8c555b75289427884b25660bc87a85e"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "generic-array"
|
|
449
|
+
version = "0.14.7"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"typenum",
|
|
454
|
+
"version_check",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "getrandom"
|
|
459
|
+
version = "0.2.17"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"cfg-if",
|
|
464
|
+
"libc",
|
|
465
|
+
"wasi",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "glob"
|
|
470
|
+
version = "0.3.3"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "half"
|
|
476
|
+
version = "2.7.1"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"bytemuck",
|
|
481
|
+
"cfg-if",
|
|
482
|
+
"crunchy",
|
|
483
|
+
"num-traits",
|
|
484
|
+
"zerocopy",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "heck"
|
|
489
|
+
version = "0.5.0"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "itertools"
|
|
495
|
+
version = "0.13.0"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"either",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "lazy_static"
|
|
504
|
+
version = "1.5.0"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "libc"
|
|
510
|
+
version = "0.2.186"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "libloading"
|
|
516
|
+
version = "0.8.9"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"cfg-if",
|
|
521
|
+
"windows-link",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "libm"
|
|
526
|
+
version = "0.2.16"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "magnus"
|
|
532
|
+
version = "0.7.1"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"magnus-macros",
|
|
537
|
+
"rb-sys",
|
|
538
|
+
"rb-sys-env",
|
|
539
|
+
"seq-macro",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "magnus-macros"
|
|
544
|
+
version = "0.6.0"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"proc-macro2",
|
|
549
|
+
"quote",
|
|
550
|
+
"syn",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "matrixcompare"
|
|
555
|
+
version = "0.3.0"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "37832ba820e47c93d66b4360198dccb004b43c74abc3ac1ce1fed54e65a80445"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"matrixcompare-core",
|
|
560
|
+
"num-traits",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "matrixcompare-core"
|
|
565
|
+
version = "0.1.0"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "b0bdabb30db18805d5290b3da7ceaccbddba795620b86c02145d688e04900a73"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "matrixmultiply"
|
|
571
|
+
version = "0.3.10"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"autocfg",
|
|
576
|
+
"rawpointer",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "memchr"
|
|
581
|
+
version = "2.8.1"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "minimal-lexical"
|
|
587
|
+
version = "0.2.1"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "nalgebra"
|
|
593
|
+
version = "0.32.6"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"approx",
|
|
598
|
+
"matrixmultiply",
|
|
599
|
+
"nalgebra-macros",
|
|
600
|
+
"num-complex",
|
|
601
|
+
"num-rational",
|
|
602
|
+
"num-traits",
|
|
603
|
+
"rand",
|
|
604
|
+
"rand_distr",
|
|
605
|
+
"simba",
|
|
606
|
+
"typenum",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "nalgebra-macros"
|
|
611
|
+
version = "0.2.2"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"proc-macro2",
|
|
616
|
+
"quote",
|
|
617
|
+
"syn",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "nano-gemm"
|
|
622
|
+
version = "0.1.3"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "bb5ba2bea1c00e53de11f6ab5bd0761ba87dc0045d63b0c87ee471d2d3061376"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"equator 0.2.2",
|
|
627
|
+
"nano-gemm-c32",
|
|
628
|
+
"nano-gemm-c64",
|
|
629
|
+
"nano-gemm-codegen",
|
|
630
|
+
"nano-gemm-core",
|
|
631
|
+
"nano-gemm-f32",
|
|
632
|
+
"nano-gemm-f64",
|
|
633
|
+
"num-complex",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "nano-gemm-c32"
|
|
638
|
+
version = "0.1.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "a40449e57a5713464c3a1208c4c3301c8d29ee1344711822cf022bc91373a91b"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"nano-gemm-codegen",
|
|
643
|
+
"nano-gemm-core",
|
|
644
|
+
"num-complex",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "nano-gemm-c64"
|
|
649
|
+
version = "0.1.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "743a6e6211358fba85d1009616751e4107da86f4c95b24e684ce85f25c25b3bf"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"nano-gemm-codegen",
|
|
654
|
+
"nano-gemm-core",
|
|
655
|
+
"num-complex",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "nano-gemm-codegen"
|
|
660
|
+
version = "0.1.0"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "963bf7c7110d55430169dc74c67096375491ed580cd2ef84842550ac72e781fa"
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "nano-gemm-core"
|
|
666
|
+
version = "0.1.0"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "fe3fc4f83ae8861bad79dc3c016bd6b0220da5f9de302e07d3112d16efc24aa6"
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "nano-gemm-f32"
|
|
672
|
+
version = "0.1.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "4e3681b7ce35658f79da94b7f62c60a005e29c373c7111ed070e3bf64546a8bb"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"nano-gemm-codegen",
|
|
677
|
+
"nano-gemm-core",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "nano-gemm-f64"
|
|
682
|
+
version = "0.1.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "bc1e619ed04d801809e1f63e61b669d380c4119e8b0cdd6ed184c6b111f046d8"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"nano-gemm-codegen",
|
|
687
|
+
"nano-gemm-core",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "ndarray"
|
|
692
|
+
version = "0.17.2"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"cblas-sys",
|
|
697
|
+
"libc",
|
|
698
|
+
"matrixmultiply",
|
|
699
|
+
"num-complex",
|
|
700
|
+
"num-integer",
|
|
701
|
+
"num-traits",
|
|
702
|
+
"portable-atomic",
|
|
703
|
+
"portable-atomic-util",
|
|
704
|
+
"rawpointer",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "nom"
|
|
709
|
+
version = "7.1.3"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"memchr",
|
|
714
|
+
"minimal-lexical",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "npyz"
|
|
719
|
+
version = "0.8.4"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "9f0e759e014e630f90af745101b614f761306ddc541681e546649068e25ec1b9"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"byteorder",
|
|
724
|
+
"num-bigint",
|
|
725
|
+
"py_literal",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "num-bigint"
|
|
730
|
+
version = "0.4.6"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"num-integer",
|
|
735
|
+
"num-traits",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "num-complex"
|
|
740
|
+
version = "0.4.6"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"bytemuck",
|
|
745
|
+
"num-traits",
|
|
746
|
+
"rand",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "num-integer"
|
|
751
|
+
version = "0.1.46"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"num-traits",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "num-rational"
|
|
760
|
+
version = "0.4.2"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"num-integer",
|
|
765
|
+
"num-traits",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "num-traits"
|
|
770
|
+
version = "0.2.19"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"autocfg",
|
|
775
|
+
"libm",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "once_cell"
|
|
780
|
+
version = "1.21.4"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "ordered-float"
|
|
786
|
+
version = "4.6.0"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"num-traits",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "paste"
|
|
795
|
+
version = "1.0.15"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "pest"
|
|
801
|
+
version = "2.8.6"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"memchr",
|
|
806
|
+
"ucd-trie",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "pest_derive"
|
|
811
|
+
version = "2.8.6"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"pest",
|
|
816
|
+
"pest_generator",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "pest_generator"
|
|
821
|
+
version = "2.8.6"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"pest",
|
|
826
|
+
"pest_meta",
|
|
827
|
+
"proc-macro2",
|
|
828
|
+
"quote",
|
|
829
|
+
"syn",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "pest_meta"
|
|
834
|
+
version = "2.8.6"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"pest",
|
|
839
|
+
"sha2",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "portable-atomic"
|
|
844
|
+
version = "1.13.1"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "portable-atomic-util"
|
|
850
|
+
version = "0.2.7"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"portable-atomic",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "ppv-lite86"
|
|
859
|
+
version = "0.2.21"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"zerocopy",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "proc-macro2"
|
|
868
|
+
version = "1.0.106"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"unicode-ident",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "pulp"
|
|
877
|
+
version = "0.18.22"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "a0a01a0dc67cf4558d279f0c25b0962bd08fc6dec0137699eae304103e882fe6"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"bytemuck",
|
|
882
|
+
"libm",
|
|
883
|
+
"num-complex",
|
|
884
|
+
"reborrow",
|
|
885
|
+
]
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "pulp"
|
|
889
|
+
version = "0.21.5"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"bytemuck",
|
|
894
|
+
"cfg-if",
|
|
895
|
+
"libm",
|
|
896
|
+
"num-complex",
|
|
897
|
+
"reborrow",
|
|
898
|
+
"version_check",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "py_literal"
|
|
903
|
+
version = "0.4.0"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"num-bigint",
|
|
908
|
+
"num-complex",
|
|
909
|
+
"num-traits",
|
|
910
|
+
"pest",
|
|
911
|
+
"pest_derive",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "quote"
|
|
916
|
+
version = "1.0.45"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"proc-macro2",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "rand"
|
|
925
|
+
version = "0.8.6"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"libc",
|
|
930
|
+
"rand_chacha",
|
|
931
|
+
"rand_core",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "rand_chacha"
|
|
936
|
+
version = "0.3.1"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"ppv-lite86",
|
|
941
|
+
"rand_core",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "rand_core"
|
|
946
|
+
version = "0.6.4"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"getrandom",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "rand_distr"
|
|
955
|
+
version = "0.4.3"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"num-traits",
|
|
960
|
+
"rand",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "raw-cpuid"
|
|
965
|
+
version = "11.6.0"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"bitflags",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "rawpointer"
|
|
974
|
+
version = "0.2.1"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "rayon"
|
|
980
|
+
version = "1.12.0"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"either",
|
|
985
|
+
"rayon-core",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "rayon-core"
|
|
990
|
+
version = "1.13.0"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"crossbeam-deque",
|
|
995
|
+
"crossbeam-utils",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "rb-sys"
|
|
1000
|
+
version = "0.9.128"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"rb-sys-build",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "rb-sys-build"
|
|
1009
|
+
version = "0.9.128"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"bindgen",
|
|
1014
|
+
"lazy_static",
|
|
1015
|
+
"proc-macro2",
|
|
1016
|
+
"quote",
|
|
1017
|
+
"regex",
|
|
1018
|
+
"shell-words",
|
|
1019
|
+
"syn",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "rb-sys-env"
|
|
1024
|
+
version = "0.1.2"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "reborrow"
|
|
1030
|
+
version = "0.5.5"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "regex"
|
|
1036
|
+
version = "1.12.3"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"aho-corasick",
|
|
1041
|
+
"memchr",
|
|
1042
|
+
"regex-automata",
|
|
1043
|
+
"regex-syntax",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "regex-automata"
|
|
1048
|
+
version = "0.4.14"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"aho-corasick",
|
|
1053
|
+
"memchr",
|
|
1054
|
+
"regex-syntax",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "regex-syntax"
|
|
1059
|
+
version = "0.8.10"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "ruby_llm_turbovec"
|
|
1065
|
+
version = "0.1.0"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"magnus",
|
|
1068
|
+
"rb-sys",
|
|
1069
|
+
"turbovec",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "rustc-hash"
|
|
1074
|
+
version = "2.1.2"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "safe_arch"
|
|
1080
|
+
version = "0.7.4"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"bytemuck",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "same-file"
|
|
1089
|
+
version = "1.0.6"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"winapi-util",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "seq-macro"
|
|
1098
|
+
version = "0.3.6"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "serde"
|
|
1104
|
+
version = "1.0.228"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"serde_core",
|
|
1109
|
+
"serde_derive",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "serde_core"
|
|
1114
|
+
version = "1.0.228"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"serde_derive",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "serde_derive"
|
|
1123
|
+
version = "1.0.228"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"proc-macro2",
|
|
1128
|
+
"quote",
|
|
1129
|
+
"syn",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "sha2"
|
|
1134
|
+
version = "0.10.9"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"cfg-if",
|
|
1139
|
+
"cpufeatures",
|
|
1140
|
+
"digest",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "shell-words"
|
|
1145
|
+
version = "1.1.1"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "shlex"
|
|
1151
|
+
version = "1.3.0"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "simba"
|
|
1157
|
+
version = "0.8.1"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"approx",
|
|
1162
|
+
"num-complex",
|
|
1163
|
+
"num-traits",
|
|
1164
|
+
"paste",
|
|
1165
|
+
"wide",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "statrs"
|
|
1170
|
+
version = "0.17.1"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "f697a07e4606a0a25c044de247e583a330dbb1731d11bc7350b81f48ad567255"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"approx",
|
|
1175
|
+
"nalgebra",
|
|
1176
|
+
"num-traits",
|
|
1177
|
+
"rand",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "syn"
|
|
1182
|
+
version = "2.0.117"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"proc-macro2",
|
|
1187
|
+
"quote",
|
|
1188
|
+
"unicode-ident",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "sysctl"
|
|
1193
|
+
version = "0.6.0"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"bitflags",
|
|
1198
|
+
"byteorder",
|
|
1199
|
+
"enum-as-inner",
|
|
1200
|
+
"libc",
|
|
1201
|
+
"thiserror",
|
|
1202
|
+
"walkdir",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "thiserror"
|
|
1207
|
+
version = "1.0.69"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"thiserror-impl",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "thiserror-impl"
|
|
1216
|
+
version = "1.0.69"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"proc-macro2",
|
|
1221
|
+
"quote",
|
|
1222
|
+
"syn",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "turbovec"
|
|
1227
|
+
version = "0.8.0"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "499c587338ef613f0a19e633f6aa63fe42d7003c44886889b934841846c4d552"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"faer",
|
|
1232
|
+
"ndarray",
|
|
1233
|
+
"ordered-float",
|
|
1234
|
+
"rand",
|
|
1235
|
+
"rand_chacha",
|
|
1236
|
+
"rand_distr",
|
|
1237
|
+
"rayon",
|
|
1238
|
+
"statrs",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "typenum"
|
|
1243
|
+
version = "1.20.1"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "ucd-trie"
|
|
1249
|
+
version = "0.1.7"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "unicode-ident"
|
|
1255
|
+
version = "1.0.24"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "version_check"
|
|
1261
|
+
version = "0.9.5"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "walkdir"
|
|
1267
|
+
version = "2.5.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"same-file",
|
|
1272
|
+
"winapi-util",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "wasi"
|
|
1277
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "wide"
|
|
1283
|
+
version = "0.7.33"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"bytemuck",
|
|
1288
|
+
"safe_arch",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "winapi-util"
|
|
1293
|
+
version = "0.1.11"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"windows-sys",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "windows-link"
|
|
1302
|
+
version = "0.2.1"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "windows-sys"
|
|
1308
|
+
version = "0.61.2"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"windows-link",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "zerocopy"
|
|
1317
|
+
version = "0.8.50"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"zerocopy-derive",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "zerocopy-derive"
|
|
1326
|
+
version = "0.8.50"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"proc-macro2",
|
|
1331
|
+
"quote",
|
|
1332
|
+
"syn",
|
|
1333
|
+
]
|