cleitonforge 0.1.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.
- cleitonforge-0.1.1/Cargo.lock +3796 -0
- cleitonforge-0.1.1/Cargo.toml +10 -0
- cleitonforge-0.1.1/PKG-INFO +176 -0
- cleitonforge-0.1.1/README.md +146 -0
- cleitonforge-0.1.1/cforge-backends/Cargo.toml +25 -0
- cleitonforge-0.1.1/cforge-backends/src/density_matrix.rs +444 -0
- cleitonforge-0.1.1/cforge-backends/src/lib.rs +35 -0
- cleitonforge-0.1.1/cforge-backends/src/noise.rs +288 -0
- cleitonforge-0.1.1/cforge-backends/src/noisy_backend.rs +220 -0
- cleitonforge-0.1.1/cforge-backends/src/q1tsim_backend.rs +273 -0
- cleitonforge-0.1.1/cforge-backends/src/quantrs2_backend.rs +292 -0
- cleitonforge-0.1.1/cforge-backends/src/roqoqo_backend.rs +411 -0
- cleitonforge-0.1.1/cforge-backends/src/sample.rs +71 -0
- cleitonforge-0.1.1/cforge-backends/src/statevector.rs +315 -0
- cleitonforge-0.1.1/cforge-backends/src/trait_def.rs +78 -0
- cleitonforge-0.1.1/cforge-backends/tests/equivalence.rs +122 -0
- cleitonforge-0.1.1/cforge-core/Cargo.toml +10 -0
- cleitonforge-0.1.1/cforge-core/src/gate.rs +102 -0
- cleitonforge-0.1.1/cforge-core/src/ir.rs +188 -0
- cleitonforge-0.1.1/cforge-core/src/lib.rs +14 -0
- cleitonforge-0.1.1/cforge-core/src/metrics.rs +20 -0
- cleitonforge-0.1.1/cforge-metrics/Cargo.toml +13 -0
- cleitonforge-0.1.1/cforge-metrics/src/circuit_stats.rs +84 -0
- cleitonforge-0.1.1/cforge-metrics/src/fidelity.rs +48 -0
- cleitonforge-0.1.1/cforge-metrics/src/lib.rs +15 -0
- cleitonforge-0.1.1/cforge-metrics/src/memory.rs +101 -0
- cleitonforge-0.1.1/cforge-metrics/src/performance.rs +60 -0
- cleitonforge-0.1.1/cforge-parser/Cargo.toml +15 -0
- cleitonforge-0.1.1/cforge-parser/src/error.rs +25 -0
- cleitonforge-0.1.1/cforge-parser/src/lib.rs +20 -0
- cleitonforge-0.1.1/cforge-parser/src/normalizer.rs +167 -0
- cleitonforge-0.1.1/cforge-parser/src/qasm2.rs +462 -0
- cleitonforge-0.1.1/cforge-parser/src/qasm3.rs +532 -0
- cleitonforge-0.1.1/cforge-parser/src/translate.rs +101 -0
- cleitonforge-0.1.1/cforge-py/Cargo.toml +20 -0
- cleitonforge-0.1.1/cforge-py/README.md +146 -0
- cleitonforge-0.1.1/cforge-py/src/lib.rs +526 -0
- cleitonforge-0.1.1/pyproject.toml +54 -0
|
@@ -0,0 +1,3796 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.7.8"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"getrandom 0.2.17",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "ahash"
|
|
18
|
+
version = "0.8.12"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"cfg-if",
|
|
23
|
+
"once_cell",
|
|
24
|
+
"version_check",
|
|
25
|
+
"zerocopy",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "aho-corasick"
|
|
30
|
+
version = "0.6.10"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5"
|
|
33
|
+
dependencies = [
|
|
34
|
+
"memchr",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "aho-corasick"
|
|
39
|
+
version = "1.1.4"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
42
|
+
dependencies = [
|
|
43
|
+
"memchr",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "allocator-api2"
|
|
48
|
+
version = "0.2.21"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "android_system_properties"
|
|
54
|
+
version = "0.1.5"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"libc",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anstream"
|
|
63
|
+
version = "1.0.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"anstyle",
|
|
68
|
+
"anstyle-parse",
|
|
69
|
+
"anstyle-query",
|
|
70
|
+
"anstyle-wincon",
|
|
71
|
+
"colorchoice",
|
|
72
|
+
"is_terminal_polyfill",
|
|
73
|
+
"utf8parse",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "anstyle"
|
|
78
|
+
version = "1.0.14"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "anstyle-parse"
|
|
84
|
+
version = "1.0.0"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"utf8parse",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anstyle-query"
|
|
93
|
+
version = "1.1.5"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"windows-sys 0.61.2",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "anstyle-wincon"
|
|
102
|
+
version = "3.0.11"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"anstyle",
|
|
107
|
+
"once_cell_polyfill",
|
|
108
|
+
"windows-sys 0.61.2",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "anyhow"
|
|
113
|
+
version = "1.0.102"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "approx"
|
|
119
|
+
version = "0.5.1"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"num-traits",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "argmin"
|
|
128
|
+
version = "0.11.0"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "e7ab7ca97779074715a402e5e8045fae27e7191acaec9b4c5653276316e9e404"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"anyhow",
|
|
133
|
+
"argmin-math",
|
|
134
|
+
"num-traits",
|
|
135
|
+
"paste",
|
|
136
|
+
"rand_xoshiro",
|
|
137
|
+
"thiserror",
|
|
138
|
+
"web-time",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "argmin-math"
|
|
143
|
+
version = "0.5.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "ba6958a87117ff5e1d0d7716856a4303752518012ec4a67a68446b6631a1a54d"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"anyhow",
|
|
148
|
+
"cfg-if",
|
|
149
|
+
"num-complex 0.4.6",
|
|
150
|
+
"num-integer",
|
|
151
|
+
"num-traits",
|
|
152
|
+
"thiserror",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "ariadne"
|
|
157
|
+
version = "0.3.0"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "72fe02fc62033df9ba41cba57ee19acf5e742511a140c7dbc3a873e19a19a1bd"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"concolor",
|
|
162
|
+
"unicode-width 0.1.14",
|
|
163
|
+
"yansi",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "autocfg"
|
|
168
|
+
version = "1.5.1"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "bincode"
|
|
174
|
+
version = "2.0.1"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"bincode_derive",
|
|
179
|
+
"serde",
|
|
180
|
+
"unty",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "bincode_derive"
|
|
185
|
+
version = "2.0.1"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"virtue",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "bitflags"
|
|
194
|
+
version = "1.3.2"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bitflags"
|
|
200
|
+
version = "2.13.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "block-buffer"
|
|
206
|
+
version = "0.12.1"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"hybrid-array",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "boolenum"
|
|
215
|
+
version = "0.1.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "a6c8abd585d7026df20a9ae12982127ba5e81cc7a09397b957e71659da8c5de8"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"proc-macro-error",
|
|
220
|
+
"quote 1.0.45",
|
|
221
|
+
"syn 1.0.109",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "bumpalo"
|
|
226
|
+
version = "3.20.3"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "bytemuck"
|
|
232
|
+
version = "1.25.0"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"bytemuck_derive",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "bytemuck_derive"
|
|
241
|
+
version = "1.10.2"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"proc-macro2 1.0.106",
|
|
246
|
+
"quote 1.0.45",
|
|
247
|
+
"syn 2.0.118",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "byteorder"
|
|
252
|
+
version = "1.5.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "bytes"
|
|
258
|
+
version = "1.12.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "cached"
|
|
264
|
+
version = "0.59.0"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "53b6f5d101f0f6322c8646a45b7c581a673e476329040d97565815c2461dd0c4"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"ahash 0.8.12",
|
|
269
|
+
"cached_proc_macro",
|
|
270
|
+
"cached_proc_macro_types",
|
|
271
|
+
"hashbrown 0.16.1",
|
|
272
|
+
"once_cell",
|
|
273
|
+
"parking_lot",
|
|
274
|
+
"thiserror",
|
|
275
|
+
"web-time",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "cached_proc_macro"
|
|
280
|
+
version = "0.27.0"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "8ebcf9c75f17a17d55d11afc98e46167d4790a263f428891b8705ab2f793eca3"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"darling",
|
|
285
|
+
"proc-macro2 1.0.106",
|
|
286
|
+
"quote 1.0.45",
|
|
287
|
+
"syn 2.0.118",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "cached_proc_macro_types"
|
|
292
|
+
version = "0.1.1"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "cc"
|
|
298
|
+
version = "1.2.65"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"find-msvc-tools",
|
|
303
|
+
"shlex",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "cfg-if"
|
|
308
|
+
version = "1.0.4"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "cforge-backends"
|
|
314
|
+
version = "0.1.1"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"cforge-core",
|
|
317
|
+
"ndarray 0.17.2",
|
|
318
|
+
"num-complex 0.4.6",
|
|
319
|
+
"q1tsim",
|
|
320
|
+
"qoqo_calculator",
|
|
321
|
+
"quantrs2",
|
|
322
|
+
"quantrs2-core",
|
|
323
|
+
"rand 0.10.1",
|
|
324
|
+
"roqoqo",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "cforge-cli"
|
|
329
|
+
version = "0.1.1"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"cforge-backends",
|
|
332
|
+
"cforge-core",
|
|
333
|
+
"cforge-metrics",
|
|
334
|
+
"cforge-parser",
|
|
335
|
+
"clap",
|
|
336
|
+
"comfy-table",
|
|
337
|
+
"num-complex 0.4.6",
|
|
338
|
+
"rand 0.10.1",
|
|
339
|
+
"serde_json",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "cforge-core"
|
|
344
|
+
version = "0.1.1"
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "cforge-enterprise"
|
|
348
|
+
version = "0.1.1"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"cforge-backends",
|
|
351
|
+
"cforge-core",
|
|
352
|
+
"num-complex 0.4.6",
|
|
353
|
+
"serde",
|
|
354
|
+
"serde_json",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "cforge-metrics"
|
|
359
|
+
version = "0.1.1"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"cforge-backends",
|
|
362
|
+
"cforge-core",
|
|
363
|
+
"num-complex 0.4.6",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "cforge-parser"
|
|
368
|
+
version = "0.1.1"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"cforge-core",
|
|
371
|
+
"oq3_parser",
|
|
372
|
+
"oq3_semantics",
|
|
373
|
+
"oq3_syntax",
|
|
374
|
+
"qasm",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "cforge-py"
|
|
379
|
+
version = "0.1.1"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"cforge-backends",
|
|
382
|
+
"cforge-core",
|
|
383
|
+
"cforge-metrics",
|
|
384
|
+
"cforge-parser",
|
|
385
|
+
"pyo3",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "chacha20"
|
|
390
|
+
version = "0.10.0"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"cfg-if",
|
|
395
|
+
"cpufeatures",
|
|
396
|
+
"rand_core 0.10.1",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "chrono"
|
|
401
|
+
version = "0.4.45"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"iana-time-zone",
|
|
406
|
+
"js-sys",
|
|
407
|
+
"num-traits",
|
|
408
|
+
"serde",
|
|
409
|
+
"wasm-bindgen",
|
|
410
|
+
"windows-link",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "ciborium"
|
|
415
|
+
version = "0.2.2"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"ciborium-io",
|
|
420
|
+
"ciborium-ll",
|
|
421
|
+
"serde",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "ciborium-io"
|
|
426
|
+
version = "0.2.2"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "ciborium-ll"
|
|
432
|
+
version = "0.2.2"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"ciborium-io",
|
|
437
|
+
"half",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "clap"
|
|
442
|
+
version = "4.6.1"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"clap_builder",
|
|
447
|
+
"clap_derive",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "clap_builder"
|
|
452
|
+
version = "4.6.0"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"anstream",
|
|
457
|
+
"anstyle",
|
|
458
|
+
"clap_lex",
|
|
459
|
+
"strsim",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "clap_derive"
|
|
464
|
+
version = "4.6.1"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"heck",
|
|
469
|
+
"proc-macro2 1.0.106",
|
|
470
|
+
"quote 1.0.45",
|
|
471
|
+
"syn 2.0.118",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "clap_lex"
|
|
476
|
+
version = "1.1.0"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "colorchoice"
|
|
482
|
+
version = "1.0.5"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "comfy-table"
|
|
488
|
+
version = "7.2.2"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"crossterm",
|
|
493
|
+
"unicode-segmentation",
|
|
494
|
+
"unicode-width 0.2.2",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "concolor"
|
|
499
|
+
version = "0.1.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "0b946244a988c390a94667ae0e3958411fa40cc46ea496a929b263d883f5f9c3"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"bitflags 1.3.2",
|
|
504
|
+
"concolor-query",
|
|
505
|
+
"is-terminal",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "concolor-query"
|
|
510
|
+
version = "0.3.3"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"windows-sys 0.45.0",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "const-oid"
|
|
519
|
+
version = "0.10.2"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "core-foundation-sys"
|
|
525
|
+
version = "0.8.7"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "countme"
|
|
531
|
+
version = "3.0.1"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "cov-mark"
|
|
537
|
+
version = "2.2.0"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "90863d8442510cddf7f46618c4f92413774635771a3e80830c8b30d183420b14"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "cpufeatures"
|
|
543
|
+
version = "0.3.0"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"libc",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "crc32fast"
|
|
552
|
+
version = "1.5.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"cfg-if",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "crossbeam"
|
|
561
|
+
version = "0.8.4"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"crossbeam-channel",
|
|
566
|
+
"crossbeam-deque",
|
|
567
|
+
"crossbeam-epoch",
|
|
568
|
+
"crossbeam-queue",
|
|
569
|
+
"crossbeam-utils",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "crossbeam-channel"
|
|
574
|
+
version = "0.5.15"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"crossbeam-utils",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "crossbeam-deque"
|
|
583
|
+
version = "0.8.6"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"crossbeam-epoch",
|
|
588
|
+
"crossbeam-utils",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "crossbeam-epoch"
|
|
593
|
+
version = "0.9.18"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"crossbeam-utils",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "crossbeam-queue"
|
|
602
|
+
version = "0.3.12"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"crossbeam-utils",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "crossbeam-utils"
|
|
611
|
+
version = "0.8.21"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "crossterm"
|
|
617
|
+
version = "0.29.0"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"bitflags 2.13.0",
|
|
622
|
+
"crossterm_winapi",
|
|
623
|
+
"document-features",
|
|
624
|
+
"parking_lot",
|
|
625
|
+
"rustix",
|
|
626
|
+
"winapi",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "crossterm_winapi"
|
|
631
|
+
version = "0.9.1"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"winapi",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "crunchy"
|
|
640
|
+
version = "0.2.4"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "crypto-common"
|
|
646
|
+
version = "0.2.2"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"hybrid-array",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "darling"
|
|
655
|
+
version = "0.20.11"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"darling_core",
|
|
660
|
+
"darling_macro",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "darling_core"
|
|
665
|
+
version = "0.20.11"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"fnv",
|
|
670
|
+
"ident_case",
|
|
671
|
+
"proc-macro2 1.0.106",
|
|
672
|
+
"quote 1.0.45",
|
|
673
|
+
"strsim",
|
|
674
|
+
"syn 2.0.118",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "darling_macro"
|
|
679
|
+
version = "0.20.11"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"darling_core",
|
|
684
|
+
"quote 1.0.45",
|
|
685
|
+
"syn 2.0.118",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "digest"
|
|
690
|
+
version = "0.11.3"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"block-buffer",
|
|
695
|
+
"const-oid",
|
|
696
|
+
"crypto-common",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "dispatch2"
|
|
701
|
+
version = "0.3.1"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"bitflags 2.13.0",
|
|
706
|
+
"objc2",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "document-features"
|
|
711
|
+
version = "0.2.12"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"litrs",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "drop_bomb"
|
|
720
|
+
version = "0.1.5"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "dyn-clone"
|
|
726
|
+
version = "1.0.20"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "either"
|
|
732
|
+
version = "1.16.0"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "ellip"
|
|
738
|
+
version = "1.1.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "c398315af820159155f5161699396ac1277b82f3c44052816b098a0de28a14d0"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"num-lazy",
|
|
743
|
+
"num-traits",
|
|
744
|
+
"numeric_literals",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "env_filter"
|
|
749
|
+
version = "1.0.1"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"log",
|
|
754
|
+
"regex 1.12.4",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "env_logger"
|
|
759
|
+
version = "0.11.10"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"env_filter",
|
|
764
|
+
"log",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "equivalent"
|
|
769
|
+
version = "1.0.2"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "errno"
|
|
775
|
+
version = "0.3.14"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"libc",
|
|
780
|
+
"windows-sys 0.61.2",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "fastrand"
|
|
785
|
+
version = "2.4.1"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "find-msvc-tools"
|
|
791
|
+
version = "0.1.9"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "fixedbitset"
|
|
797
|
+
version = "0.5.7"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "fnv"
|
|
803
|
+
version = "1.0.7"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "foldhash"
|
|
809
|
+
version = "0.1.5"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "foldhash"
|
|
815
|
+
version = "0.2.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "futures"
|
|
821
|
+
version = "0.3.32"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"futures-channel",
|
|
826
|
+
"futures-core",
|
|
827
|
+
"futures-executor",
|
|
828
|
+
"futures-io",
|
|
829
|
+
"futures-sink",
|
|
830
|
+
"futures-task",
|
|
831
|
+
"futures-util",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "futures-channel"
|
|
836
|
+
version = "0.3.32"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"futures-core",
|
|
841
|
+
"futures-sink",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "futures-core"
|
|
846
|
+
version = "0.3.32"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "futures-executor"
|
|
852
|
+
version = "0.3.32"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"futures-core",
|
|
857
|
+
"futures-task",
|
|
858
|
+
"futures-util",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "futures-io"
|
|
863
|
+
version = "0.3.32"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "futures-macro"
|
|
869
|
+
version = "0.3.32"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"proc-macro2 1.0.106",
|
|
874
|
+
"quote 1.0.45",
|
|
875
|
+
"syn 2.0.118",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "futures-sink"
|
|
880
|
+
version = "0.3.32"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "futures-task"
|
|
886
|
+
version = "0.3.32"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "futures-util"
|
|
892
|
+
version = "0.3.32"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"futures-channel",
|
|
897
|
+
"futures-core",
|
|
898
|
+
"futures-io",
|
|
899
|
+
"futures-macro",
|
|
900
|
+
"futures-sink",
|
|
901
|
+
"futures-task",
|
|
902
|
+
"memchr",
|
|
903
|
+
"pin-project-lite",
|
|
904
|
+
"slab",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "getrandom"
|
|
909
|
+
version = "0.1.16"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"cfg-if",
|
|
914
|
+
"libc",
|
|
915
|
+
"wasi 0.9.0+wasi-snapshot-preview1",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "getrandom"
|
|
920
|
+
version = "0.2.17"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"cfg-if",
|
|
925
|
+
"libc",
|
|
926
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "getrandom"
|
|
931
|
+
version = "0.3.4"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"cfg-if",
|
|
936
|
+
"js-sys",
|
|
937
|
+
"libc",
|
|
938
|
+
"r-efi 5.3.0",
|
|
939
|
+
"wasip2",
|
|
940
|
+
"wasm-bindgen",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "getrandom"
|
|
945
|
+
version = "0.4.3"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"cfg-if",
|
|
950
|
+
"js-sys",
|
|
951
|
+
"libc",
|
|
952
|
+
"r-efi 6.0.0",
|
|
953
|
+
"rand_core 0.10.1",
|
|
954
|
+
"wasm-bindgen",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "glam"
|
|
959
|
+
version = "0.30.10"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "glam"
|
|
965
|
+
version = "0.31.1"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "glam"
|
|
971
|
+
version = "0.32.1"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "glam"
|
|
977
|
+
version = "0.33.2"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "7f22fb22f065b308be0d8724e3706c7fa3fc2a6c7d6899df4cad7860e7a75436"
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "half"
|
|
983
|
+
version = "2.7.1"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"cfg-if",
|
|
988
|
+
"crunchy",
|
|
989
|
+
"num-traits",
|
|
990
|
+
"serde",
|
|
991
|
+
"zerocopy",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "hashbrown"
|
|
996
|
+
version = "0.12.3"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"ahash 0.7.8",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "hashbrown"
|
|
1005
|
+
version = "0.14.5"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "hashbrown"
|
|
1011
|
+
version = "0.15.5"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"foldhash 0.1.5",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "hashbrown"
|
|
1020
|
+
version = "0.16.1"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"allocator-api2",
|
|
1025
|
+
"equivalent",
|
|
1026
|
+
"foldhash 0.2.0",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "hashbrown"
|
|
1031
|
+
version = "0.17.1"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "heck"
|
|
1037
|
+
version = "0.5.0"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "hermit-abi"
|
|
1043
|
+
version = "0.5.2"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "hybrid-array"
|
|
1049
|
+
version = "0.4.12"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"typenum",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "iana-time-zone"
|
|
1058
|
+
version = "0.1.65"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"android_system_properties",
|
|
1063
|
+
"core-foundation-sys",
|
|
1064
|
+
"iana-time-zone-haiku",
|
|
1065
|
+
"js-sys",
|
|
1066
|
+
"log",
|
|
1067
|
+
"wasm-bindgen",
|
|
1068
|
+
"windows-core",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "iana-time-zone-haiku"
|
|
1073
|
+
version = "0.1.2"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1076
|
+
dependencies = [
|
|
1077
|
+
"cc",
|
|
1078
|
+
]
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "ident_case"
|
|
1082
|
+
version = "1.0.1"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "indexmap"
|
|
1088
|
+
version = "2.14.0"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"equivalent",
|
|
1093
|
+
"hashbrown 0.17.1",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "indoc"
|
|
1098
|
+
version = "2.0.7"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"rustversion",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "is-terminal"
|
|
1107
|
+
version = "0.4.17"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"hermit-abi",
|
|
1112
|
+
"libc",
|
|
1113
|
+
"windows-sys 0.61.2",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "is_terminal_polyfill"
|
|
1118
|
+
version = "1.70.2"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "itertools"
|
|
1124
|
+
version = "0.7.11"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "0d47946d458e94a1b7bcabbf6521ea7c037062c81f534615abcad76e84d4970d"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"either",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "itertools"
|
|
1133
|
+
version = "0.10.5"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"either",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "itertools"
|
|
1142
|
+
version = "0.14.0"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"either",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "itertools"
|
|
1151
|
+
version = "0.15.0"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"either",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "itoa"
|
|
1160
|
+
version = "1.0.18"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "js-sys"
|
|
1166
|
+
version = "0.3.102"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"cfg-if",
|
|
1171
|
+
"futures-util",
|
|
1172
|
+
"wasm-bindgen",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "lambert_w"
|
|
1177
|
+
version = "2.0.3"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "1d0452ace452e1ef835a8616a980f7c49faca9f9a4798bcf605b734dd6baeb59"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"num-complex 0.4.6",
|
|
1182
|
+
"num-traits",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "lazy_static"
|
|
1187
|
+
version = "1.5.0"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "libc"
|
|
1193
|
+
version = "0.2.186"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "libm"
|
|
1199
|
+
version = "0.2.16"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "linux-raw-sys"
|
|
1205
|
+
version = "0.12.1"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "litrs"
|
|
1211
|
+
version = "1.0.0"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "lock_api"
|
|
1217
|
+
version = "0.4.14"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"scopeguard",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "log"
|
|
1226
|
+
version = "0.4.32"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "matrixmultiply"
|
|
1232
|
+
version = "0.1.15"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "dcad67dcec2d58ff56f6292582377e6921afdf3bfbd533e26fb8900ae575e002"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"rawpointer 0.1.0",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "matrixmultiply"
|
|
1241
|
+
version = "0.3.10"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"autocfg",
|
|
1246
|
+
"rawpointer 0.2.1",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "memchr"
|
|
1251
|
+
version = "2.8.2"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "memmap2"
|
|
1257
|
+
version = "0.9.10"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
1260
|
+
dependencies = [
|
|
1261
|
+
"libc",
|
|
1262
|
+
]
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "memoffset"
|
|
1266
|
+
version = "0.9.1"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"autocfg",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "mio"
|
|
1275
|
+
version = "1.2.1"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1278
|
+
dependencies = [
|
|
1279
|
+
"libc",
|
|
1280
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1281
|
+
"windows-sys 0.61.2",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "nalgebra"
|
|
1286
|
+
version = "0.33.3"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"approx",
|
|
1291
|
+
"matrixmultiply 0.3.10",
|
|
1292
|
+
"num-complex 0.4.6",
|
|
1293
|
+
"num-rational",
|
|
1294
|
+
"num-traits",
|
|
1295
|
+
"rand 0.8.6",
|
|
1296
|
+
"rand_distr 0.4.3",
|
|
1297
|
+
"simba 0.9.1",
|
|
1298
|
+
"typenum",
|
|
1299
|
+
]
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "nalgebra"
|
|
1303
|
+
version = "0.35.0"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "adc43a60c217b0c6ff46e47f26911015ad8d2e5a8be1af668c67e370d99a4346"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"approx",
|
|
1308
|
+
"glam 0.30.10",
|
|
1309
|
+
"glam 0.31.1",
|
|
1310
|
+
"glam 0.32.1",
|
|
1311
|
+
"glam 0.33.2",
|
|
1312
|
+
"matrixmultiply 0.3.10",
|
|
1313
|
+
"nalgebra-macros",
|
|
1314
|
+
"num-complex 0.4.6",
|
|
1315
|
+
"num-rational",
|
|
1316
|
+
"num-traits",
|
|
1317
|
+
"simba 0.10.0",
|
|
1318
|
+
"typenum",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "nalgebra-macros"
|
|
1323
|
+
version = "0.3.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"proc-macro2 1.0.106",
|
|
1328
|
+
"quote 1.0.45",
|
|
1329
|
+
"syn 2.0.118",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "ndarray"
|
|
1334
|
+
version = "0.12.1"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "7cf380a8af901ad627594013a3bbac903ae0a6f94e176e47e46b5bbc1877b928"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"itertools 0.7.11",
|
|
1339
|
+
"matrixmultiply 0.1.15",
|
|
1340
|
+
"num-complex 0.2.4",
|
|
1341
|
+
"num-traits",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "ndarray"
|
|
1346
|
+
version = "0.16.1"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"matrixmultiply 0.3.10",
|
|
1351
|
+
"num-complex 0.4.6",
|
|
1352
|
+
"num-integer",
|
|
1353
|
+
"num-traits",
|
|
1354
|
+
"portable-atomic",
|
|
1355
|
+
"portable-atomic-util",
|
|
1356
|
+
"rawpointer 0.2.1",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "ndarray"
|
|
1361
|
+
version = "0.17.2"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"approx",
|
|
1366
|
+
"matrixmultiply 0.3.10",
|
|
1367
|
+
"num-complex 0.4.6",
|
|
1368
|
+
"num-integer",
|
|
1369
|
+
"num-traits",
|
|
1370
|
+
"portable-atomic",
|
|
1371
|
+
"portable-atomic-util",
|
|
1372
|
+
"rawpointer 0.2.1",
|
|
1373
|
+
"rayon",
|
|
1374
|
+
"serde",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "ndarray-rand"
|
|
1379
|
+
version = "0.16.0"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "180f724d496e84764e8ecf28fbe1da74ef231ec4ba15be65a9100be8445d73e3"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"ndarray 0.17.2",
|
|
1384
|
+
"rand 0.9.4",
|
|
1385
|
+
"rand_distr 0.5.1",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "ntapi"
|
|
1390
|
+
version = "0.4.3"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"winapi",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "num"
|
|
1399
|
+
version = "0.4.3"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"num-bigint",
|
|
1404
|
+
"num-complex 0.4.6",
|
|
1405
|
+
"num-integer",
|
|
1406
|
+
"num-iter",
|
|
1407
|
+
"num-rational",
|
|
1408
|
+
"num-traits",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "num-bigint"
|
|
1413
|
+
version = "0.4.6"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"num-integer",
|
|
1418
|
+
"num-traits",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "num-complex"
|
|
1423
|
+
version = "0.2.4"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"autocfg",
|
|
1428
|
+
"num-traits",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "num-complex"
|
|
1433
|
+
version = "0.4.6"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"bytemuck",
|
|
1438
|
+
"num-traits",
|
|
1439
|
+
"serde",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "num-integer"
|
|
1444
|
+
version = "0.1.46"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"num-traits",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "num-iter"
|
|
1453
|
+
version = "0.1.45"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"autocfg",
|
|
1458
|
+
"num-integer",
|
|
1459
|
+
"num-traits",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "num-lazy"
|
|
1464
|
+
version = "0.4.1"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "3ca66a13db1c179f8414c75ebad0351f1597ef0b291aa6e58f7af129321f0f58"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "num-rational"
|
|
1470
|
+
version = "0.4.2"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"num-bigint",
|
|
1475
|
+
"num-integer",
|
|
1476
|
+
"num-traits",
|
|
1477
|
+
]
|
|
1478
|
+
|
|
1479
|
+
[[package]]
|
|
1480
|
+
name = "num-traits"
|
|
1481
|
+
version = "0.2.19"
|
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1484
|
+
dependencies = [
|
|
1485
|
+
"autocfg",
|
|
1486
|
+
"libm",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "num_cpus"
|
|
1491
|
+
version = "1.17.0"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"hermit-abi",
|
|
1496
|
+
"libc",
|
|
1497
|
+
]
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "numeric_literals"
|
|
1501
|
+
version = "0.2.0"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "095aa67b0b9f2081746998f4f17106bdb51d56dc8c211afca5531b92b83bf98a"
|
|
1504
|
+
dependencies = [
|
|
1505
|
+
"quote 1.0.45",
|
|
1506
|
+
"syn 1.0.109",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "objc2"
|
|
1511
|
+
version = "0.6.4"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"objc2-encode",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "objc2-core-foundation"
|
|
1520
|
+
version = "0.3.2"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"bitflags 2.13.0",
|
|
1525
|
+
"dispatch2",
|
|
1526
|
+
"objc2",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "objc2-encode"
|
|
1531
|
+
version = "4.1.0"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "objc2-foundation"
|
|
1537
|
+
version = "0.3.2"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"bitflags 2.13.0",
|
|
1542
|
+
"objc2",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "objc2-io-kit"
|
|
1547
|
+
version = "0.3.2"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"libc",
|
|
1552
|
+
"objc2-core-foundation",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "objc2-open-directory"
|
|
1557
|
+
version = "0.3.2"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "bb82bed227edf5201dfedf072bba4015a33d3d4a98519837295a90f0a23f676d"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"objc2",
|
|
1562
|
+
"objc2-core-foundation",
|
|
1563
|
+
"objc2-foundation",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "once_cell"
|
|
1568
|
+
version = "1.21.4"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "once_cell_polyfill"
|
|
1574
|
+
version = "1.70.2"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "optirs-core"
|
|
1580
|
+
version = "0.3.1"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "5d7a095329f31c61bc3159afd8ac9552946f6f66a362113ea6bd58e045b879a3"
|
|
1583
|
+
dependencies = [
|
|
1584
|
+
"chrono",
|
|
1585
|
+
"futures",
|
|
1586
|
+
"log",
|
|
1587
|
+
"num_cpus",
|
|
1588
|
+
"scirs2-core 0.4.4",
|
|
1589
|
+
"scirs2-neural",
|
|
1590
|
+
"scirs2-optimize 0.4.4",
|
|
1591
|
+
"scirs2-stats 0.4.4",
|
|
1592
|
+
"serde",
|
|
1593
|
+
"serde_json",
|
|
1594
|
+
"sha2",
|
|
1595
|
+
"sysinfo 0.38.4",
|
|
1596
|
+
"thiserror",
|
|
1597
|
+
"uuid",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "oq3_lexer"
|
|
1602
|
+
version = "0.7.0"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "a27bbc91e3e9d6193a44aac8f5d62c1507c41669af71a4e7e0ef66fd6470e960"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"unicode-properties",
|
|
1607
|
+
"unicode-xid 0.2.6",
|
|
1608
|
+
]
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "oq3_parser"
|
|
1612
|
+
version = "0.7.0"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "9a72022fcb414e8a0912920a1cf46417b6aa95f19d4b38778df7450f8a3c17fa"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"drop_bomb",
|
|
1617
|
+
"oq3_lexer",
|
|
1618
|
+
"ra_ap_limit",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "oq3_semantics"
|
|
1623
|
+
version = "0.7.0"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "b72dffd869f3548190c705828d030fbb7fca94e519dcfa6a489227e5c3ffd777"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"boolenum",
|
|
1628
|
+
"hashbrown 0.12.3",
|
|
1629
|
+
"oq3_source_file",
|
|
1630
|
+
"oq3_syntax",
|
|
1631
|
+
"rowan",
|
|
1632
|
+
]
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "oq3_source_file"
|
|
1636
|
+
version = "0.7.0"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "ff8c03f1f92c7a8f0b5249664b526169ceb8f925cb314ff93d3b27d8a4afb78c"
|
|
1639
|
+
dependencies = [
|
|
1640
|
+
"ariadne",
|
|
1641
|
+
"oq3_syntax",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "oq3_syntax"
|
|
1646
|
+
version = "0.7.0"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "42c754ce1d9da28d6c0334c212d64b521288fe8c7cf16e9727d45dcf661ff084"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"cov-mark",
|
|
1651
|
+
"either",
|
|
1652
|
+
"indexmap",
|
|
1653
|
+
"itertools 0.10.5",
|
|
1654
|
+
"once_cell",
|
|
1655
|
+
"oq3_lexer",
|
|
1656
|
+
"oq3_parser",
|
|
1657
|
+
"rowan",
|
|
1658
|
+
"rustc-hash 1.1.0",
|
|
1659
|
+
"rustversion",
|
|
1660
|
+
"smol_str",
|
|
1661
|
+
"triomphe",
|
|
1662
|
+
"xshell",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "oxiarc-core"
|
|
1667
|
+
version = "0.2.8"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "8c3a93341d720329f503b2743970f11695ac25dc0661ccc94cb43e077545e23a"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"thiserror",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "oxiarc-core"
|
|
1676
|
+
version = "0.3.3"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "870de52f96c9df5474080d34ca0c32f5ca1db3e3bd9d6b614436090e86ae7f0c"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"thiserror",
|
|
1681
|
+
]
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "oxiarc-deflate"
|
|
1685
|
+
version = "0.3.3"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "0e60be269260ace329e30e5b78d100bc044f569d199ae10b214a8d53ea972c5b"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"oxiarc-core 0.3.3",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "oxiarc-lz4"
|
|
1694
|
+
version = "0.2.8"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "5445f78ef4955e6027558b45c6c6dd4085d0e8c2c955aa2266e3f91f4b6da8b5"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"oxiarc-core 0.2.8",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "oxiarc-lz4"
|
|
1703
|
+
version = "0.3.3"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "57d2cad6a510d72b43af1cb787c21c7429fc93c7faa11baabc8766cdf8df0dc5"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"oxiarc-core 0.3.3",
|
|
1708
|
+
]
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "oxiarc-zstd"
|
|
1712
|
+
version = "0.2.8"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "843bcf00f00acaa23607a0feba6713951889c9d52233971c59f77cab5ccc9a9e"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"oxiarc-core 0.2.8",
|
|
1717
|
+
]
|
|
1718
|
+
|
|
1719
|
+
[[package]]
|
|
1720
|
+
name = "oxiarc-zstd"
|
|
1721
|
+
version = "0.3.3"
|
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
+
checksum = "654fea99a90d0f682e558c8bd2d0dd88df58eed6493e87f743685a0b378c3ca4"
|
|
1724
|
+
dependencies = [
|
|
1725
|
+
"oxiarc-core 0.3.3",
|
|
1726
|
+
]
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "oxiblas-blas"
|
|
1730
|
+
version = "0.2.1"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "5b20733edf8bd497233628af75afdb7c5f29157d8dc82e9fdc6c0e862e6e6957"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"bytemuck",
|
|
1735
|
+
"num-complex 0.4.6",
|
|
1736
|
+
"num-traits",
|
|
1737
|
+
"oxiblas-core",
|
|
1738
|
+
"oxiblas-matrix",
|
|
1739
|
+
]
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "oxiblas-core"
|
|
1743
|
+
version = "0.2.1"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "a2d36abb8c720acdb430c810434582b558f0dfdfcc34b73b64e7cd4f641b1ea1"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"bytemuck",
|
|
1748
|
+
"libc",
|
|
1749
|
+
"num-complex 0.4.6",
|
|
1750
|
+
"num-traits",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "oxiblas-lapack"
|
|
1755
|
+
version = "0.2.1"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "3d69ba187daaf0d0e38d331c6fba35f5584296160e78d832b8e39c8e6c93b46f"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"bytemuck",
|
|
1760
|
+
"num-complex 0.4.6",
|
|
1761
|
+
"num-traits",
|
|
1762
|
+
"oxiblas-blas",
|
|
1763
|
+
"oxiblas-core",
|
|
1764
|
+
"oxiblas-matrix",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "oxiblas-matrix"
|
|
1769
|
+
version = "0.2.1"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "75bf5ed8ca26065e07b83f98009447302cd01926c88e829d7b5bc50e97d0ff19"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"bytemuck",
|
|
1774
|
+
"num-complex 0.4.6",
|
|
1775
|
+
"num-traits",
|
|
1776
|
+
"oxiblas-core",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "oxiblas-ndarray"
|
|
1781
|
+
version = "0.2.1"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "ee20cc93be5eefffa6ee2ba283047cf0558ee1fdf5c73507859a9a6dc36df70f"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"bytemuck",
|
|
1786
|
+
"ndarray 0.17.2",
|
|
1787
|
+
"num-complex 0.4.6",
|
|
1788
|
+
"oxiblas-blas",
|
|
1789
|
+
"oxiblas-core",
|
|
1790
|
+
"oxiblas-lapack",
|
|
1791
|
+
"oxiblas-matrix",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "oxicode"
|
|
1796
|
+
version = "0.2.4"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "84bec9e5cb5e96ebc96f80ccd9d7670764f5a7371827884a1f4fc7eb844762c3"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"oxicode_derive",
|
|
1801
|
+
"serde",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "oxicode_derive"
|
|
1806
|
+
version = "0.2.4"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "886dc0e3827c07f80b335680f9cbc2cde267544d82e607b2cfd8fd463ff0fbf7"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"proc-macro2 1.0.106",
|
|
1811
|
+
"quote 1.0.45",
|
|
1812
|
+
"syn 2.0.118",
|
|
1813
|
+
]
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "parking_lot"
|
|
1817
|
+
version = "0.12.5"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1820
|
+
dependencies = [
|
|
1821
|
+
"lock_api",
|
|
1822
|
+
"parking_lot_core",
|
|
1823
|
+
]
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "parking_lot_core"
|
|
1827
|
+
version = "0.9.12"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1830
|
+
dependencies = [
|
|
1831
|
+
"cfg-if",
|
|
1832
|
+
"libc",
|
|
1833
|
+
"redox_syscall",
|
|
1834
|
+
"smallvec",
|
|
1835
|
+
"windows-link",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "paste"
|
|
1840
|
+
version = "1.0.15"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "petgraph"
|
|
1846
|
+
version = "0.8.3"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
1849
|
+
dependencies = [
|
|
1850
|
+
"fixedbitset",
|
|
1851
|
+
"hashbrown 0.15.5",
|
|
1852
|
+
"indexmap",
|
|
1853
|
+
"serde",
|
|
1854
|
+
"serde_derive",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "pin-project-lite"
|
|
1859
|
+
version = "0.2.17"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "portable-atomic"
|
|
1865
|
+
version = "1.13.1"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "portable-atomic-util"
|
|
1871
|
+
version = "0.2.7"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"portable-atomic",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "ppv-lite86"
|
|
1880
|
+
version = "0.2.21"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"zerocopy",
|
|
1885
|
+
]
|
|
1886
|
+
|
|
1887
|
+
[[package]]
|
|
1888
|
+
name = "proc-macro-error"
|
|
1889
|
+
version = "1.0.4"
|
|
1890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
1892
|
+
dependencies = [
|
|
1893
|
+
"proc-macro-error-attr",
|
|
1894
|
+
"proc-macro2 1.0.106",
|
|
1895
|
+
"quote 1.0.45",
|
|
1896
|
+
"syn 1.0.109",
|
|
1897
|
+
"version_check",
|
|
1898
|
+
]
|
|
1899
|
+
|
|
1900
|
+
[[package]]
|
|
1901
|
+
name = "proc-macro-error-attr"
|
|
1902
|
+
version = "1.0.4"
|
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
1905
|
+
dependencies = [
|
|
1906
|
+
"proc-macro2 1.0.106",
|
|
1907
|
+
"quote 1.0.45",
|
|
1908
|
+
"version_check",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "proc-macro2"
|
|
1913
|
+
version = "0.4.30"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"unicode-xid 0.1.0",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "proc-macro2"
|
|
1922
|
+
version = "1.0.106"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"unicode-ident",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "pyo3"
|
|
1931
|
+
version = "0.22.6"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"cfg-if",
|
|
1936
|
+
"indoc",
|
|
1937
|
+
"libc",
|
|
1938
|
+
"memoffset",
|
|
1939
|
+
"once_cell",
|
|
1940
|
+
"portable-atomic",
|
|
1941
|
+
"pyo3-build-config",
|
|
1942
|
+
"pyo3-ffi",
|
|
1943
|
+
"pyo3-macros",
|
|
1944
|
+
"unindent",
|
|
1945
|
+
]
|
|
1946
|
+
|
|
1947
|
+
[[package]]
|
|
1948
|
+
name = "pyo3-build-config"
|
|
1949
|
+
version = "0.22.6"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
1952
|
+
dependencies = [
|
|
1953
|
+
"once_cell",
|
|
1954
|
+
"target-lexicon",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "pyo3-ffi"
|
|
1959
|
+
version = "0.22.6"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"libc",
|
|
1964
|
+
"pyo3-build-config",
|
|
1965
|
+
]
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "pyo3-macros"
|
|
1969
|
+
version = "0.22.6"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"proc-macro2 1.0.106",
|
|
1974
|
+
"pyo3-macros-backend",
|
|
1975
|
+
"quote 1.0.45",
|
|
1976
|
+
"syn 2.0.118",
|
|
1977
|
+
]
|
|
1978
|
+
|
|
1979
|
+
[[package]]
|
|
1980
|
+
name = "pyo3-macros-backend"
|
|
1981
|
+
version = "0.22.6"
|
|
1982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
1984
|
+
dependencies = [
|
|
1985
|
+
"heck",
|
|
1986
|
+
"proc-macro2 1.0.106",
|
|
1987
|
+
"pyo3-build-config",
|
|
1988
|
+
"quote 1.0.45",
|
|
1989
|
+
"syn 2.0.118",
|
|
1990
|
+
]
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "q1tsim"
|
|
1994
|
+
version = "0.5.0"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "eaa4e8af8f290adf13e403034c4c210888bd92b34c386d19e783d890fbd92fd5"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"ndarray 0.12.1",
|
|
1999
|
+
"num-complex 0.2.4",
|
|
2000
|
+
"num-traits",
|
|
2001
|
+
"q1tsim-derive",
|
|
2002
|
+
"rand 0.7.3",
|
|
2003
|
+
"rand_distr 0.2.2",
|
|
2004
|
+
"regex 1.12.4",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "q1tsim-derive"
|
|
2009
|
+
version = "0.1.0"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "f8cd71f021cc842eacc5e8af8ae62340b453b5092cf8e0737c9c0513d2c77059"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"quote 0.6.13",
|
|
2014
|
+
"syn 0.14.9",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "qasm"
|
|
2019
|
+
version = "1.0.0"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "a25b59a14eea9f3ab832595bdf051c25fe331f225b2fb1b7b06165235342714e"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"regex 0.2.11",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "qoqo_calculator"
|
|
2028
|
+
version = "1.9.0"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "19fa320d34bba31b7b7a839fe84e3a607fe3ffab88fc3cf28b9e98c752674f85"
|
|
2031
|
+
dependencies = [
|
|
2032
|
+
"num-complex 0.4.6",
|
|
2033
|
+
"schemars",
|
|
2034
|
+
"serde",
|
|
2035
|
+
"thiserror",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "quantrs2"
|
|
2040
|
+
version = "0.2.0"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "94b4fadc7c36c66d89008807280de7e6934f75c88fc910caebafab1acbeaeaa9"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"chrono",
|
|
2045
|
+
"num_cpus",
|
|
2046
|
+
"quantrs2-core",
|
|
2047
|
+
"rustc_version",
|
|
2048
|
+
]
|
|
2049
|
+
|
|
2050
|
+
[[package]]
|
|
2051
|
+
name = "quantrs2-core"
|
|
2052
|
+
version = "0.2.0"
|
|
2053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
+
checksum = "b4abcbd3cd92fc028a48c891046081b6331a9508b627780011d62b3aed49fb07"
|
|
2055
|
+
dependencies = [
|
|
2056
|
+
"chrono",
|
|
2057
|
+
"num_cpus",
|
|
2058
|
+
"optirs-core",
|
|
2059
|
+
"oxiarc-deflate",
|
|
2060
|
+
"oxicode",
|
|
2061
|
+
"regex 1.12.4",
|
|
2062
|
+
"rustc-hash 2.1.2",
|
|
2063
|
+
"scirs2-autograd",
|
|
2064
|
+
"scirs2-core 0.5.0",
|
|
2065
|
+
"scirs2-linalg 0.5.0",
|
|
2066
|
+
"scirs2-optimize 0.5.0",
|
|
2067
|
+
"scirs2-sparse 0.5.0",
|
|
2068
|
+
"scirs2-special",
|
|
2069
|
+
"serde",
|
|
2070
|
+
"serde_json",
|
|
2071
|
+
"smallvec",
|
|
2072
|
+
"sysinfo 0.39.3",
|
|
2073
|
+
"thiserror",
|
|
2074
|
+
"tokio",
|
|
2075
|
+
"uuid",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "quickcheck"
|
|
2080
|
+
version = "1.1.0"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "95c589f335db0f6aaa168a7cd27b1fc6920f5e1470c804f814d9cd6e62a0f70b"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"env_logger",
|
|
2085
|
+
"log",
|
|
2086
|
+
"rand 0.10.1",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "quote"
|
|
2091
|
+
version = "0.6.13"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"proc-macro2 0.4.30",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "quote"
|
|
2100
|
+
version = "1.0.45"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"proc-macro2 1.0.106",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "r-efi"
|
|
2109
|
+
version = "5.3.0"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "r-efi"
|
|
2115
|
+
version = "6.0.0"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "ra_ap_limit"
|
|
2121
|
+
version = "0.0.188"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "92d33758724f997689f84146e5401e28d875a061804f861f113696f44f5232aa"
|
|
2124
|
+
|
|
2125
|
+
[[package]]
|
|
2126
|
+
name = "rand"
|
|
2127
|
+
version = "0.7.3"
|
|
2128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
+
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
|
2130
|
+
dependencies = [
|
|
2131
|
+
"getrandom 0.1.16",
|
|
2132
|
+
"libc",
|
|
2133
|
+
"rand_chacha 0.2.2",
|
|
2134
|
+
"rand_core 0.5.1",
|
|
2135
|
+
"rand_hc",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "rand"
|
|
2140
|
+
version = "0.8.6"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"libc",
|
|
2145
|
+
"rand_chacha 0.3.1",
|
|
2146
|
+
"rand_core 0.6.4",
|
|
2147
|
+
]
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "rand"
|
|
2151
|
+
version = "0.9.4"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"rand_chacha 0.9.0",
|
|
2156
|
+
"rand_core 0.9.5",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "rand"
|
|
2161
|
+
version = "0.10.1"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"chacha20",
|
|
2166
|
+
"getrandom 0.4.3",
|
|
2167
|
+
"rand_core 0.10.1",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "rand_chacha"
|
|
2172
|
+
version = "0.2.2"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
|
2175
|
+
dependencies = [
|
|
2176
|
+
"ppv-lite86",
|
|
2177
|
+
"rand_core 0.5.1",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "rand_chacha"
|
|
2182
|
+
version = "0.3.1"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"ppv-lite86",
|
|
2187
|
+
"rand_core 0.6.4",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "rand_chacha"
|
|
2192
|
+
version = "0.9.0"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"ppv-lite86",
|
|
2197
|
+
"rand_core 0.9.5",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "rand_chacha"
|
|
2202
|
+
version = "0.10.0"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"ppv-lite86",
|
|
2207
|
+
"rand_core 0.10.1",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "rand_core"
|
|
2212
|
+
version = "0.5.1"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
|
2215
|
+
dependencies = [
|
|
2216
|
+
"getrandom 0.1.16",
|
|
2217
|
+
]
|
|
2218
|
+
|
|
2219
|
+
[[package]]
|
|
2220
|
+
name = "rand_core"
|
|
2221
|
+
version = "0.6.4"
|
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2224
|
+
dependencies = [
|
|
2225
|
+
"getrandom 0.2.17",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "rand_core"
|
|
2230
|
+
version = "0.9.5"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"getrandom 0.3.4",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "rand_core"
|
|
2239
|
+
version = "0.10.1"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "rand_distr"
|
|
2245
|
+
version = "0.2.2"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "96977acbdd3a6576fb1d27391900035bf3863d4a16422973a409b488cf29ffb2"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"rand 0.7.3",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "rand_distr"
|
|
2254
|
+
version = "0.4.3"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"num-traits",
|
|
2259
|
+
"rand 0.8.6",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "rand_distr"
|
|
2264
|
+
version = "0.5.1"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"num-traits",
|
|
2269
|
+
"rand 0.9.4",
|
|
2270
|
+
]
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "rand_distr"
|
|
2274
|
+
version = "0.6.0"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
|
|
2277
|
+
dependencies = [
|
|
2278
|
+
"num-traits",
|
|
2279
|
+
"rand 0.10.1",
|
|
2280
|
+
]
|
|
2281
|
+
|
|
2282
|
+
[[package]]
|
|
2283
|
+
name = "rand_hc"
|
|
2284
|
+
version = "0.2.0"
|
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
+
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
|
2287
|
+
dependencies = [
|
|
2288
|
+
"rand_core 0.5.1",
|
|
2289
|
+
]
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "rand_xoshiro"
|
|
2293
|
+
version = "0.7.0"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"rand_core 0.9.5",
|
|
2298
|
+
]
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "rawpointer"
|
|
2302
|
+
version = "0.1.0"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "ebac11a9d2e11f2af219b8b8d833b76b1ea0e054aa0e8d8e9e4cbde353bdf019"
|
|
2305
|
+
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "rawpointer"
|
|
2308
|
+
version = "0.2.1"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "rayon"
|
|
2314
|
+
version = "1.12.0"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2317
|
+
dependencies = [
|
|
2318
|
+
"either",
|
|
2319
|
+
"rayon-core",
|
|
2320
|
+
]
|
|
2321
|
+
|
|
2322
|
+
[[package]]
|
|
2323
|
+
name = "rayon-core"
|
|
2324
|
+
version = "1.13.0"
|
|
2325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2327
|
+
dependencies = [
|
|
2328
|
+
"crossbeam-deque",
|
|
2329
|
+
"crossbeam-utils",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "redox_syscall"
|
|
2334
|
+
version = "0.5.18"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"bitflags 2.13.0",
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
[[package]]
|
|
2342
|
+
name = "ref-cast"
|
|
2343
|
+
version = "1.0.25"
|
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2346
|
+
dependencies = [
|
|
2347
|
+
"ref-cast-impl",
|
|
2348
|
+
]
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "ref-cast-impl"
|
|
2352
|
+
version = "1.0.25"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"proc-macro2 1.0.106",
|
|
2357
|
+
"quote 1.0.45",
|
|
2358
|
+
"syn 2.0.118",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "regex"
|
|
2363
|
+
version = "0.2.11"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"aho-corasick 0.6.10",
|
|
2368
|
+
"memchr",
|
|
2369
|
+
"regex-syntax 0.5.6",
|
|
2370
|
+
"thread_local",
|
|
2371
|
+
"utf8-ranges",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "regex"
|
|
2376
|
+
version = "1.12.4"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"aho-corasick 1.1.4",
|
|
2381
|
+
"memchr",
|
|
2382
|
+
"regex-automata",
|
|
2383
|
+
"regex-syntax 0.8.11",
|
|
2384
|
+
]
|
|
2385
|
+
|
|
2386
|
+
[[package]]
|
|
2387
|
+
name = "regex-automata"
|
|
2388
|
+
version = "0.4.14"
|
|
2389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2391
|
+
dependencies = [
|
|
2392
|
+
"aho-corasick 1.1.4",
|
|
2393
|
+
"memchr",
|
|
2394
|
+
"regex-syntax 0.8.11",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "regex-syntax"
|
|
2399
|
+
version = "0.5.6"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"ucd-util",
|
|
2404
|
+
]
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "regex-syntax"
|
|
2408
|
+
version = "0.8.11"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2411
|
+
|
|
2412
|
+
[[package]]
|
|
2413
|
+
name = "roqoqo"
|
|
2414
|
+
version = "1.22.1"
|
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
+
checksum = "de4e958161f84906c74df03693355c78eb66f26ac00e401bdb76e31f0e842148"
|
|
2417
|
+
dependencies = [
|
|
2418
|
+
"bincode",
|
|
2419
|
+
"nalgebra 0.35.0",
|
|
2420
|
+
"ndarray 0.17.2",
|
|
2421
|
+
"num-complex 0.4.6",
|
|
2422
|
+
"petgraph",
|
|
2423
|
+
"proc-macro2 1.0.106",
|
|
2424
|
+
"qoqo_calculator",
|
|
2425
|
+
"quote 1.0.45",
|
|
2426
|
+
"rand 0.10.1",
|
|
2427
|
+
"roqoqo-derive",
|
|
2428
|
+
"serde",
|
|
2429
|
+
"struqture 1.13.4",
|
|
2430
|
+
"struqture 2.6.0",
|
|
2431
|
+
"syn 2.0.118",
|
|
2432
|
+
"thiserror",
|
|
2433
|
+
]
|
|
2434
|
+
|
|
2435
|
+
[[package]]
|
|
2436
|
+
name = "roqoqo-derive"
|
|
2437
|
+
version = "1.22.1"
|
|
2438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
+
checksum = "2dc89bc2b4232001684b62552a239479c18ee1930e3bb83282a886322c56f318"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"proc-macro2 1.0.106",
|
|
2442
|
+
"quote 1.0.45",
|
|
2443
|
+
"syn 2.0.118",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "rowan"
|
|
2448
|
+
version = "0.15.15"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "32a58fa8a7ccff2aec4f39cc45bf5f985cec7125ab271cf681c279fd00192b49"
|
|
2451
|
+
dependencies = [
|
|
2452
|
+
"countme",
|
|
2453
|
+
"hashbrown 0.14.5",
|
|
2454
|
+
"memoffset",
|
|
2455
|
+
"rustc-hash 1.1.0",
|
|
2456
|
+
"text-size",
|
|
2457
|
+
]
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "rustc-hash"
|
|
2461
|
+
version = "1.1.0"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "rustc-hash"
|
|
2467
|
+
version = "2.1.2"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2470
|
+
|
|
2471
|
+
[[package]]
|
|
2472
|
+
name = "rustc_version"
|
|
2473
|
+
version = "0.4.1"
|
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2476
|
+
dependencies = [
|
|
2477
|
+
"semver",
|
|
2478
|
+
]
|
|
2479
|
+
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "rustix"
|
|
2482
|
+
version = "1.1.4"
|
|
2483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2485
|
+
dependencies = [
|
|
2486
|
+
"bitflags 2.13.0",
|
|
2487
|
+
"errno",
|
|
2488
|
+
"libc",
|
|
2489
|
+
"linux-raw-sys",
|
|
2490
|
+
"windows-sys 0.61.2",
|
|
2491
|
+
]
|
|
2492
|
+
|
|
2493
|
+
[[package]]
|
|
2494
|
+
name = "rustversion"
|
|
2495
|
+
version = "1.0.22"
|
|
2496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "ryu"
|
|
2501
|
+
version = "1.0.23"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2504
|
+
|
|
2505
|
+
[[package]]
|
|
2506
|
+
name = "safe_arch"
|
|
2507
|
+
version = "0.7.4"
|
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
2510
|
+
dependencies = [
|
|
2511
|
+
"bytemuck",
|
|
2512
|
+
]
|
|
2513
|
+
|
|
2514
|
+
[[package]]
|
|
2515
|
+
name = "safe_arch"
|
|
2516
|
+
version = "1.0.0"
|
|
2517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
+
checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
|
|
2519
|
+
dependencies = [
|
|
2520
|
+
"bytemuck",
|
|
2521
|
+
]
|
|
2522
|
+
|
|
2523
|
+
[[package]]
|
|
2524
|
+
name = "schemars"
|
|
2525
|
+
version = "1.2.1"
|
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
2528
|
+
dependencies = [
|
|
2529
|
+
"dyn-clone",
|
|
2530
|
+
"ref-cast",
|
|
2531
|
+
"schemars_derive",
|
|
2532
|
+
"serde",
|
|
2533
|
+
"serde_json",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "schemars_derive"
|
|
2538
|
+
version = "1.2.1"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
|
|
2541
|
+
dependencies = [
|
|
2542
|
+
"proc-macro2 1.0.106",
|
|
2543
|
+
"quote 1.0.45",
|
|
2544
|
+
"serde_derive_internals",
|
|
2545
|
+
"syn 2.0.118",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "scirs2-autograd"
|
|
2550
|
+
version = "0.5.0"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "909c85231bd86ab930c984d1684058d722bad5aa4f63cdfaa129e368300b040c"
|
|
2553
|
+
dependencies = [
|
|
2554
|
+
"approx",
|
|
2555
|
+
"libc",
|
|
2556
|
+
"matrixmultiply 0.3.10",
|
|
2557
|
+
"num",
|
|
2558
|
+
"once_cell",
|
|
2559
|
+
"parking_lot",
|
|
2560
|
+
"rustc-hash 2.1.2",
|
|
2561
|
+
"scirs2-core 0.5.0",
|
|
2562
|
+
"serde",
|
|
2563
|
+
"serde_json",
|
|
2564
|
+
"smallvec",
|
|
2565
|
+
"special",
|
|
2566
|
+
"thiserror",
|
|
2567
|
+
"toml",
|
|
2568
|
+
"uuid",
|
|
2569
|
+
]
|
|
2570
|
+
|
|
2571
|
+
[[package]]
|
|
2572
|
+
name = "scirs2-core"
|
|
2573
|
+
version = "0.4.4"
|
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
+
checksum = "1752aacbc47e36e4cf43d47238ac20694c4d5fd9980c472324f07e1c30a35fb7"
|
|
2576
|
+
dependencies = [
|
|
2577
|
+
"cc",
|
|
2578
|
+
"chrono",
|
|
2579
|
+
"crc32fast",
|
|
2580
|
+
"crossbeam",
|
|
2581
|
+
"crossbeam-deque",
|
|
2582
|
+
"crossbeam-utils",
|
|
2583
|
+
"getrandom 0.3.4",
|
|
2584
|
+
"getrandom 0.4.3",
|
|
2585
|
+
"ndarray 0.17.2",
|
|
2586
|
+
"ndarray-rand",
|
|
2587
|
+
"num-complex 0.4.6",
|
|
2588
|
+
"num-integer",
|
|
2589
|
+
"num-traits",
|
|
2590
|
+
"num_cpus",
|
|
2591
|
+
"once_cell",
|
|
2592
|
+
"oxiarc-lz4 0.2.8",
|
|
2593
|
+
"oxiarc-zstd 0.2.8",
|
|
2594
|
+
"oxiblas-blas",
|
|
2595
|
+
"oxiblas-lapack",
|
|
2596
|
+
"oxiblas-ndarray",
|
|
2597
|
+
"parking_lot",
|
|
2598
|
+
"rand 0.10.1",
|
|
2599
|
+
"rand_chacha 0.10.0",
|
|
2600
|
+
"rand_distr 0.6.0",
|
|
2601
|
+
"rayon",
|
|
2602
|
+
"regex 1.12.4",
|
|
2603
|
+
"serde",
|
|
2604
|
+
"serde_json",
|
|
2605
|
+
"statrs",
|
|
2606
|
+
"thiserror",
|
|
2607
|
+
"uuid",
|
|
2608
|
+
"wide 1.5.0",
|
|
2609
|
+
"windows-sys 0.61.2",
|
|
2610
|
+
]
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "scirs2-core"
|
|
2614
|
+
version = "0.5.0"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "e3c866cb58a961e8df3aab16d29ecec91c6867d97b5c007f8d4a60a01eec3af2"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"cached",
|
|
2619
|
+
"chrono",
|
|
2620
|
+
"crc32fast",
|
|
2621
|
+
"crossbeam",
|
|
2622
|
+
"crossbeam-deque",
|
|
2623
|
+
"crossbeam-utils",
|
|
2624
|
+
"getrandom 0.3.4",
|
|
2625
|
+
"getrandom 0.4.3",
|
|
2626
|
+
"ndarray 0.17.2",
|
|
2627
|
+
"ndarray-rand",
|
|
2628
|
+
"num-complex 0.4.6",
|
|
2629
|
+
"num-integer",
|
|
2630
|
+
"num-traits",
|
|
2631
|
+
"num_cpus",
|
|
2632
|
+
"once_cell",
|
|
2633
|
+
"oxiarc-lz4 0.3.3",
|
|
2634
|
+
"oxiarc-zstd 0.3.3",
|
|
2635
|
+
"oxiblas-blas",
|
|
2636
|
+
"oxiblas-lapack",
|
|
2637
|
+
"oxiblas-ndarray",
|
|
2638
|
+
"oxicode",
|
|
2639
|
+
"parking_lot",
|
|
2640
|
+
"rand 0.10.1",
|
|
2641
|
+
"rand_chacha 0.10.0",
|
|
2642
|
+
"rand_distr 0.6.0",
|
|
2643
|
+
"rayon",
|
|
2644
|
+
"regex 1.12.4",
|
|
2645
|
+
"serde",
|
|
2646
|
+
"serde_json",
|
|
2647
|
+
"statrs",
|
|
2648
|
+
"tempfile",
|
|
2649
|
+
"thiserror",
|
|
2650
|
+
"uuid",
|
|
2651
|
+
"wide 1.5.0",
|
|
2652
|
+
"windows-sys 0.61.2",
|
|
2653
|
+
]
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "scirs2-linalg"
|
|
2657
|
+
version = "0.4.4"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "0079a04139f3b839c0a79372bc7063a6de10c47889e44275a958550e4e84bac5"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"approx",
|
|
2662
|
+
"half",
|
|
2663
|
+
"num_cpus",
|
|
2664
|
+
"oxicode",
|
|
2665
|
+
"scirs2-core 0.4.4",
|
|
2666
|
+
"serde",
|
|
2667
|
+
"thiserror",
|
|
2668
|
+
]
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "scirs2-linalg"
|
|
2672
|
+
version = "0.5.0"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "bed189326c254b16d88a581bb54d78142252a449108c7a61eaad12ea00988910"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"approx",
|
|
2677
|
+
"half",
|
|
2678
|
+
"num_cpus",
|
|
2679
|
+
"oxicode",
|
|
2680
|
+
"scirs2-core 0.5.0",
|
|
2681
|
+
"serde",
|
|
2682
|
+
"thiserror",
|
|
2683
|
+
]
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "scirs2-metrics"
|
|
2687
|
+
version = "0.4.4"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "366c31d411f5a8bbc93649520e3c17920de200f42902d8ede42b974b8bac7b28"
|
|
2690
|
+
dependencies = [
|
|
2691
|
+
"approx",
|
|
2692
|
+
"chrono",
|
|
2693
|
+
"ciborium",
|
|
2694
|
+
"crossbeam-channel",
|
|
2695
|
+
"crossbeam-utils",
|
|
2696
|
+
"num_cpus",
|
|
2697
|
+
"parking_lot",
|
|
2698
|
+
"scirs2-core 0.4.4",
|
|
2699
|
+
"serde",
|
|
2700
|
+
"serde_json",
|
|
2701
|
+
"serde_yaml",
|
|
2702
|
+
"statrs",
|
|
2703
|
+
"thiserror",
|
|
2704
|
+
"toml",
|
|
2705
|
+
]
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "scirs2-neural"
|
|
2709
|
+
version = "0.4.4"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "ed07cb2ca4076930176bdf380b558cf0180342f57b71673d2f5bf404796aa602"
|
|
2712
|
+
dependencies = [
|
|
2713
|
+
"approx",
|
|
2714
|
+
"oxicode",
|
|
2715
|
+
"scirs2-core 0.4.4",
|
|
2716
|
+
"scirs2-linalg 0.4.4",
|
|
2717
|
+
"scirs2-metrics",
|
|
2718
|
+
"serde",
|
|
2719
|
+
"serde_json",
|
|
2720
|
+
"serde_yaml",
|
|
2721
|
+
"statrs",
|
|
2722
|
+
"thiserror",
|
|
2723
|
+
]
|
|
2724
|
+
|
|
2725
|
+
[[package]]
|
|
2726
|
+
name = "scirs2-optimize"
|
|
2727
|
+
version = "0.4.4"
|
|
2728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2729
|
+
checksum = "82961f6be4a023f4353af31aa33d32c16387a2b474bb7e8191a85460d4997346"
|
|
2730
|
+
dependencies = [
|
|
2731
|
+
"argmin",
|
|
2732
|
+
"scirs2-core 0.4.4",
|
|
2733
|
+
"scirs2-linalg 0.4.4",
|
|
2734
|
+
"scirs2-sparse 0.4.4",
|
|
2735
|
+
"scirs2-stats 0.4.4",
|
|
2736
|
+
"serde",
|
|
2737
|
+
"statrs",
|
|
2738
|
+
"thiserror",
|
|
2739
|
+
]
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "scirs2-optimize"
|
|
2743
|
+
version = "0.5.0"
|
|
2744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
+
checksum = "571b5980877233dd28cbb54edcc34d94db36caf6865bb3cedf5d0d5163b67bf0"
|
|
2746
|
+
dependencies = [
|
|
2747
|
+
"argmin",
|
|
2748
|
+
"scirs2-core 0.5.0",
|
|
2749
|
+
"scirs2-linalg 0.5.0",
|
|
2750
|
+
"scirs2-sparse 0.5.0",
|
|
2751
|
+
"scirs2-stats 0.5.0",
|
|
2752
|
+
"serde",
|
|
2753
|
+
"statrs",
|
|
2754
|
+
"thiserror",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "scirs2-sparse"
|
|
2759
|
+
version = "0.4.4"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "4e605261450b7ea3d4d1290d236e6903702c808b4721a244b1e6b51a3709bb8e"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"byteorder",
|
|
2764
|
+
"log",
|
|
2765
|
+
"num_cpus",
|
|
2766
|
+
"scirs2-core 0.4.4",
|
|
2767
|
+
"sprs",
|
|
2768
|
+
"thiserror",
|
|
2769
|
+
]
|
|
2770
|
+
|
|
2771
|
+
[[package]]
|
|
2772
|
+
name = "scirs2-sparse"
|
|
2773
|
+
version = "0.5.0"
|
|
2774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2775
|
+
checksum = "44faa2eddbdb770441c36920f27797c834c4a499b96f0ad07701e0a7c4b3b2b0"
|
|
2776
|
+
dependencies = [
|
|
2777
|
+
"byteorder",
|
|
2778
|
+
"log",
|
|
2779
|
+
"num_cpus",
|
|
2780
|
+
"scirs2-core 0.5.0",
|
|
2781
|
+
"sprs",
|
|
2782
|
+
"thiserror",
|
|
2783
|
+
]
|
|
2784
|
+
|
|
2785
|
+
[[package]]
|
|
2786
|
+
name = "scirs2-special"
|
|
2787
|
+
version = "0.5.0"
|
|
2788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2789
|
+
checksum = "c4cfdc7c755f9bd789ddb0e754c13bd63b4514f3e4fc5f415bdd105d0327933a"
|
|
2790
|
+
dependencies = [
|
|
2791
|
+
"approx",
|
|
2792
|
+
"lazy_static",
|
|
2793
|
+
"log",
|
|
2794
|
+
"scirs2-core 0.5.0",
|
|
2795
|
+
"serde",
|
|
2796
|
+
"statrs",
|
|
2797
|
+
"thiserror",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "scirs2-stats"
|
|
2802
|
+
version = "0.4.4"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "91326aa6b9e9b44aa0de1d6575fd10ecf18f3a3b0762532f471872a7a4d1c014"
|
|
2805
|
+
dependencies = [
|
|
2806
|
+
"chrono",
|
|
2807
|
+
"crossbeam",
|
|
2808
|
+
"either",
|
|
2809
|
+
"memmap2",
|
|
2810
|
+
"num_cpus",
|
|
2811
|
+
"quickcheck",
|
|
2812
|
+
"scirs2-core 0.4.4",
|
|
2813
|
+
"scirs2-linalg 0.4.4",
|
|
2814
|
+
"serde",
|
|
2815
|
+
"serde_json",
|
|
2816
|
+
"special",
|
|
2817
|
+
"statrs",
|
|
2818
|
+
"thiserror",
|
|
2819
|
+
]
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "scirs2-stats"
|
|
2823
|
+
version = "0.5.0"
|
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
+
checksum = "bc9cfabb53fcf2ee4ce3373f3ca166ea09da0f13dda37fabcf3980cc7891d745"
|
|
2826
|
+
dependencies = [
|
|
2827
|
+
"chrono",
|
|
2828
|
+
"crossbeam",
|
|
2829
|
+
"either",
|
|
2830
|
+
"memmap2",
|
|
2831
|
+
"num_cpus",
|
|
2832
|
+
"quickcheck",
|
|
2833
|
+
"scirs2-core 0.5.0",
|
|
2834
|
+
"scirs2-linalg 0.5.0",
|
|
2835
|
+
"serde",
|
|
2836
|
+
"serde_json",
|
|
2837
|
+
"special",
|
|
2838
|
+
"statrs",
|
|
2839
|
+
"thiserror",
|
|
2840
|
+
]
|
|
2841
|
+
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "scopeguard"
|
|
2844
|
+
version = "1.2.0"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "semver"
|
|
2850
|
+
version = "1.0.28"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "serde"
|
|
2856
|
+
version = "1.0.228"
|
|
2857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2859
|
+
dependencies = [
|
|
2860
|
+
"serde_core",
|
|
2861
|
+
"serde_derive",
|
|
2862
|
+
]
|
|
2863
|
+
|
|
2864
|
+
[[package]]
|
|
2865
|
+
name = "serde_core"
|
|
2866
|
+
version = "1.0.228"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2869
|
+
dependencies = [
|
|
2870
|
+
"serde_derive",
|
|
2871
|
+
]
|
|
2872
|
+
|
|
2873
|
+
[[package]]
|
|
2874
|
+
name = "serde_derive"
|
|
2875
|
+
version = "1.0.228"
|
|
2876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2878
|
+
dependencies = [
|
|
2879
|
+
"proc-macro2 1.0.106",
|
|
2880
|
+
"quote 1.0.45",
|
|
2881
|
+
"syn 2.0.118",
|
|
2882
|
+
]
|
|
2883
|
+
|
|
2884
|
+
[[package]]
|
|
2885
|
+
name = "serde_derive_internals"
|
|
2886
|
+
version = "0.29.1"
|
|
2887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2888
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
2889
|
+
dependencies = [
|
|
2890
|
+
"proc-macro2 1.0.106",
|
|
2891
|
+
"quote 1.0.45",
|
|
2892
|
+
"syn 2.0.118",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "serde_json"
|
|
2897
|
+
version = "1.0.150"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2900
|
+
dependencies = [
|
|
2901
|
+
"itoa",
|
|
2902
|
+
"memchr",
|
|
2903
|
+
"serde",
|
|
2904
|
+
"serde_core",
|
|
2905
|
+
"zmij",
|
|
2906
|
+
]
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "serde_spanned"
|
|
2910
|
+
version = "1.1.1"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
2913
|
+
dependencies = [
|
|
2914
|
+
"serde_core",
|
|
2915
|
+
]
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "serde_yaml"
|
|
2919
|
+
version = "0.9.34+deprecated"
|
|
2920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2922
|
+
dependencies = [
|
|
2923
|
+
"indexmap",
|
|
2924
|
+
"itoa",
|
|
2925
|
+
"ryu",
|
|
2926
|
+
"serde",
|
|
2927
|
+
"unsafe-libyaml",
|
|
2928
|
+
]
|
|
2929
|
+
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "sha2"
|
|
2932
|
+
version = "0.11.0"
|
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
2935
|
+
dependencies = [
|
|
2936
|
+
"cfg-if",
|
|
2937
|
+
"cpufeatures",
|
|
2938
|
+
"digest",
|
|
2939
|
+
]
|
|
2940
|
+
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "shlex"
|
|
2943
|
+
version = "2.0.1"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "signal-hook-registry"
|
|
2949
|
+
version = "1.4.8"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"errno",
|
|
2954
|
+
"libc",
|
|
2955
|
+
]
|
|
2956
|
+
|
|
2957
|
+
[[package]]
|
|
2958
|
+
name = "simba"
|
|
2959
|
+
version = "0.9.1"
|
|
2960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
+
checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
|
|
2962
|
+
dependencies = [
|
|
2963
|
+
"approx",
|
|
2964
|
+
"num-complex 0.4.6",
|
|
2965
|
+
"num-traits",
|
|
2966
|
+
"paste",
|
|
2967
|
+
"wide 0.7.33",
|
|
2968
|
+
]
|
|
2969
|
+
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "simba"
|
|
2972
|
+
version = "0.10.0"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "8f45c644a9f3a386f9288625d9f0c1e999e1acf07a37df35d0516c7f199d9cb2"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"approx",
|
|
2977
|
+
"num-complex 0.4.6",
|
|
2978
|
+
"num-traits",
|
|
2979
|
+
"wide 1.5.0",
|
|
2980
|
+
]
|
|
2981
|
+
|
|
2982
|
+
[[package]]
|
|
2983
|
+
name = "slab"
|
|
2984
|
+
version = "0.4.12"
|
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2987
|
+
|
|
2988
|
+
[[package]]
|
|
2989
|
+
name = "smallvec"
|
|
2990
|
+
version = "1.15.2"
|
|
2991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2992
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2993
|
+
|
|
2994
|
+
[[package]]
|
|
2995
|
+
name = "smol_str"
|
|
2996
|
+
version = "0.2.2"
|
|
2997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
|
2999
|
+
dependencies = [
|
|
3000
|
+
"serde",
|
|
3001
|
+
]
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "socket2"
|
|
3005
|
+
version = "0.6.4"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"libc",
|
|
3010
|
+
"windows-sys 0.61.2",
|
|
3011
|
+
]
|
|
3012
|
+
|
|
3013
|
+
[[package]]
|
|
3014
|
+
name = "special"
|
|
3015
|
+
version = "0.13.1"
|
|
3016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
|
+
checksum = "2059cab5d76b5fa47f0c847f889071627a78b4fb6d9c582b67d9afbc75006da5"
|
|
3018
|
+
dependencies = [
|
|
3019
|
+
"ellip",
|
|
3020
|
+
"lambert_w",
|
|
3021
|
+
"libm",
|
|
3022
|
+
]
|
|
3023
|
+
|
|
3024
|
+
[[package]]
|
|
3025
|
+
name = "sprs"
|
|
3026
|
+
version = "0.11.4"
|
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3028
|
+
checksum = "6dca58a33be2188d4edc71534f8bafa826e787cc28ca1c47f31be3423f0d6e55"
|
|
3029
|
+
dependencies = [
|
|
3030
|
+
"ndarray 0.17.2",
|
|
3031
|
+
"num-complex 0.4.6",
|
|
3032
|
+
"num-traits",
|
|
3033
|
+
"smallvec",
|
|
3034
|
+
]
|
|
3035
|
+
|
|
3036
|
+
[[package]]
|
|
3037
|
+
name = "statrs"
|
|
3038
|
+
version = "0.18.0"
|
|
3039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3040
|
+
checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
|
|
3041
|
+
dependencies = [
|
|
3042
|
+
"approx",
|
|
3043
|
+
"nalgebra 0.33.3",
|
|
3044
|
+
"num-traits",
|
|
3045
|
+
"rand 0.8.6",
|
|
3046
|
+
]
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "strsim"
|
|
3050
|
+
version = "0.11.1"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3053
|
+
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "struqture"
|
|
3056
|
+
version = "1.13.4"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "8c2da74b8d003595f06980583b82e94943f341e2b4dd4d6ea39577931269ee5c"
|
|
3059
|
+
dependencies = [
|
|
3060
|
+
"itertools 0.14.0",
|
|
3061
|
+
"ndarray 0.16.1",
|
|
3062
|
+
"num-complex 0.4.6",
|
|
3063
|
+
"qoqo_calculator",
|
|
3064
|
+
"schemars",
|
|
3065
|
+
"serde",
|
|
3066
|
+
"test-case",
|
|
3067
|
+
"thiserror",
|
|
3068
|
+
"tinyvec",
|
|
3069
|
+
]
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "struqture"
|
|
3073
|
+
version = "2.6.0"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "e4c48e9d87ee65ec5ecf3b49552bea2f833e335e920364a26bed15c68188e424"
|
|
3076
|
+
dependencies = [
|
|
3077
|
+
"indexmap",
|
|
3078
|
+
"itertools 0.15.0",
|
|
3079
|
+
"ndarray 0.17.2",
|
|
3080
|
+
"num-complex 0.4.6",
|
|
3081
|
+
"qoqo_calculator",
|
|
3082
|
+
"schemars",
|
|
3083
|
+
"serde",
|
|
3084
|
+
"struqture 1.13.4",
|
|
3085
|
+
"test-case",
|
|
3086
|
+
"thiserror",
|
|
3087
|
+
"tinyvec",
|
|
3088
|
+
]
|
|
3089
|
+
|
|
3090
|
+
[[package]]
|
|
3091
|
+
name = "syn"
|
|
3092
|
+
version = "0.14.9"
|
|
3093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
+
checksum = "261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741"
|
|
3095
|
+
dependencies = [
|
|
3096
|
+
"proc-macro2 0.4.30",
|
|
3097
|
+
"quote 0.6.13",
|
|
3098
|
+
"unicode-xid 0.1.0",
|
|
3099
|
+
]
|
|
3100
|
+
|
|
3101
|
+
[[package]]
|
|
3102
|
+
name = "syn"
|
|
3103
|
+
version = "1.0.109"
|
|
3104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3106
|
+
dependencies = [
|
|
3107
|
+
"proc-macro2 1.0.106",
|
|
3108
|
+
"quote 1.0.45",
|
|
3109
|
+
"unicode-ident",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "syn"
|
|
3114
|
+
version = "2.0.118"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"proc-macro2 1.0.106",
|
|
3119
|
+
"quote 1.0.45",
|
|
3120
|
+
"unicode-ident",
|
|
3121
|
+
]
|
|
3122
|
+
|
|
3123
|
+
[[package]]
|
|
3124
|
+
name = "sysinfo"
|
|
3125
|
+
version = "0.38.4"
|
|
3126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
+
checksum = "92ab6a2f8bfe508deb3c6406578252e491d299cbbf3bc0529ecc3313aee4a52f"
|
|
3128
|
+
dependencies = [
|
|
3129
|
+
"libc",
|
|
3130
|
+
"memchr",
|
|
3131
|
+
"ntapi",
|
|
3132
|
+
"objc2-core-foundation",
|
|
3133
|
+
"objc2-io-kit",
|
|
3134
|
+
"windows",
|
|
3135
|
+
]
|
|
3136
|
+
|
|
3137
|
+
[[package]]
|
|
3138
|
+
name = "sysinfo"
|
|
3139
|
+
version = "0.39.3"
|
|
3140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3141
|
+
checksum = "21d0d938c10fcda3e897e28aaddf4ab462375d411f4378cd63b1c945f69aba96"
|
|
3142
|
+
dependencies = [
|
|
3143
|
+
"libc",
|
|
3144
|
+
"memchr",
|
|
3145
|
+
"ntapi",
|
|
3146
|
+
"objc2-core-foundation",
|
|
3147
|
+
"objc2-io-kit",
|
|
3148
|
+
"objc2-open-directory",
|
|
3149
|
+
"windows",
|
|
3150
|
+
]
|
|
3151
|
+
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "target-lexicon"
|
|
3154
|
+
version = "0.12.16"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "tempfile"
|
|
3160
|
+
version = "3.27.0"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"fastrand",
|
|
3165
|
+
"getrandom 0.4.3",
|
|
3166
|
+
"once_cell",
|
|
3167
|
+
"rustix",
|
|
3168
|
+
"windows-sys 0.61.2",
|
|
3169
|
+
]
|
|
3170
|
+
|
|
3171
|
+
[[package]]
|
|
3172
|
+
name = "test-case"
|
|
3173
|
+
version = "3.3.1"
|
|
3174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
+
checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
|
|
3176
|
+
dependencies = [
|
|
3177
|
+
"test-case-macros",
|
|
3178
|
+
]
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "test-case-core"
|
|
3182
|
+
version = "3.3.1"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
|
|
3185
|
+
dependencies = [
|
|
3186
|
+
"cfg-if",
|
|
3187
|
+
"proc-macro2 1.0.106",
|
|
3188
|
+
"quote 1.0.45",
|
|
3189
|
+
"syn 2.0.118",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "test-case-macros"
|
|
3194
|
+
version = "3.3.1"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
|
|
3197
|
+
dependencies = [
|
|
3198
|
+
"proc-macro2 1.0.106",
|
|
3199
|
+
"quote 1.0.45",
|
|
3200
|
+
"syn 2.0.118",
|
|
3201
|
+
"test-case-core",
|
|
3202
|
+
]
|
|
3203
|
+
|
|
3204
|
+
[[package]]
|
|
3205
|
+
name = "text-size"
|
|
3206
|
+
version = "1.1.1"
|
|
3207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3208
|
+
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
|
3209
|
+
|
|
3210
|
+
[[package]]
|
|
3211
|
+
name = "thiserror"
|
|
3212
|
+
version = "2.0.18"
|
|
3213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3214
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3215
|
+
dependencies = [
|
|
3216
|
+
"thiserror-impl",
|
|
3217
|
+
]
|
|
3218
|
+
|
|
3219
|
+
[[package]]
|
|
3220
|
+
name = "thiserror-impl"
|
|
3221
|
+
version = "2.0.18"
|
|
3222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3223
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3224
|
+
dependencies = [
|
|
3225
|
+
"proc-macro2 1.0.106",
|
|
3226
|
+
"quote 1.0.45",
|
|
3227
|
+
"syn 2.0.118",
|
|
3228
|
+
]
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "thread_local"
|
|
3232
|
+
version = "0.3.6"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"lazy_static",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "tinyvec"
|
|
3241
|
+
version = "1.11.0"
|
|
3242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
3244
|
+
dependencies = [
|
|
3245
|
+
"serde_core",
|
|
3246
|
+
"tinyvec_macros",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "tinyvec_macros"
|
|
3251
|
+
version = "0.1.1"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3254
|
+
|
|
3255
|
+
[[package]]
|
|
3256
|
+
name = "tokio"
|
|
3257
|
+
version = "1.52.3"
|
|
3258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3259
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3260
|
+
dependencies = [
|
|
3261
|
+
"bytes",
|
|
3262
|
+
"libc",
|
|
3263
|
+
"mio",
|
|
3264
|
+
"parking_lot",
|
|
3265
|
+
"pin-project-lite",
|
|
3266
|
+
"signal-hook-registry",
|
|
3267
|
+
"socket2",
|
|
3268
|
+
"tokio-macros",
|
|
3269
|
+
"windows-sys 0.61.2",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "tokio-macros"
|
|
3274
|
+
version = "2.7.0"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3277
|
+
dependencies = [
|
|
3278
|
+
"proc-macro2 1.0.106",
|
|
3279
|
+
"quote 1.0.45",
|
|
3280
|
+
"syn 2.0.118",
|
|
3281
|
+
]
|
|
3282
|
+
|
|
3283
|
+
[[package]]
|
|
3284
|
+
name = "toml"
|
|
3285
|
+
version = "1.1.2+spec-1.1.0"
|
|
3286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
3288
|
+
dependencies = [
|
|
3289
|
+
"indexmap",
|
|
3290
|
+
"serde_core",
|
|
3291
|
+
"serde_spanned",
|
|
3292
|
+
"toml_datetime",
|
|
3293
|
+
"toml_parser",
|
|
3294
|
+
"toml_writer",
|
|
3295
|
+
"winnow",
|
|
3296
|
+
]
|
|
3297
|
+
|
|
3298
|
+
[[package]]
|
|
3299
|
+
name = "toml_datetime"
|
|
3300
|
+
version = "1.1.1+spec-1.1.0"
|
|
3301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
3303
|
+
dependencies = [
|
|
3304
|
+
"serde_core",
|
|
3305
|
+
]
|
|
3306
|
+
|
|
3307
|
+
[[package]]
|
|
3308
|
+
name = "toml_parser"
|
|
3309
|
+
version = "1.1.2+spec-1.1.0"
|
|
3310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3312
|
+
dependencies = [
|
|
3313
|
+
"winnow",
|
|
3314
|
+
]
|
|
3315
|
+
|
|
3316
|
+
[[package]]
|
|
3317
|
+
name = "toml_writer"
|
|
3318
|
+
version = "1.1.1+spec-1.1.0"
|
|
3319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
3321
|
+
|
|
3322
|
+
[[package]]
|
|
3323
|
+
name = "triomphe"
|
|
3324
|
+
version = "0.1.11"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3"
|
|
3327
|
+
|
|
3328
|
+
[[package]]
|
|
3329
|
+
name = "typenum"
|
|
3330
|
+
version = "1.20.1"
|
|
3331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
3333
|
+
|
|
3334
|
+
[[package]]
|
|
3335
|
+
name = "ucd-util"
|
|
3336
|
+
version = "0.1.10"
|
|
3337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3338
|
+
checksum = "abd2fc5d32b590614af8b0a20d837f32eca055edd0bbead59a9cfe80858be003"
|
|
3339
|
+
|
|
3340
|
+
[[package]]
|
|
3341
|
+
name = "unicode-ident"
|
|
3342
|
+
version = "1.0.24"
|
|
3343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3344
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3345
|
+
|
|
3346
|
+
[[package]]
|
|
3347
|
+
name = "unicode-properties"
|
|
3348
|
+
version = "0.1.4"
|
|
3349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
3351
|
+
|
|
3352
|
+
[[package]]
|
|
3353
|
+
name = "unicode-segmentation"
|
|
3354
|
+
version = "1.13.3"
|
|
3355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
3357
|
+
|
|
3358
|
+
[[package]]
|
|
3359
|
+
name = "unicode-width"
|
|
3360
|
+
version = "0.1.14"
|
|
3361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3363
|
+
|
|
3364
|
+
[[package]]
|
|
3365
|
+
name = "unicode-width"
|
|
3366
|
+
version = "0.2.2"
|
|
3367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3369
|
+
|
|
3370
|
+
[[package]]
|
|
3371
|
+
name = "unicode-xid"
|
|
3372
|
+
version = "0.1.0"
|
|
3373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
+
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
|
|
3375
|
+
|
|
3376
|
+
[[package]]
|
|
3377
|
+
name = "unicode-xid"
|
|
3378
|
+
version = "0.2.6"
|
|
3379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3381
|
+
|
|
3382
|
+
[[package]]
|
|
3383
|
+
name = "unindent"
|
|
3384
|
+
version = "0.2.4"
|
|
3385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3387
|
+
|
|
3388
|
+
[[package]]
|
|
3389
|
+
name = "unsafe-libyaml"
|
|
3390
|
+
version = "0.2.11"
|
|
3391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3393
|
+
|
|
3394
|
+
[[package]]
|
|
3395
|
+
name = "unty"
|
|
3396
|
+
version = "0.0.4"
|
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
3399
|
+
|
|
3400
|
+
[[package]]
|
|
3401
|
+
name = "utf8-ranges"
|
|
3402
|
+
version = "1.0.5"
|
|
3403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
+
checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
|
|
3405
|
+
|
|
3406
|
+
[[package]]
|
|
3407
|
+
name = "utf8parse"
|
|
3408
|
+
version = "0.2.2"
|
|
3409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3410
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3411
|
+
|
|
3412
|
+
[[package]]
|
|
3413
|
+
name = "uuid"
|
|
3414
|
+
version = "1.23.3"
|
|
3415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
3417
|
+
dependencies = [
|
|
3418
|
+
"getrandom 0.4.3",
|
|
3419
|
+
"js-sys",
|
|
3420
|
+
"serde_core",
|
|
3421
|
+
"wasm-bindgen",
|
|
3422
|
+
]
|
|
3423
|
+
|
|
3424
|
+
[[package]]
|
|
3425
|
+
name = "version_check"
|
|
3426
|
+
version = "0.9.5"
|
|
3427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3429
|
+
|
|
3430
|
+
[[package]]
|
|
3431
|
+
name = "virtue"
|
|
3432
|
+
version = "0.0.18"
|
|
3433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3434
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "wasi"
|
|
3438
|
+
version = "0.9.0+wasi-snapshot-preview1"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "wasi"
|
|
3444
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3447
|
+
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "wasip2"
|
|
3450
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"wit-bindgen",
|
|
3455
|
+
]
|
|
3456
|
+
|
|
3457
|
+
[[package]]
|
|
3458
|
+
name = "wasm-bindgen"
|
|
3459
|
+
version = "0.2.125"
|
|
3460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3461
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
3462
|
+
dependencies = [
|
|
3463
|
+
"cfg-if",
|
|
3464
|
+
"once_cell",
|
|
3465
|
+
"rustversion",
|
|
3466
|
+
"wasm-bindgen-macro",
|
|
3467
|
+
"wasm-bindgen-shared",
|
|
3468
|
+
]
|
|
3469
|
+
|
|
3470
|
+
[[package]]
|
|
3471
|
+
name = "wasm-bindgen-macro"
|
|
3472
|
+
version = "0.2.125"
|
|
3473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3474
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
3475
|
+
dependencies = [
|
|
3476
|
+
"quote 1.0.45",
|
|
3477
|
+
"wasm-bindgen-macro-support",
|
|
3478
|
+
]
|
|
3479
|
+
|
|
3480
|
+
[[package]]
|
|
3481
|
+
name = "wasm-bindgen-macro-support"
|
|
3482
|
+
version = "0.2.125"
|
|
3483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3484
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
3485
|
+
dependencies = [
|
|
3486
|
+
"bumpalo",
|
|
3487
|
+
"proc-macro2 1.0.106",
|
|
3488
|
+
"quote 1.0.45",
|
|
3489
|
+
"syn 2.0.118",
|
|
3490
|
+
"wasm-bindgen-shared",
|
|
3491
|
+
]
|
|
3492
|
+
|
|
3493
|
+
[[package]]
|
|
3494
|
+
name = "wasm-bindgen-shared"
|
|
3495
|
+
version = "0.2.125"
|
|
3496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3497
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
3498
|
+
dependencies = [
|
|
3499
|
+
"unicode-ident",
|
|
3500
|
+
]
|
|
3501
|
+
|
|
3502
|
+
[[package]]
|
|
3503
|
+
name = "web-time"
|
|
3504
|
+
version = "1.1.0"
|
|
3505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3506
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3507
|
+
dependencies = [
|
|
3508
|
+
"js-sys",
|
|
3509
|
+
"wasm-bindgen",
|
|
3510
|
+
]
|
|
3511
|
+
|
|
3512
|
+
[[package]]
|
|
3513
|
+
name = "wide"
|
|
3514
|
+
version = "0.7.33"
|
|
3515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3516
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
3517
|
+
dependencies = [
|
|
3518
|
+
"bytemuck",
|
|
3519
|
+
"safe_arch 0.7.4",
|
|
3520
|
+
]
|
|
3521
|
+
|
|
3522
|
+
[[package]]
|
|
3523
|
+
name = "wide"
|
|
3524
|
+
version = "1.5.0"
|
|
3525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3526
|
+
checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89"
|
|
3527
|
+
dependencies = [
|
|
3528
|
+
"bytemuck",
|
|
3529
|
+
"safe_arch 1.0.0",
|
|
3530
|
+
]
|
|
3531
|
+
|
|
3532
|
+
[[package]]
|
|
3533
|
+
name = "winapi"
|
|
3534
|
+
version = "0.3.9"
|
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3537
|
+
dependencies = [
|
|
3538
|
+
"winapi-i686-pc-windows-gnu",
|
|
3539
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3540
|
+
]
|
|
3541
|
+
|
|
3542
|
+
[[package]]
|
|
3543
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3544
|
+
version = "0.4.0"
|
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3547
|
+
|
|
3548
|
+
[[package]]
|
|
3549
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3550
|
+
version = "0.4.0"
|
|
3551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3553
|
+
|
|
3554
|
+
[[package]]
|
|
3555
|
+
name = "windows"
|
|
3556
|
+
version = "0.62.2"
|
|
3557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3558
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
3559
|
+
dependencies = [
|
|
3560
|
+
"windows-collections",
|
|
3561
|
+
"windows-core",
|
|
3562
|
+
"windows-future",
|
|
3563
|
+
"windows-numerics",
|
|
3564
|
+
]
|
|
3565
|
+
|
|
3566
|
+
[[package]]
|
|
3567
|
+
name = "windows-collections"
|
|
3568
|
+
version = "0.3.2"
|
|
3569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3570
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
3571
|
+
dependencies = [
|
|
3572
|
+
"windows-core",
|
|
3573
|
+
]
|
|
3574
|
+
|
|
3575
|
+
[[package]]
|
|
3576
|
+
name = "windows-core"
|
|
3577
|
+
version = "0.62.2"
|
|
3578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3579
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3580
|
+
dependencies = [
|
|
3581
|
+
"windows-implement",
|
|
3582
|
+
"windows-interface",
|
|
3583
|
+
"windows-link",
|
|
3584
|
+
"windows-result",
|
|
3585
|
+
"windows-strings",
|
|
3586
|
+
]
|
|
3587
|
+
|
|
3588
|
+
[[package]]
|
|
3589
|
+
name = "windows-future"
|
|
3590
|
+
version = "0.3.2"
|
|
3591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3592
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
3593
|
+
dependencies = [
|
|
3594
|
+
"windows-core",
|
|
3595
|
+
"windows-link",
|
|
3596
|
+
"windows-threading",
|
|
3597
|
+
]
|
|
3598
|
+
|
|
3599
|
+
[[package]]
|
|
3600
|
+
name = "windows-implement"
|
|
3601
|
+
version = "0.60.2"
|
|
3602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3603
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3604
|
+
dependencies = [
|
|
3605
|
+
"proc-macro2 1.0.106",
|
|
3606
|
+
"quote 1.0.45",
|
|
3607
|
+
"syn 2.0.118",
|
|
3608
|
+
]
|
|
3609
|
+
|
|
3610
|
+
[[package]]
|
|
3611
|
+
name = "windows-interface"
|
|
3612
|
+
version = "0.59.3"
|
|
3613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3614
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3615
|
+
dependencies = [
|
|
3616
|
+
"proc-macro2 1.0.106",
|
|
3617
|
+
"quote 1.0.45",
|
|
3618
|
+
"syn 2.0.118",
|
|
3619
|
+
]
|
|
3620
|
+
|
|
3621
|
+
[[package]]
|
|
3622
|
+
name = "windows-link"
|
|
3623
|
+
version = "0.2.1"
|
|
3624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "windows-numerics"
|
|
3629
|
+
version = "0.3.1"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
3632
|
+
dependencies = [
|
|
3633
|
+
"windows-core",
|
|
3634
|
+
"windows-link",
|
|
3635
|
+
]
|
|
3636
|
+
|
|
3637
|
+
[[package]]
|
|
3638
|
+
name = "windows-result"
|
|
3639
|
+
version = "0.4.1"
|
|
3640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3642
|
+
dependencies = [
|
|
3643
|
+
"windows-link",
|
|
3644
|
+
]
|
|
3645
|
+
|
|
3646
|
+
[[package]]
|
|
3647
|
+
name = "windows-strings"
|
|
3648
|
+
version = "0.5.1"
|
|
3649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3650
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3651
|
+
dependencies = [
|
|
3652
|
+
"windows-link",
|
|
3653
|
+
]
|
|
3654
|
+
|
|
3655
|
+
[[package]]
|
|
3656
|
+
name = "windows-sys"
|
|
3657
|
+
version = "0.45.0"
|
|
3658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
3660
|
+
dependencies = [
|
|
3661
|
+
"windows-targets",
|
|
3662
|
+
]
|
|
3663
|
+
|
|
3664
|
+
[[package]]
|
|
3665
|
+
name = "windows-sys"
|
|
3666
|
+
version = "0.61.2"
|
|
3667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3668
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3669
|
+
dependencies = [
|
|
3670
|
+
"windows-link",
|
|
3671
|
+
]
|
|
3672
|
+
|
|
3673
|
+
[[package]]
|
|
3674
|
+
name = "windows-targets"
|
|
3675
|
+
version = "0.42.2"
|
|
3676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3677
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
3678
|
+
dependencies = [
|
|
3679
|
+
"windows_aarch64_gnullvm",
|
|
3680
|
+
"windows_aarch64_msvc",
|
|
3681
|
+
"windows_i686_gnu",
|
|
3682
|
+
"windows_i686_msvc",
|
|
3683
|
+
"windows_x86_64_gnu",
|
|
3684
|
+
"windows_x86_64_gnullvm",
|
|
3685
|
+
"windows_x86_64_msvc",
|
|
3686
|
+
]
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "windows-threading"
|
|
3690
|
+
version = "0.2.1"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
3693
|
+
dependencies = [
|
|
3694
|
+
"windows-link",
|
|
3695
|
+
]
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "windows_aarch64_gnullvm"
|
|
3699
|
+
version = "0.42.2"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
3702
|
+
|
|
3703
|
+
[[package]]
|
|
3704
|
+
name = "windows_aarch64_msvc"
|
|
3705
|
+
version = "0.42.2"
|
|
3706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
3708
|
+
|
|
3709
|
+
[[package]]
|
|
3710
|
+
name = "windows_i686_gnu"
|
|
3711
|
+
version = "0.42.2"
|
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
3714
|
+
|
|
3715
|
+
[[package]]
|
|
3716
|
+
name = "windows_i686_msvc"
|
|
3717
|
+
version = "0.42.2"
|
|
3718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3719
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
3720
|
+
|
|
3721
|
+
[[package]]
|
|
3722
|
+
name = "windows_x86_64_gnu"
|
|
3723
|
+
version = "0.42.2"
|
|
3724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
3726
|
+
|
|
3727
|
+
[[package]]
|
|
3728
|
+
name = "windows_x86_64_gnullvm"
|
|
3729
|
+
version = "0.42.2"
|
|
3730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "windows_x86_64_msvc"
|
|
3735
|
+
version = "0.42.2"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3738
|
+
|
|
3739
|
+
[[package]]
|
|
3740
|
+
name = "winnow"
|
|
3741
|
+
version = "1.0.3"
|
|
3742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3743
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "wit-bindgen"
|
|
3747
|
+
version = "0.57.1"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3750
|
+
|
|
3751
|
+
[[package]]
|
|
3752
|
+
name = "xshell"
|
|
3753
|
+
version = "0.2.7"
|
|
3754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
|
+
checksum = "9e7290c623014758632efe00737145b6867b66292c42167f2ec381eb566a373d"
|
|
3756
|
+
dependencies = [
|
|
3757
|
+
"xshell-macros",
|
|
3758
|
+
]
|
|
3759
|
+
|
|
3760
|
+
[[package]]
|
|
3761
|
+
name = "xshell-macros"
|
|
3762
|
+
version = "0.2.7"
|
|
3763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
+
checksum = "32ac00cd3f8ec9c1d33fb3e7958a82df6989c42d747bd326c822b1d625283547"
|
|
3765
|
+
|
|
3766
|
+
[[package]]
|
|
3767
|
+
name = "yansi"
|
|
3768
|
+
version = "0.5.1"
|
|
3769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
+
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|
|
3771
|
+
|
|
3772
|
+
[[package]]
|
|
3773
|
+
name = "zerocopy"
|
|
3774
|
+
version = "0.8.52"
|
|
3775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3776
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
3777
|
+
dependencies = [
|
|
3778
|
+
"zerocopy-derive",
|
|
3779
|
+
]
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "zerocopy-derive"
|
|
3783
|
+
version = "0.8.52"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
3786
|
+
dependencies = [
|
|
3787
|
+
"proc-macro2 1.0.106",
|
|
3788
|
+
"quote 1.0.45",
|
|
3789
|
+
"syn 2.0.118",
|
|
3790
|
+
]
|
|
3791
|
+
|
|
3792
|
+
[[package]]
|
|
3793
|
+
name = "zmij"
|
|
3794
|
+
version = "1.0.21"
|
|
3795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|