rustscenic 0.4.0__tar.gz
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.
- rustscenic-0.4.0/Cargo.lock +1116 -0
- rustscenic-0.4.0/Cargo.toml +26 -0
- rustscenic-0.4.0/LICENSE +21 -0
- rustscenic-0.4.0/PKG-INFO +262 -0
- rustscenic-0.4.0/README.md +201 -0
- rustscenic-0.4.0/crates/rustscenic-aucell/Cargo.toml +15 -0
- rustscenic-0.4.0/crates/rustscenic-aucell/src/lib.rs +184 -0
- rustscenic-0.4.0/crates/rustscenic-grn/Cargo.toml +18 -0
- rustscenic-0.4.0/crates/rustscenic-grn/src/gbm.rs +266 -0
- rustscenic-0.4.0/crates/rustscenic-grn/src/histogram.rs +227 -0
- rustscenic-0.4.0/crates/rustscenic-grn/src/lib.rs +195 -0
- rustscenic-0.4.0/crates/rustscenic-grn/src/rng.rs +135 -0
- rustscenic-0.4.0/crates/rustscenic-grn/src/tree.rs +442 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/Cargo.toml +15 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/src/fragments.rs +262 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/src/lib.rs +29 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/src/matrix.rs +238 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/src/peak_calling.rs +451 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/src/peaks.rs +303 -0
- rustscenic-0.4.0/crates/rustscenic-preproc/src/qc.rs +470 -0
- rustscenic-0.4.0/crates/rustscenic-py/Cargo.toml +22 -0
- rustscenic-0.4.0/crates/rustscenic-py/src/lib.rs +568 -0
- rustscenic-0.4.0/crates/rustscenic-topics/Cargo.toml +16 -0
- rustscenic-0.4.0/crates/rustscenic-topics/src/gibbs.rs +691 -0
- rustscenic-0.4.0/crates/rustscenic-topics/src/lib.rs +500 -0
- rustscenic-0.4.0/pyproject.toml +97 -0
- rustscenic-0.4.0/python/rustscenic/__init__.py +13 -0
- rustscenic-0.4.0/python/rustscenic/_gene_resolution.py +375 -0
- rustscenic-0.4.0/python/rustscenic/_rustscenic.pyi +127 -0
- rustscenic-0.4.0/python/rustscenic/aucell.py +251 -0
- rustscenic-0.4.0/python/rustscenic/cistarget.py +167 -0
- rustscenic-0.4.0/python/rustscenic/cli.py +328 -0
- rustscenic-0.4.0/python/rustscenic/data/__init__.py +358 -0
- rustscenic-0.4.0/python/rustscenic/data/allTFs_hg38.txt +1839 -0
- rustscenic-0.4.0/python/rustscenic/data/allTFs_mm.txt +1721 -0
- rustscenic-0.4.0/python/rustscenic/enhancer.py +479 -0
- rustscenic-0.4.0/python/rustscenic/eregulon.py +325 -0
- rustscenic-0.4.0/python/rustscenic/grn.py +252 -0
- rustscenic-0.4.0/python/rustscenic/pipeline.py +744 -0
- rustscenic-0.4.0/python/rustscenic/preproc.py +312 -0
- rustscenic-0.4.0/python/rustscenic/py.typed +0 -0
- rustscenic-0.4.0/python/rustscenic/quickstart.py +97 -0
- rustscenic-0.4.0/python/rustscenic/specificity.py +140 -0
- rustscenic-0.4.0/python/rustscenic/topics.py +307 -0
|
@@ -0,0 +1,1116 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "alga"
|
|
13
|
+
version = "0.9.3"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"approx 0.3.2",
|
|
18
|
+
"num-complex 0.2.4",
|
|
19
|
+
"num-traits",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "anyhow"
|
|
24
|
+
version = "1.0.102"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "approx"
|
|
30
|
+
version = "0.3.2"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
|
|
33
|
+
dependencies = [
|
|
34
|
+
"num-traits",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "approx"
|
|
39
|
+
version = "0.5.1"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
42
|
+
dependencies = [
|
|
43
|
+
"num-traits",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "autocfg"
|
|
48
|
+
version = "1.5.0"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "bitflags"
|
|
54
|
+
version = "2.11.1"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "bytemuck"
|
|
60
|
+
version = "1.25.0"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "cfg-if"
|
|
66
|
+
version = "1.0.4"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "crc32fast"
|
|
72
|
+
version = "1.5.0"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"cfg-if",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "crossbeam-deque"
|
|
81
|
+
version = "0.8.6"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"crossbeam-epoch",
|
|
86
|
+
"crossbeam-utils",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "crossbeam-epoch"
|
|
91
|
+
version = "0.9.18"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"crossbeam-utils",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "crossbeam-utils"
|
|
100
|
+
version = "0.8.21"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "either"
|
|
106
|
+
version = "1.15.0"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "equivalent"
|
|
112
|
+
version = "1.0.2"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "errno"
|
|
118
|
+
version = "0.3.14"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"libc",
|
|
123
|
+
"windows-sys",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "fastrand"
|
|
128
|
+
version = "2.4.1"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "flate2"
|
|
134
|
+
version = "1.1.9"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"crc32fast",
|
|
139
|
+
"miniz_oxide",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "foldhash"
|
|
144
|
+
version = "0.1.5"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "getrandom"
|
|
150
|
+
version = "0.2.17"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"cfg-if",
|
|
155
|
+
"libc",
|
|
156
|
+
"wasi",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "getrandom"
|
|
161
|
+
version = "0.4.2"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"cfg-if",
|
|
166
|
+
"libc",
|
|
167
|
+
"r-efi",
|
|
168
|
+
"wasip2",
|
|
169
|
+
"wasip3",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "hashbrown"
|
|
174
|
+
version = "0.15.5"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"foldhash",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "hashbrown"
|
|
183
|
+
version = "0.17.0"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "heck"
|
|
189
|
+
version = "0.5.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "hermit-abi"
|
|
195
|
+
version = "0.5.2"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "id-arena"
|
|
201
|
+
version = "2.3.0"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "indexmap"
|
|
207
|
+
version = "2.14.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"equivalent",
|
|
212
|
+
"hashbrown 0.17.0",
|
|
213
|
+
"serde",
|
|
214
|
+
"serde_core",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "indoc"
|
|
219
|
+
version = "2.0.7"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"rustversion",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "itoa"
|
|
228
|
+
version = "1.0.18"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "leb128fmt"
|
|
234
|
+
version = "0.1.0"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "libc"
|
|
240
|
+
version = "0.2.185"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "libm"
|
|
246
|
+
version = "0.2.16"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "linux-raw-sys"
|
|
252
|
+
version = "0.12.1"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "log"
|
|
258
|
+
version = "0.4.29"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "matrixmultiply"
|
|
264
|
+
version = "0.3.10"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"autocfg",
|
|
269
|
+
"rawpointer",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "memchr"
|
|
274
|
+
version = "2.8.0"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "memoffset"
|
|
280
|
+
version = "0.9.1"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"autocfg",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "miniz_oxide"
|
|
289
|
+
version = "0.8.9"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"adler2",
|
|
294
|
+
"simd-adler32",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "nalgebra"
|
|
299
|
+
version = "0.32.6"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"approx 0.5.1",
|
|
304
|
+
"matrixmultiply",
|
|
305
|
+
"nalgebra-macros",
|
|
306
|
+
"num-complex 0.4.6",
|
|
307
|
+
"num-rational",
|
|
308
|
+
"num-traits",
|
|
309
|
+
"rand",
|
|
310
|
+
"rand_distr",
|
|
311
|
+
"simba",
|
|
312
|
+
"typenum",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "nalgebra-macros"
|
|
317
|
+
version = "0.2.2"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"proc-macro2",
|
|
322
|
+
"quote",
|
|
323
|
+
"syn",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "ndarray"
|
|
328
|
+
version = "0.16.1"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"matrixmultiply",
|
|
333
|
+
"num-complex 0.4.6",
|
|
334
|
+
"num-integer",
|
|
335
|
+
"num-traits",
|
|
336
|
+
"portable-atomic",
|
|
337
|
+
"portable-atomic-util",
|
|
338
|
+
"rawpointer",
|
|
339
|
+
"rayon",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "ndarray"
|
|
344
|
+
version = "0.17.2"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"matrixmultiply",
|
|
349
|
+
"num-complex 0.4.6",
|
|
350
|
+
"num-integer",
|
|
351
|
+
"num-traits",
|
|
352
|
+
"portable-atomic",
|
|
353
|
+
"portable-atomic-util",
|
|
354
|
+
"rawpointer",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "num-complex"
|
|
359
|
+
version = "0.2.4"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"autocfg",
|
|
364
|
+
"num-traits",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "num-complex"
|
|
369
|
+
version = "0.4.6"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"num-traits",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "num-integer"
|
|
378
|
+
version = "0.1.46"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"num-traits",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "num-rational"
|
|
387
|
+
version = "0.4.2"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"num-integer",
|
|
392
|
+
"num-traits",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "num-traits"
|
|
397
|
+
version = "0.2.19"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"autocfg",
|
|
402
|
+
"libm",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "num_cpus"
|
|
407
|
+
version = "1.17.0"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"hermit-abi",
|
|
412
|
+
"libc",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "numpy"
|
|
417
|
+
version = "0.24.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"libc",
|
|
422
|
+
"ndarray 0.16.1",
|
|
423
|
+
"num-complex 0.4.6",
|
|
424
|
+
"num-integer",
|
|
425
|
+
"num-traits",
|
|
426
|
+
"pyo3",
|
|
427
|
+
"pyo3-build-config",
|
|
428
|
+
"rustc-hash",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "once_cell"
|
|
433
|
+
version = "1.21.4"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "paste"
|
|
439
|
+
version = "1.0.15"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "portable-atomic"
|
|
445
|
+
version = "1.13.1"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "portable-atomic-util"
|
|
451
|
+
version = "0.2.7"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"portable-atomic",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "ppv-lite86"
|
|
460
|
+
version = "0.2.21"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"zerocopy",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "prettyplease"
|
|
469
|
+
version = "0.2.37"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"proc-macro2",
|
|
474
|
+
"syn",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "proc-macro2"
|
|
479
|
+
version = "1.0.106"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"unicode-ident",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "pyo3"
|
|
488
|
+
version = "0.24.2"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"cfg-if",
|
|
493
|
+
"indoc",
|
|
494
|
+
"libc",
|
|
495
|
+
"memoffset",
|
|
496
|
+
"once_cell",
|
|
497
|
+
"portable-atomic",
|
|
498
|
+
"pyo3-build-config",
|
|
499
|
+
"pyo3-ffi",
|
|
500
|
+
"pyo3-macros",
|
|
501
|
+
"unindent",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "pyo3-build-config"
|
|
506
|
+
version = "0.24.2"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"once_cell",
|
|
511
|
+
"target-lexicon",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "pyo3-ffi"
|
|
516
|
+
version = "0.24.2"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"libc",
|
|
521
|
+
"pyo3-build-config",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "pyo3-macros"
|
|
526
|
+
version = "0.24.2"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"proc-macro2",
|
|
531
|
+
"pyo3-macros-backend",
|
|
532
|
+
"quote",
|
|
533
|
+
"syn",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "pyo3-macros-backend"
|
|
538
|
+
version = "0.24.2"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"heck",
|
|
543
|
+
"proc-macro2",
|
|
544
|
+
"pyo3-build-config",
|
|
545
|
+
"quote",
|
|
546
|
+
"syn",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "quote"
|
|
551
|
+
version = "1.0.45"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"proc-macro2",
|
|
556
|
+
]
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "r-efi"
|
|
560
|
+
version = "6.0.0"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "rand"
|
|
566
|
+
version = "0.8.6"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"libc",
|
|
571
|
+
"rand_chacha",
|
|
572
|
+
"rand_core 0.6.4",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "rand_chacha"
|
|
577
|
+
version = "0.3.1"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"ppv-lite86",
|
|
582
|
+
"rand_core 0.6.4",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "rand_core"
|
|
587
|
+
version = "0.6.4"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"getrandom 0.2.17",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "rand_core"
|
|
596
|
+
version = "0.10.1"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "rand_distr"
|
|
602
|
+
version = "0.4.3"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"num-traits",
|
|
607
|
+
"rand",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "rand_mt"
|
|
612
|
+
version = "6.0.3"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "f4f926523c30345680eb6641f4256a151f0826c5605e190177541f9e40a32390"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"rand_core 0.10.1",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "rawpointer"
|
|
621
|
+
version = "0.2.1"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "rayon"
|
|
627
|
+
version = "1.12.0"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"either",
|
|
632
|
+
"rayon-core",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "rayon-core"
|
|
637
|
+
version = "1.13.0"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"crossbeam-deque",
|
|
642
|
+
"crossbeam-utils",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "rustc-hash"
|
|
647
|
+
version = "2.1.2"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "rustix"
|
|
653
|
+
version = "1.1.4"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"bitflags",
|
|
658
|
+
"errno",
|
|
659
|
+
"libc",
|
|
660
|
+
"linux-raw-sys",
|
|
661
|
+
"windows-sys",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "rustscenic-aucell"
|
|
666
|
+
version = "0.4.0"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"anyhow",
|
|
669
|
+
"approx 0.5.1",
|
|
670
|
+
"ndarray 0.16.1",
|
|
671
|
+
"rayon",
|
|
672
|
+
"thiserror",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "rustscenic-grn"
|
|
677
|
+
version = "0.4.0"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"anyhow",
|
|
680
|
+
"approx 0.5.1",
|
|
681
|
+
"ndarray 0.16.1",
|
|
682
|
+
"rand",
|
|
683
|
+
"rand_mt",
|
|
684
|
+
"rayon",
|
|
685
|
+
"sprs",
|
|
686
|
+
"thiserror",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "rustscenic-preproc"
|
|
691
|
+
version = "0.4.0"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"anyhow",
|
|
694
|
+
"flate2",
|
|
695
|
+
"rayon",
|
|
696
|
+
"tempfile",
|
|
697
|
+
"thiserror",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "rustscenic-py"
|
|
702
|
+
version = "0.4.0"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"anyhow",
|
|
705
|
+
"ndarray 0.16.1",
|
|
706
|
+
"numpy",
|
|
707
|
+
"pyo3",
|
|
708
|
+
"rustscenic-aucell",
|
|
709
|
+
"rustscenic-grn",
|
|
710
|
+
"rustscenic-preproc",
|
|
711
|
+
"rustscenic-topics",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "rustscenic-topics"
|
|
716
|
+
version = "0.4.0"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"approx 0.5.1",
|
|
719
|
+
"ndarray 0.16.1",
|
|
720
|
+
"rand",
|
|
721
|
+
"rayon",
|
|
722
|
+
"statrs",
|
|
723
|
+
"thiserror",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "rustversion"
|
|
728
|
+
version = "1.0.22"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "safe_arch"
|
|
734
|
+
version = "0.7.4"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"bytemuck",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "semver"
|
|
743
|
+
version = "1.0.28"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "serde"
|
|
749
|
+
version = "1.0.228"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"serde_core",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "serde_core"
|
|
758
|
+
version = "1.0.228"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"serde_derive",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "serde_derive"
|
|
767
|
+
version = "1.0.228"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"proc-macro2",
|
|
772
|
+
"quote",
|
|
773
|
+
"syn",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "serde_json"
|
|
778
|
+
version = "1.0.149"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"itoa",
|
|
783
|
+
"memchr",
|
|
784
|
+
"serde",
|
|
785
|
+
"serde_core",
|
|
786
|
+
"zmij",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "simba"
|
|
791
|
+
version = "0.8.1"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"approx 0.5.1",
|
|
796
|
+
"num-complex 0.4.6",
|
|
797
|
+
"num-traits",
|
|
798
|
+
"paste",
|
|
799
|
+
"wide",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "simd-adler32"
|
|
804
|
+
version = "0.3.9"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "smallvec"
|
|
810
|
+
version = "1.15.1"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "sprs"
|
|
816
|
+
version = "0.11.4"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "6dca58a33be2188d4edc71534f8bafa826e787cc28ca1c47f31be3423f0d6e55"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"alga",
|
|
821
|
+
"ndarray 0.17.2",
|
|
822
|
+
"num-complex 0.4.6",
|
|
823
|
+
"num-traits",
|
|
824
|
+
"num_cpus",
|
|
825
|
+
"rayon",
|
|
826
|
+
"smallvec",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "statrs"
|
|
831
|
+
version = "0.17.1"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "f697a07e4606a0a25c044de247e583a330dbb1731d11bc7350b81f48ad567255"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"approx 0.5.1",
|
|
836
|
+
"nalgebra",
|
|
837
|
+
"num-traits",
|
|
838
|
+
"rand",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "syn"
|
|
843
|
+
version = "2.0.117"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"proc-macro2",
|
|
848
|
+
"quote",
|
|
849
|
+
"unicode-ident",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "target-lexicon"
|
|
854
|
+
version = "0.13.5"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "tempfile"
|
|
860
|
+
version = "3.27.0"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"fastrand",
|
|
865
|
+
"getrandom 0.4.2",
|
|
866
|
+
"once_cell",
|
|
867
|
+
"rustix",
|
|
868
|
+
"windows-sys",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "thiserror"
|
|
873
|
+
version = "2.0.18"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"thiserror-impl",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "thiserror-impl"
|
|
882
|
+
version = "2.0.18"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"proc-macro2",
|
|
887
|
+
"quote",
|
|
888
|
+
"syn",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "typenum"
|
|
893
|
+
version = "1.19.0"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "unicode-ident"
|
|
899
|
+
version = "1.0.24"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "unicode-xid"
|
|
905
|
+
version = "0.2.6"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "unindent"
|
|
911
|
+
version = "0.2.4"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "wasi"
|
|
917
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "wasip2"
|
|
923
|
+
version = "1.0.3+wasi-0.2.9"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"wit-bindgen 0.57.1",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "wasip3"
|
|
932
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"wit-bindgen 0.51.0",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "wasm-encoder"
|
|
941
|
+
version = "0.244.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"leb128fmt",
|
|
946
|
+
"wasmparser",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "wasm-metadata"
|
|
951
|
+
version = "0.244.0"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"anyhow",
|
|
956
|
+
"indexmap",
|
|
957
|
+
"wasm-encoder",
|
|
958
|
+
"wasmparser",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "wasmparser"
|
|
963
|
+
version = "0.244.0"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"bitflags",
|
|
968
|
+
"hashbrown 0.15.5",
|
|
969
|
+
"indexmap",
|
|
970
|
+
"semver",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "wide"
|
|
975
|
+
version = "0.7.33"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"bytemuck",
|
|
980
|
+
"safe_arch",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "windows-link"
|
|
985
|
+
version = "0.2.1"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "windows-sys"
|
|
991
|
+
version = "0.61.2"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"windows-link",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "wit-bindgen"
|
|
1000
|
+
version = "0.51.0"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"wit-bindgen-rust-macro",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "wit-bindgen"
|
|
1009
|
+
version = "0.57.1"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "wit-bindgen-core"
|
|
1015
|
+
version = "0.51.0"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"anyhow",
|
|
1020
|
+
"heck",
|
|
1021
|
+
"wit-parser",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "wit-bindgen-rust"
|
|
1026
|
+
version = "0.51.0"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"anyhow",
|
|
1031
|
+
"heck",
|
|
1032
|
+
"indexmap",
|
|
1033
|
+
"prettyplease",
|
|
1034
|
+
"syn",
|
|
1035
|
+
"wasm-metadata",
|
|
1036
|
+
"wit-bindgen-core",
|
|
1037
|
+
"wit-component",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "wit-bindgen-rust-macro"
|
|
1042
|
+
version = "0.51.0"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"anyhow",
|
|
1047
|
+
"prettyplease",
|
|
1048
|
+
"proc-macro2",
|
|
1049
|
+
"quote",
|
|
1050
|
+
"syn",
|
|
1051
|
+
"wit-bindgen-core",
|
|
1052
|
+
"wit-bindgen-rust",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "wit-component"
|
|
1057
|
+
version = "0.244.0"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"anyhow",
|
|
1062
|
+
"bitflags",
|
|
1063
|
+
"indexmap",
|
|
1064
|
+
"log",
|
|
1065
|
+
"serde",
|
|
1066
|
+
"serde_derive",
|
|
1067
|
+
"serde_json",
|
|
1068
|
+
"wasm-encoder",
|
|
1069
|
+
"wasm-metadata",
|
|
1070
|
+
"wasmparser",
|
|
1071
|
+
"wit-parser",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "wit-parser"
|
|
1076
|
+
version = "0.244.0"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"anyhow",
|
|
1081
|
+
"id-arena",
|
|
1082
|
+
"indexmap",
|
|
1083
|
+
"log",
|
|
1084
|
+
"semver",
|
|
1085
|
+
"serde",
|
|
1086
|
+
"serde_derive",
|
|
1087
|
+
"serde_json",
|
|
1088
|
+
"unicode-xid",
|
|
1089
|
+
"wasmparser",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "zerocopy"
|
|
1094
|
+
version = "0.8.48"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1097
|
+
dependencies = [
|
|
1098
|
+
"zerocopy-derive",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "zerocopy-derive"
|
|
1103
|
+
version = "0.8.48"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"proc-macro2",
|
|
1108
|
+
"quote",
|
|
1109
|
+
"syn",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "zmij"
|
|
1114
|
+
version = "1.0.21"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|