icarus112 commited on
Commit
fa68fe0
·
verified ·
1 Parent(s): 1c59946

Upload overlay/htm_rust/Cargo.lock with huggingface_hub

Browse files
Files changed (1) hide show
  1. overlay/htm_rust/Cargo.lock +383 -0
overlay/htm_rust/Cargo.lock ADDED
@@ -0,0 +1,383 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "autocfg"
7
+ version = "1.5.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
10
+
11
+ [[package]]
12
+ name = "cfg-if"
13
+ version = "1.0.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
16
+
17
+ [[package]]
18
+ name = "cudarc"
19
+ version = "0.12.1"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "38cd60a9a42ec83a2ed7effb0b1f073270264ea99da7acfc44f7e8d74dee0384"
22
+ dependencies = [
23
+ "libloading",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "getrandom"
28
+ version = "0.2.17"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
31
+ dependencies = [
32
+ "cfg-if",
33
+ "libc",
34
+ "wasi",
35
+ ]
36
+
37
+ [[package]]
38
+ name = "heck"
39
+ version = "0.5.0"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
42
+
43
+ [[package]]
44
+ name = "htm_rust"
45
+ version = "0.1.0"
46
+ dependencies = [
47
+ "cudarc",
48
+ "ndarray",
49
+ "numpy",
50
+ "pyo3",
51
+ "rand",
52
+ "rand_xoshiro",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "indoc"
57
+ version = "2.0.7"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
60
+ dependencies = [
61
+ "rustversion",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "libc"
66
+ version = "0.2.185"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
69
+
70
+ [[package]]
71
+ name = "libloading"
72
+ version = "0.8.9"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
75
+ dependencies = [
76
+ "cfg-if",
77
+ "windows-link",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "matrixmultiply"
82
+ version = "0.3.10"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
85
+ dependencies = [
86
+ "autocfg",
87
+ "rawpointer",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "memoffset"
92
+ version = "0.9.1"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
95
+ dependencies = [
96
+ "autocfg",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "ndarray"
101
+ version = "0.16.1"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
104
+ dependencies = [
105
+ "matrixmultiply",
106
+ "num-complex",
107
+ "num-integer",
108
+ "num-traits",
109
+ "portable-atomic",
110
+ "portable-atomic-util",
111
+ "rawpointer",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "num-complex"
116
+ version = "0.4.6"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
119
+ dependencies = [
120
+ "num-traits",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "num-integer"
125
+ version = "0.1.46"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
128
+ dependencies = [
129
+ "num-traits",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "num-traits"
134
+ version = "0.2.19"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
137
+ dependencies = [
138
+ "autocfg",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "numpy"
143
+ version = "0.22.1"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "edb929bc0da91a4d85ed6c0a84deaa53d411abfb387fc271124f91bf6b89f14e"
146
+ dependencies = [
147
+ "libc",
148
+ "ndarray",
149
+ "num-complex",
150
+ "num-integer",
151
+ "num-traits",
152
+ "pyo3",
153
+ "rustc-hash",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "once_cell"
158
+ version = "1.21.4"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
161
+
162
+ [[package]]
163
+ name = "portable-atomic"
164
+ version = "1.13.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
167
+
168
+ [[package]]
169
+ name = "portable-atomic-util"
170
+ version = "0.2.6"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
173
+ dependencies = [
174
+ "portable-atomic",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "ppv-lite86"
179
+ version = "0.2.21"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
182
+ dependencies = [
183
+ "zerocopy",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "proc-macro2"
188
+ version = "1.0.106"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
191
+ dependencies = [
192
+ "unicode-ident",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "pyo3"
197
+ version = "0.22.6"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
200
+ dependencies = [
201
+ "cfg-if",
202
+ "indoc",
203
+ "libc",
204
+ "memoffset",
205
+ "once_cell",
206
+ "portable-atomic",
207
+ "pyo3-build-config",
208
+ "pyo3-ffi",
209
+ "pyo3-macros",
210
+ "unindent",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "pyo3-build-config"
215
+ version = "0.22.6"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
218
+ dependencies = [
219
+ "once_cell",
220
+ "target-lexicon",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "pyo3-ffi"
225
+ version = "0.22.6"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
228
+ dependencies = [
229
+ "libc",
230
+ "pyo3-build-config",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "pyo3-macros"
235
+ version = "0.22.6"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
238
+ dependencies = [
239
+ "proc-macro2",
240
+ "pyo3-macros-backend",
241
+ "quote",
242
+ "syn",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "pyo3-macros-backend"
247
+ version = "0.22.6"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
250
+ dependencies = [
251
+ "heck",
252
+ "proc-macro2",
253
+ "pyo3-build-config",
254
+ "quote",
255
+ "syn",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "quote"
260
+ version = "1.0.45"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
263
+ dependencies = [
264
+ "proc-macro2",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "rand"
269
+ version = "0.8.5"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
272
+ dependencies = [
273
+ "libc",
274
+ "rand_chacha",
275
+ "rand_core",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "rand_chacha"
280
+ version = "0.3.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
283
+ dependencies = [
284
+ "ppv-lite86",
285
+ "rand_core",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "rand_core"
290
+ version = "0.6.4"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
293
+ dependencies = [
294
+ "getrandom",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "rand_xoshiro"
299
+ version = "0.6.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
302
+ dependencies = [
303
+ "rand_core",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "rawpointer"
308
+ version = "0.2.1"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
311
+
312
+ [[package]]
313
+ name = "rustc-hash"
314
+ version = "1.1.0"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
317
+
318
+ [[package]]
319
+ name = "rustversion"
320
+ version = "1.0.22"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
323
+
324
+ [[package]]
325
+ name = "syn"
326
+ version = "2.0.117"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
329
+ dependencies = [
330
+ "proc-macro2",
331
+ "quote",
332
+ "unicode-ident",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "target-lexicon"
337
+ version = "0.12.16"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
340
+
341
+ [[package]]
342
+ name = "unicode-ident"
343
+ version = "1.0.24"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
346
+
347
+ [[package]]
348
+ name = "unindent"
349
+ version = "0.2.4"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
352
+
353
+ [[package]]
354
+ name = "wasi"
355
+ version = "0.11.1+wasi-snapshot-preview1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
358
+
359
+ [[package]]
360
+ name = "windows-link"
361
+ version = "0.2.1"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
364
+
365
+ [[package]]
366
+ name = "zerocopy"
367
+ version = "0.8.48"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
370
+ dependencies = [
371
+ "zerocopy-derive",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "zerocopy-derive"
376
+ version = "0.8.48"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
379
+ dependencies = [
380
+ "proc-macro2",
381
+ "quote",
382
+ "syn",
383
+ ]