red-candle 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Cargo.lock ADDED
@@ -0,0 +1,821 @@
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.0.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.1.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
19
+
20
+ [[package]]
21
+ name = "bindgen"
22
+ version = "0.66.1"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
25
+ dependencies = [
26
+ "bitflags 2.4.0",
27
+ "cexpr",
28
+ "clang-sys",
29
+ "lazy_static",
30
+ "lazycell",
31
+ "peeking_take_while",
32
+ "proc-macro2",
33
+ "quote",
34
+ "regex",
35
+ "rustc-hash",
36
+ "shlex",
37
+ "syn",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "bitflags"
42
+ version = "1.3.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
45
+
46
+ [[package]]
47
+ name = "bitflags"
48
+ version = "2.4.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
51
+
52
+ [[package]]
53
+ name = "bytemuck"
54
+ version = "1.14.0"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
57
+
58
+ [[package]]
59
+ name = "byteorder"
60
+ version = "1.4.3"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
63
+
64
+ [[package]]
65
+ name = "candle"
66
+ version = "0.1.0"
67
+ dependencies = [
68
+ "candle-core",
69
+ "candle-nn",
70
+ "half",
71
+ "magnus",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "candle-core"
76
+ version = "0.2.0"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "27bf6ecb02090cbc47aaecd6df7ec25b4a00b2b01076b77563dc7092fba64bc1"
79
+ dependencies = [
80
+ "byteorder",
81
+ "candle-gemm",
82
+ "half",
83
+ "memmap2",
84
+ "num-traits",
85
+ "num_cpus",
86
+ "rand",
87
+ "rand_distr",
88
+ "rayon",
89
+ "safetensors",
90
+ "thiserror",
91
+ "zip",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "candle-gemm"
96
+ version = "0.15.6"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "26b726a1f6cdd7ff080e95e3d91694701b1e04a58acd198e4a78c39428b2274e"
99
+ dependencies = [
100
+ "candle-gemm-c32",
101
+ "candle-gemm-c64",
102
+ "candle-gemm-common",
103
+ "candle-gemm-f16",
104
+ "candle-gemm-f32",
105
+ "candle-gemm-f64",
106
+ "dyn-stack",
107
+ "lazy_static",
108
+ "num-complex",
109
+ "num-traits",
110
+ "paste",
111
+ "raw-cpuid",
112
+ "rayon",
113
+ "seq-macro",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "candle-gemm-c32"
118
+ version = "0.15.6"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "661470663389f0c99fd8449e620bfae630a662739f830a323eda4dcf80888843"
121
+ dependencies = [
122
+ "candle-gemm-common",
123
+ "dyn-stack",
124
+ "lazy_static",
125
+ "num-complex",
126
+ "num-traits",
127
+ "paste",
128
+ "raw-cpuid",
129
+ "rayon",
130
+ "seq-macro",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "candle-gemm-c64"
135
+ version = "0.15.6"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "4a111ddf61db562854a6d2ff4dfe1e8a84066431b7bc68d3afae4bf60874fda0"
138
+ dependencies = [
139
+ "candle-gemm-common",
140
+ "dyn-stack",
141
+ "lazy_static",
142
+ "num-complex",
143
+ "num-traits",
144
+ "paste",
145
+ "raw-cpuid",
146
+ "rayon",
147
+ "seq-macro",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "candle-gemm-common"
152
+ version = "0.15.6"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "5a6dd93783ead7eeef14361667ea32014dc6f716a2fc956b075fe78729e10dd5"
155
+ dependencies = [
156
+ "dyn-stack",
157
+ "lazy_static",
158
+ "num-complex",
159
+ "num-traits",
160
+ "paste",
161
+ "raw-cpuid",
162
+ "rayon",
163
+ "seq-macro",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "candle-gemm-f16"
168
+ version = "0.15.6"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "b76499bf4b858cacc526c5c8f948bc7152774247dce8568f174b743ab1363fa4"
171
+ dependencies = [
172
+ "candle-gemm-common",
173
+ "candle-gemm-f32",
174
+ "dyn-stack",
175
+ "half",
176
+ "lazy_static",
177
+ "num-complex",
178
+ "num-traits",
179
+ "paste",
180
+ "raw-cpuid",
181
+ "rayon",
182
+ "seq-macro",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "candle-gemm-f32"
187
+ version = "0.15.6"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "7bec152e7d36339d3785e0d746d75ee94a4e92968fbb12ddcc91b536b938d016"
190
+ dependencies = [
191
+ "candle-gemm-common",
192
+ "dyn-stack",
193
+ "lazy_static",
194
+ "num-complex",
195
+ "num-traits",
196
+ "paste",
197
+ "raw-cpuid",
198
+ "rayon",
199
+ "seq-macro",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "candle-gemm-f64"
204
+ version = "0.15.6"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "00f59ac68a5521e2ff71431bb7f1b22126ff0b60c5e66599b1f4676433da6e69"
207
+ dependencies = [
208
+ "candle-gemm-common",
209
+ "dyn-stack",
210
+ "lazy_static",
211
+ "num-complex",
212
+ "num-traits",
213
+ "paste",
214
+ "raw-cpuid",
215
+ "rayon",
216
+ "seq-macro",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "candle-nn"
221
+ version = "0.2.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "4ac23e21d440c67867bb8ee4542ab76c83428daad73866632714b99072fcc59e"
224
+ dependencies = [
225
+ "candle-core",
226
+ "safetensors",
227
+ "thiserror",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "cexpr"
232
+ version = "0.6.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
235
+ dependencies = [
236
+ "nom",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "cfg-if"
241
+ version = "1.0.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
244
+
245
+ [[package]]
246
+ name = "clang-sys"
247
+ version = "1.6.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
250
+ dependencies = [
251
+ "glob",
252
+ "libc",
253
+ "libloading",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "crc32fast"
258
+ version = "1.3.2"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
261
+ dependencies = [
262
+ "cfg-if",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "crossbeam-channel"
267
+ version = "0.5.8"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
270
+ dependencies = [
271
+ "cfg-if",
272
+ "crossbeam-utils",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "crossbeam-deque"
277
+ version = "0.8.3"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
280
+ dependencies = [
281
+ "cfg-if",
282
+ "crossbeam-epoch",
283
+ "crossbeam-utils",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "crossbeam-epoch"
288
+ version = "0.9.15"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
291
+ dependencies = [
292
+ "autocfg",
293
+ "cfg-if",
294
+ "crossbeam-utils",
295
+ "memoffset",
296
+ "scopeguard",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "crossbeam-utils"
301
+ version = "0.8.16"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
304
+ dependencies = [
305
+ "cfg-if",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "crunchy"
310
+ version = "0.2.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
313
+
314
+ [[package]]
315
+ name = "dyn-stack"
316
+ version = "0.9.0"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "24269739c7c175bc12130622ef1a60b9ab2d5b30c0b9ce5110cd406d7fd497bc"
319
+ dependencies = [
320
+ "bytemuck",
321
+ "reborrow",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "either"
326
+ version = "1.9.0"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
329
+
330
+ [[package]]
331
+ name = "getrandom"
332
+ version = "0.2.10"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
335
+ dependencies = [
336
+ "cfg-if",
337
+ "libc",
338
+ "wasi",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "glob"
343
+ version = "0.3.1"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
346
+
347
+ [[package]]
348
+ name = "half"
349
+ version = "2.3.1"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872"
352
+ dependencies = [
353
+ "cfg-if",
354
+ "crunchy",
355
+ "num-traits",
356
+ "rand",
357
+ "rand_distr",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "hermit-abi"
362
+ version = "0.3.2"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
365
+
366
+ [[package]]
367
+ name = "itoa"
368
+ version = "1.0.9"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
371
+
372
+ [[package]]
373
+ name = "lazy_static"
374
+ version = "1.4.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
377
+
378
+ [[package]]
379
+ name = "lazycell"
380
+ version = "1.3.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
383
+
384
+ [[package]]
385
+ name = "libc"
386
+ version = "0.2.147"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
389
+
390
+ [[package]]
391
+ name = "libloading"
392
+ version = "0.7.4"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
395
+ dependencies = [
396
+ "cfg-if",
397
+ "winapi",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "libm"
402
+ version = "0.2.7"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
405
+
406
+ [[package]]
407
+ name = "magnus"
408
+ version = "0.6.1"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "0516897a45f8ce8270a8910bcb94cd83538b19b6ae3a0c281a765df170b64695"
411
+ dependencies = [
412
+ "magnus-macros",
413
+ "rb-sys",
414
+ "rb-sys-env",
415
+ "seq-macro",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "magnus-macros"
420
+ version = "0.6.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
423
+ dependencies = [
424
+ "proc-macro2",
425
+ "quote",
426
+ "syn",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "memchr"
431
+ version = "2.6.3"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
434
+
435
+ [[package]]
436
+ name = "memmap2"
437
+ version = "0.7.1"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
440
+ dependencies = [
441
+ "libc",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "memoffset"
446
+ version = "0.9.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
449
+ dependencies = [
450
+ "autocfg",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "minimal-lexical"
455
+ version = "0.2.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
458
+
459
+ [[package]]
460
+ name = "nom"
461
+ version = "7.1.3"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
464
+ dependencies = [
465
+ "memchr",
466
+ "minimal-lexical",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "num-complex"
471
+ version = "0.4.4"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
474
+ dependencies = [
475
+ "num-traits",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "num-traits"
480
+ version = "0.2.16"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
483
+ dependencies = [
484
+ "autocfg",
485
+ "libm",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "num_cpus"
490
+ version = "1.16.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
493
+ dependencies = [
494
+ "hermit-abi",
495
+ "libc",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "paste"
500
+ version = "1.0.14"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
503
+
504
+ [[package]]
505
+ name = "peeking_take_while"
506
+ version = "0.1.2"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
509
+
510
+ [[package]]
511
+ name = "ppv-lite86"
512
+ version = "0.2.17"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
515
+
516
+ [[package]]
517
+ name = "proc-macro2"
518
+ version = "1.0.66"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
521
+ dependencies = [
522
+ "unicode-ident",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "quote"
527
+ version = "1.0.33"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
530
+ dependencies = [
531
+ "proc-macro2",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "rand"
536
+ version = "0.8.5"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
539
+ dependencies = [
540
+ "libc",
541
+ "rand_chacha",
542
+ "rand_core",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "rand_chacha"
547
+ version = "0.3.1"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
550
+ dependencies = [
551
+ "ppv-lite86",
552
+ "rand_core",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "rand_core"
557
+ version = "0.6.4"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
560
+ dependencies = [
561
+ "getrandom",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "rand_distr"
566
+ version = "0.4.3"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
569
+ dependencies = [
570
+ "num-traits",
571
+ "rand",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "raw-cpuid"
576
+ version = "10.7.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
579
+ dependencies = [
580
+ "bitflags 1.3.2",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "rayon"
585
+ version = "1.7.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
588
+ dependencies = [
589
+ "either",
590
+ "rayon-core",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "rayon-core"
595
+ version = "1.11.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
598
+ dependencies = [
599
+ "crossbeam-channel",
600
+ "crossbeam-deque",
601
+ "crossbeam-utils",
602
+ "num_cpus",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "rb-sys"
607
+ version = "0.9.81"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "a57240b308b155b09dce81e32829966a99f52d1088b45957e4283e526c5317a1"
610
+ dependencies = [
611
+ "rb-sys-build",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "rb-sys-build"
616
+ version = "0.9.81"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "f24ce877a4c5d07f06f6aa6fec3ac95e4b357b9f73b0f5445d8cbb7266d410e8"
619
+ dependencies = [
620
+ "bindgen",
621
+ "lazy_static",
622
+ "proc-macro2",
623
+ "quote",
624
+ "regex",
625
+ "shell-words",
626
+ "syn",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "rb-sys-env"
631
+ version = "0.1.2"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
634
+
635
+ [[package]]
636
+ name = "reborrow"
637
+ version = "0.5.4"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "2962bf2e1f971c53ef59b2d7ca51d6a5e5c4a9d2be47eb1f661a321a4da85888"
640
+
641
+ [[package]]
642
+ name = "regex"
643
+ version = "1.9.5"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
646
+ dependencies = [
647
+ "aho-corasick",
648
+ "memchr",
649
+ "regex-automata",
650
+ "regex-syntax",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "regex-automata"
655
+ version = "0.3.8"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
658
+ dependencies = [
659
+ "aho-corasick",
660
+ "memchr",
661
+ "regex-syntax",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "regex-syntax"
666
+ version = "0.7.5"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
669
+
670
+ [[package]]
671
+ name = "rustc-hash"
672
+ version = "1.1.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
675
+
676
+ [[package]]
677
+ name = "ryu"
678
+ version = "1.0.15"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
681
+
682
+ [[package]]
683
+ name = "safetensors"
684
+ version = "0.3.3"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df"
687
+ dependencies = [
688
+ "serde",
689
+ "serde_json",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "scopeguard"
694
+ version = "1.2.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
697
+
698
+ [[package]]
699
+ name = "seq-macro"
700
+ version = "0.3.5"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
703
+
704
+ [[package]]
705
+ name = "serde"
706
+ version = "1.0.188"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
709
+ dependencies = [
710
+ "serde_derive",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "serde_derive"
715
+ version = "1.0.188"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
718
+ dependencies = [
719
+ "proc-macro2",
720
+ "quote",
721
+ "syn",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "serde_json"
726
+ version = "1.0.105"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
729
+ dependencies = [
730
+ "itoa",
731
+ "ryu",
732
+ "serde",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "shell-words"
737
+ version = "1.1.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
740
+
741
+ [[package]]
742
+ name = "shlex"
743
+ version = "1.2.0"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
746
+
747
+ [[package]]
748
+ name = "syn"
749
+ version = "2.0.31"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398"
752
+ dependencies = [
753
+ "proc-macro2",
754
+ "quote",
755
+ "unicode-ident",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "thiserror"
760
+ version = "1.0.48"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
763
+ dependencies = [
764
+ "thiserror-impl",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "thiserror-impl"
769
+ version = "1.0.48"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
772
+ dependencies = [
773
+ "proc-macro2",
774
+ "quote",
775
+ "syn",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "unicode-ident"
780
+ version = "1.0.11"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
783
+
784
+ [[package]]
785
+ name = "wasi"
786
+ version = "0.11.0+wasi-snapshot-preview1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
789
+
790
+ [[package]]
791
+ name = "winapi"
792
+ version = "0.3.9"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
795
+ dependencies = [
796
+ "winapi-i686-pc-windows-gnu",
797
+ "winapi-x86_64-pc-windows-gnu",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "winapi-i686-pc-windows-gnu"
802
+ version = "0.4.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
805
+
806
+ [[package]]
807
+ name = "winapi-x86_64-pc-windows-gnu"
808
+ version = "0.4.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
811
+
812
+ [[package]]
813
+ name = "zip"
814
+ version = "0.6.6"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
817
+ dependencies = [
818
+ "byteorder",
819
+ "crc32fast",
820
+ "crossbeam-utils",
821
+ ]