navis-fastcore 0.0.1__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.
- navis_fastcore-0.0.1/Cargo.lock +1151 -0
- navis_fastcore-0.0.1/Cargo.toml +27 -0
- navis_fastcore-0.0.1/LICENSE +674 -0
- navis_fastcore-0.0.1/PKG-INFO +58 -0
- navis_fastcore-0.0.1/README.md +38 -0
- navis_fastcore-0.0.1/fastcore/__init__.py +5 -0
- navis_fastcore-0.0.1/fastcore/__version__.py +2 -0
- navis_fastcore-0.0.1/fastcore/dag.py +274 -0
- navis_fastcore-0.0.1/fastcore/fastcore.data/smat_fcwb.csv +22 -0
- navis_fastcore-0.0.1/fastcore/nblast.py +30 -0
- navis_fastcore-0.0.1/pyproject.toml +34 -0
|
@@ -0,0 +1,1151 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "autocfg"
|
|
7
|
+
version = "1.3.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "az"
|
|
13
|
+
version = "1.2.1"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bitflags"
|
|
19
|
+
version = "2.5.0"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "bosque"
|
|
25
|
+
version = "0.2.0"
|
|
26
|
+
source = "git+https://github.com/cavemanloverboy/bosque#83ba71bfa387ec1a1901c9912cae7f4e9a45d97c"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"cbindgen",
|
|
29
|
+
"rayon",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bytemuck"
|
|
34
|
+
version = "1.16.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "cbindgen"
|
|
40
|
+
version = "0.24.5"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "4b922faaf31122819ec80c4047cc684c6979a087366c069611e33649bf98e18d"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"heck",
|
|
45
|
+
"indexmap",
|
|
46
|
+
"log",
|
|
47
|
+
"proc-macro2",
|
|
48
|
+
"quote",
|
|
49
|
+
"serde",
|
|
50
|
+
"serde_json",
|
|
51
|
+
"syn 1.0.109",
|
|
52
|
+
"tempfile",
|
|
53
|
+
"toml",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "cc"
|
|
58
|
+
version = "1.0.99"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "cfg-if"
|
|
64
|
+
version = "1.0.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "crossbeam-deque"
|
|
70
|
+
version = "0.8.5"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"crossbeam-epoch",
|
|
75
|
+
"crossbeam-utils",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "crossbeam-epoch"
|
|
80
|
+
version = "0.9.18"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"crossbeam-utils",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "crossbeam-utils"
|
|
89
|
+
version = "0.8.20"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "crunchy"
|
|
95
|
+
version = "0.2.2"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "csv"
|
|
101
|
+
version = "1.3.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"csv-core",
|
|
106
|
+
"itoa",
|
|
107
|
+
"ryu",
|
|
108
|
+
"serde",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "csv-core"
|
|
113
|
+
version = "0.1.11"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"memchr",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "dirs"
|
|
122
|
+
version = "5.0.1"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"dirs-sys",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "dirs-sys"
|
|
131
|
+
version = "0.4.1"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"libc",
|
|
136
|
+
"option-ext",
|
|
137
|
+
"redox_users",
|
|
138
|
+
"windows-sys 0.48.0",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "divrem"
|
|
143
|
+
version = "1.0.0"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "69dde51e8fef5e12c1d65e0929b03d66e4c0c18282bc30ed2ca050ad6f44dd82"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "doc-comment"
|
|
149
|
+
version = "0.3.3"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "either"
|
|
155
|
+
version = "1.12.0"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "elapsed"
|
|
161
|
+
version = "0.1.2"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "6f4e5af126dafd0741c2ad62d47f68b28602550102e5f0dd45c8a97fc8b49c29"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "errno"
|
|
167
|
+
version = "0.3.9"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"libc",
|
|
172
|
+
"windows-sys 0.52.0",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "fastcore"
|
|
177
|
+
version = "0.0.1"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"bosque",
|
|
180
|
+
"csv",
|
|
181
|
+
"dirs",
|
|
182
|
+
"kiddo",
|
|
183
|
+
"ndarray",
|
|
184
|
+
"num",
|
|
185
|
+
"numpy",
|
|
186
|
+
"pyo3",
|
|
187
|
+
"rand",
|
|
188
|
+
"rayon",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "fastrand"
|
|
193
|
+
version = "2.1.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "fixed"
|
|
199
|
+
version = "1.27.0"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "2fc715d38bea7b5bf487fcd79bcf8c209f0b58014f3018a7a19c2b855f472048"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"az",
|
|
204
|
+
"bytemuck",
|
|
205
|
+
"half",
|
|
206
|
+
"num-traits",
|
|
207
|
+
"typenum",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "generator"
|
|
212
|
+
version = "0.7.5"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"cc",
|
|
217
|
+
"libc",
|
|
218
|
+
"log",
|
|
219
|
+
"rustversion",
|
|
220
|
+
"windows",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "getrandom"
|
|
225
|
+
version = "0.2.15"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"cfg-if",
|
|
230
|
+
"libc",
|
|
231
|
+
"wasi",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "half"
|
|
236
|
+
version = "2.4.1"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"cfg-if",
|
|
241
|
+
"crunchy",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "hashbrown"
|
|
246
|
+
version = "0.12.3"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "heck"
|
|
252
|
+
version = "0.4.1"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "indexmap"
|
|
258
|
+
version = "1.9.3"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"autocfg",
|
|
263
|
+
"hashbrown",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "indoc"
|
|
268
|
+
version = "2.0.5"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "init_with"
|
|
274
|
+
version = "1.1.0"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "0175f63815ce00183bf755155ad0cb48c65226c5d17a724e369c25418d2b7699"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "itertools"
|
|
280
|
+
version = "0.12.1"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"either",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "itoa"
|
|
289
|
+
version = "1.0.11"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "kiddo"
|
|
295
|
+
version = "4.2.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "9d2f8d9e1bc7c6919ad2cdc83472a9a4b5ed2ea2c5392c9514fdf958a7920f9a"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"az",
|
|
300
|
+
"divrem",
|
|
301
|
+
"doc-comment",
|
|
302
|
+
"elapsed",
|
|
303
|
+
"fixed",
|
|
304
|
+
"generator",
|
|
305
|
+
"init_with",
|
|
306
|
+
"itertools",
|
|
307
|
+
"log",
|
|
308
|
+
"num-traits",
|
|
309
|
+
"ordered-float",
|
|
310
|
+
"sorted-vec",
|
|
311
|
+
"tracing",
|
|
312
|
+
"tracing-subscriber",
|
|
313
|
+
"ubyte",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "lazy_static"
|
|
318
|
+
version = "1.5.0"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "libc"
|
|
324
|
+
version = "0.2.155"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "libredox"
|
|
330
|
+
version = "0.1.3"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"bitflags",
|
|
335
|
+
"libc",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "linux-raw-sys"
|
|
340
|
+
version = "0.4.14"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "lock_api"
|
|
346
|
+
version = "0.4.12"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"autocfg",
|
|
351
|
+
"scopeguard",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "log"
|
|
356
|
+
version = "0.4.21"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "matrixmultiply"
|
|
362
|
+
version = "0.3.8"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"autocfg",
|
|
367
|
+
"rawpointer",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "memchr"
|
|
372
|
+
version = "2.7.4"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "memoffset"
|
|
378
|
+
version = "0.9.1"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"autocfg",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "ndarray"
|
|
387
|
+
version = "0.15.6"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"matrixmultiply",
|
|
392
|
+
"num-complex",
|
|
393
|
+
"num-integer",
|
|
394
|
+
"num-traits",
|
|
395
|
+
"rawpointer",
|
|
396
|
+
"rayon",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "nu-ansi-term"
|
|
401
|
+
version = "0.46.0"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"overload",
|
|
406
|
+
"winapi",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "num"
|
|
411
|
+
version = "0.4.3"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"num-bigint",
|
|
416
|
+
"num-complex",
|
|
417
|
+
"num-integer",
|
|
418
|
+
"num-iter",
|
|
419
|
+
"num-rational",
|
|
420
|
+
"num-traits",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "num-bigint"
|
|
425
|
+
version = "0.4.5"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"num-integer",
|
|
430
|
+
"num-traits",
|
|
431
|
+
]
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "num-complex"
|
|
435
|
+
version = "0.4.6"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"num-traits",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "num-integer"
|
|
444
|
+
version = "0.1.46"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"num-traits",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "num-iter"
|
|
453
|
+
version = "0.1.45"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"autocfg",
|
|
458
|
+
"num-integer",
|
|
459
|
+
"num-traits",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "num-rational"
|
|
464
|
+
version = "0.4.2"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"num-bigint",
|
|
469
|
+
"num-integer",
|
|
470
|
+
"num-traits",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "num-traits"
|
|
475
|
+
version = "0.2.19"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"autocfg",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "numpy"
|
|
484
|
+
version = "0.21.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"libc",
|
|
489
|
+
"ndarray",
|
|
490
|
+
"num-complex",
|
|
491
|
+
"num-integer",
|
|
492
|
+
"num-traits",
|
|
493
|
+
"pyo3",
|
|
494
|
+
"rustc-hash",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "once_cell"
|
|
499
|
+
version = "1.19.0"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "option-ext"
|
|
505
|
+
version = "0.2.0"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "ordered-float"
|
|
511
|
+
version = "4.2.0"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"num-traits",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "overload"
|
|
520
|
+
version = "0.1.1"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "parking_lot"
|
|
526
|
+
version = "0.12.3"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"lock_api",
|
|
531
|
+
"parking_lot_core",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "parking_lot_core"
|
|
536
|
+
version = "0.9.10"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"cfg-if",
|
|
541
|
+
"libc",
|
|
542
|
+
"redox_syscall",
|
|
543
|
+
"smallvec",
|
|
544
|
+
"windows-targets 0.52.5",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "pin-project-lite"
|
|
549
|
+
version = "0.2.14"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "portable-atomic"
|
|
555
|
+
version = "1.6.0"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "ppv-lite86"
|
|
561
|
+
version = "0.2.17"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "proc-macro2"
|
|
567
|
+
version = "1.0.86"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"unicode-ident",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "pyo3"
|
|
576
|
+
version = "0.21.2"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"cfg-if",
|
|
581
|
+
"indoc",
|
|
582
|
+
"libc",
|
|
583
|
+
"memoffset",
|
|
584
|
+
"parking_lot",
|
|
585
|
+
"portable-atomic",
|
|
586
|
+
"pyo3-build-config",
|
|
587
|
+
"pyo3-ffi",
|
|
588
|
+
"pyo3-macros",
|
|
589
|
+
"unindent",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "pyo3-build-config"
|
|
594
|
+
version = "0.21.2"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"once_cell",
|
|
599
|
+
"target-lexicon",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "pyo3-ffi"
|
|
604
|
+
version = "0.21.2"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"libc",
|
|
609
|
+
"pyo3-build-config",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "pyo3-macros"
|
|
614
|
+
version = "0.21.2"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"proc-macro2",
|
|
619
|
+
"pyo3-macros-backend",
|
|
620
|
+
"quote",
|
|
621
|
+
"syn 2.0.67",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "pyo3-macros-backend"
|
|
626
|
+
version = "0.21.2"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"heck",
|
|
631
|
+
"proc-macro2",
|
|
632
|
+
"pyo3-build-config",
|
|
633
|
+
"quote",
|
|
634
|
+
"syn 2.0.67",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "quote"
|
|
639
|
+
version = "1.0.36"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"proc-macro2",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "rand"
|
|
648
|
+
version = "0.8.5"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"libc",
|
|
653
|
+
"rand_chacha",
|
|
654
|
+
"rand_core",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "rand_chacha"
|
|
659
|
+
version = "0.3.1"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"ppv-lite86",
|
|
664
|
+
"rand_core",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "rand_core"
|
|
669
|
+
version = "0.6.4"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"getrandom",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "rawpointer"
|
|
678
|
+
version = "0.2.1"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "rayon"
|
|
684
|
+
version = "1.10.0"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"either",
|
|
689
|
+
"rayon-core",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "rayon-core"
|
|
694
|
+
version = "1.12.1"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"crossbeam-deque",
|
|
699
|
+
"crossbeam-utils",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "redox_syscall"
|
|
704
|
+
version = "0.5.2"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"bitflags",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "redox_users"
|
|
713
|
+
version = "0.4.5"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"getrandom",
|
|
718
|
+
"libredox",
|
|
719
|
+
"thiserror",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "rustc-hash"
|
|
724
|
+
version = "1.1.0"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "rustix"
|
|
730
|
+
version = "0.38.34"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"bitflags",
|
|
735
|
+
"errno",
|
|
736
|
+
"libc",
|
|
737
|
+
"linux-raw-sys",
|
|
738
|
+
"windows-sys 0.52.0",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "rustversion"
|
|
743
|
+
version = "1.0.17"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "ryu"
|
|
749
|
+
version = "1.0.18"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "scopeguard"
|
|
755
|
+
version = "1.2.0"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "serde"
|
|
761
|
+
version = "1.0.203"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"serde_derive",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "serde_derive"
|
|
770
|
+
version = "1.0.203"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"proc-macro2",
|
|
775
|
+
"quote",
|
|
776
|
+
"syn 2.0.67",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "serde_json"
|
|
781
|
+
version = "1.0.117"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"itoa",
|
|
786
|
+
"ryu",
|
|
787
|
+
"serde",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "sharded-slab"
|
|
792
|
+
version = "0.1.7"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"lazy_static",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "smallvec"
|
|
801
|
+
version = "1.13.2"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "sorted-vec"
|
|
807
|
+
version = "0.8.3"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "c6734caf0b6f51addd5eeacca12fb39b2c6c14e8d4f3ac42f3a78955c0467458"
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "syn"
|
|
813
|
+
version = "1.0.109"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"proc-macro2",
|
|
818
|
+
"quote",
|
|
819
|
+
"unicode-ident",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "syn"
|
|
824
|
+
version = "2.0.67"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "ff8655ed1d86f3af4ee3fd3263786bc14245ad17c4c7e85ba7187fb3ae028c90"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"proc-macro2",
|
|
829
|
+
"quote",
|
|
830
|
+
"unicode-ident",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "target-lexicon"
|
|
835
|
+
version = "0.12.14"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "tempfile"
|
|
841
|
+
version = "3.10.1"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"cfg-if",
|
|
846
|
+
"fastrand",
|
|
847
|
+
"rustix",
|
|
848
|
+
"windows-sys 0.52.0",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "thiserror"
|
|
853
|
+
version = "1.0.61"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"thiserror-impl",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "thiserror-impl"
|
|
862
|
+
version = "1.0.61"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"proc-macro2",
|
|
867
|
+
"quote",
|
|
868
|
+
"syn 2.0.67",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "thread_local"
|
|
873
|
+
version = "1.1.8"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"cfg-if",
|
|
878
|
+
"once_cell",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "toml"
|
|
883
|
+
version = "0.5.11"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"serde",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "tracing"
|
|
892
|
+
version = "0.1.40"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"pin-project-lite",
|
|
897
|
+
"tracing-attributes",
|
|
898
|
+
"tracing-core",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "tracing-attributes"
|
|
903
|
+
version = "0.1.27"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"proc-macro2",
|
|
908
|
+
"quote",
|
|
909
|
+
"syn 2.0.67",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "tracing-core"
|
|
914
|
+
version = "0.1.32"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"once_cell",
|
|
919
|
+
"valuable",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "tracing-log"
|
|
924
|
+
version = "0.2.0"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"log",
|
|
929
|
+
"once_cell",
|
|
930
|
+
"tracing-core",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "tracing-subscriber"
|
|
935
|
+
version = "0.3.18"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"nu-ansi-term",
|
|
940
|
+
"sharded-slab",
|
|
941
|
+
"smallvec",
|
|
942
|
+
"thread_local",
|
|
943
|
+
"tracing-core",
|
|
944
|
+
"tracing-log",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "typenum"
|
|
949
|
+
version = "1.17.0"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "ubyte"
|
|
955
|
+
version = "0.10.4"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "f720def6ce1ee2fc44d40ac9ed6d3a59c361c80a75a7aa8e75bb9baed31cf2ea"
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "unicode-ident"
|
|
961
|
+
version = "1.0.12"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "unindent"
|
|
967
|
+
version = "0.2.3"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "valuable"
|
|
973
|
+
version = "0.1.0"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "wasi"
|
|
979
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "winapi"
|
|
985
|
+
version = "0.3.9"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"winapi-i686-pc-windows-gnu",
|
|
990
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
995
|
+
version = "0.4.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1001
|
+
version = "0.4.0"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "windows"
|
|
1007
|
+
version = "0.48.0"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"windows-targets 0.48.5",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "windows-sys"
|
|
1016
|
+
version = "0.48.0"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"windows-targets 0.48.5",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "windows-sys"
|
|
1025
|
+
version = "0.52.0"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"windows-targets 0.52.5",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "windows-targets"
|
|
1034
|
+
version = "0.48.5"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
1039
|
+
"windows_aarch64_msvc 0.48.5",
|
|
1040
|
+
"windows_i686_gnu 0.48.5",
|
|
1041
|
+
"windows_i686_msvc 0.48.5",
|
|
1042
|
+
"windows_x86_64_gnu 0.48.5",
|
|
1043
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
1044
|
+
"windows_x86_64_msvc 0.48.5",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "windows-targets"
|
|
1049
|
+
version = "0.52.5"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
1054
|
+
"windows_aarch64_msvc 0.52.5",
|
|
1055
|
+
"windows_i686_gnu 0.52.5",
|
|
1056
|
+
"windows_i686_gnullvm",
|
|
1057
|
+
"windows_i686_msvc 0.52.5",
|
|
1058
|
+
"windows_x86_64_gnu 0.52.5",
|
|
1059
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
1060
|
+
"windows_x86_64_msvc 0.52.5",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "windows_aarch64_gnullvm"
|
|
1065
|
+
version = "0.48.5"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "windows_aarch64_gnullvm"
|
|
1071
|
+
version = "0.52.5"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "windows_aarch64_msvc"
|
|
1077
|
+
version = "0.48.5"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "windows_aarch64_msvc"
|
|
1083
|
+
version = "0.52.5"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "windows_i686_gnu"
|
|
1089
|
+
version = "0.48.5"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "windows_i686_gnu"
|
|
1095
|
+
version = "0.52.5"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "windows_i686_gnullvm"
|
|
1101
|
+
version = "0.52.5"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "windows_i686_msvc"
|
|
1107
|
+
version = "0.48.5"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "windows_i686_msvc"
|
|
1113
|
+
version = "0.52.5"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "windows_x86_64_gnu"
|
|
1119
|
+
version = "0.48.5"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "windows_x86_64_gnu"
|
|
1125
|
+
version = "0.52.5"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "windows_x86_64_gnullvm"
|
|
1131
|
+
version = "0.48.5"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "windows_x86_64_gnullvm"
|
|
1137
|
+
version = "0.52.5"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "windows_x86_64_msvc"
|
|
1143
|
+
version = "0.48.5"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "windows_x86_64_msvc"
|
|
1149
|
+
version = "0.52.5"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|