differt-core 0.0.4__tar.gz → 0.0.11__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.
Files changed (66) hide show
  1. differt_core-0.0.11/Cargo.lock +1341 -0
  2. differt_core-0.0.11/Cargo.toml +12 -0
  3. differt_core-0.0.11/PKG-INFO +59 -0
  4. differt_core-0.0.11/differt-core/Cargo.toml +35 -0
  5. {differt_core-0.0.4 → differt_core-0.0.11/differt-core}/LICENSE.md +1 -1
  6. differt_core-0.0.11/differt-core/README.md +36 -0
  7. differt_core-0.0.11/differt-core/benches/bench_main.rs +7 -0
  8. differt_core-0.0.11/differt-core/benches/benchmarks/graph_iterators.rs +85 -0
  9. differt_core-0.0.11/differt-core/benches/benchmarks/mod.rs +1 -0
  10. differt_core-0.0.11/differt-core/python/differt_core/__init__.py +10 -0
  11. differt_core-0.0.11/differt-core/python/differt_core/_lowlevel/__init__.pyi +7 -0
  12. differt_core-0.0.11/differt-core/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +11 -0
  13. differt_core-0.0.11/differt-core/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
  14. differt_core-0.0.11/differt-core/python/differt_core/_lowlevel/rt/graph.pyi +66 -0
  15. differt_core-0.0.11/differt-core/python/differt_core/_lowlevel/scene/sionna.pyi +9 -0
  16. differt_core-0.0.11/differt-core/python/differt_core/_lowlevel/scene/triangle_scene.pyi +8 -0
  17. differt_core-0.0.11/differt-core/python/differt_core/geometry/__init__.py +1 -0
  18. differt_core-0.0.11/differt-core/python/differt_core/geometry/triangle_mesh.py +7 -0
  19. differt_core-0.0.11/differt-core/python/differt_core/py.typed +0 -0
  20. differt_core-0.0.11/differt-core/python/differt_core/rt/__init__.py +1 -0
  21. differt_core-0.0.11/differt-core/python/differt_core/rt/graph.py +21 -0
  22. differt_core-0.0.11/differt-core/python/differt_core/scene/__init__.py +1 -0
  23. differt_core-0.0.11/differt-core/python/differt_core/scene/sionna.py +9 -0
  24. differt_core-0.0.11/differt-core/python/differt_core/scene/triangle_scene.py +7 -0
  25. differt_core-0.0.11/differt-core/src/geometry/mod.rs +9 -0
  26. differt_core-0.0.11/differt-core/src/geometry/triangle_mesh.rs +242 -0
  27. differt_core-0.0.11/differt-core/src/lib.rs +19 -0
  28. differt_core-0.0.11/differt-core/src/rt/graph.rs +1128 -0
  29. differt_core-0.0.11/differt-core/src/rt/mod.rs +9 -0
  30. differt_core-0.0.11/differt-core/src/scene/mod.rs +11 -0
  31. differt_core-0.0.11/differt-core/src/scene/sionna.rs +219 -0
  32. differt_core-0.0.11/differt-core/src/scene/triangle_scene.rs +84 -0
  33. differt_core-0.0.11/differt-core/tests/__init__.py +0 -0
  34. differt_core-0.0.11/differt-core/tests/benchmarks/__init__.py +0 -0
  35. differt_core-0.0.11/differt-core/tests/benchmarks/conftest.py +20 -0
  36. differt_core-0.0.11/differt-core/tests/benchmarks/test_graph.py +84 -0
  37. differt_core-0.0.11/differt-core/tests/rt/__init__.py +0 -0
  38. differt_core-0.0.11/differt-core/tests/rt/test_graph.py +58 -0
  39. differt_core-0.0.11/pyproject.toml +37 -0
  40. differt_core-0.0.11/python/differt_core/__init__.py +10 -0
  41. differt_core-0.0.11/python/differt_core/_lowlevel/__init__.pyi +7 -0
  42. differt_core-0.0.11/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +11 -0
  43. differt_core-0.0.11/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
  44. differt_core-0.0.11/python/differt_core/_lowlevel/rt/graph.pyi +66 -0
  45. differt_core-0.0.11/python/differt_core/_lowlevel/scene/sionna.pyi +9 -0
  46. differt_core-0.0.11/python/differt_core/_lowlevel/scene/triangle_scene.pyi +8 -0
  47. differt_core-0.0.11/python/differt_core/geometry/__init__.py +1 -0
  48. differt_core-0.0.11/python/differt_core/geometry/triangle_mesh.py +7 -0
  49. differt_core-0.0.11/python/differt_core/py.typed +0 -0
  50. differt_core-0.0.11/python/differt_core/rt/__init__.py +1 -0
  51. differt_core-0.0.11/python/differt_core/rt/graph.py +21 -0
  52. differt_core-0.0.11/python/differt_core/scene/__init__.py +1 -0
  53. differt_core-0.0.11/python/differt_core/scene/sionna.py +9 -0
  54. differt_core-0.0.11/python/differt_core/scene/triangle_scene.py +7 -0
  55. differt_core-0.0.4/PKG-INFO +0 -17
  56. differt_core-0.0.4/README.md +0 -4
  57. differt_core-0.0.4/differt-core/.github/workflows/CI.yml +0 -120
  58. differt_core-0.0.4/differt-core/.gitignore +0 -72
  59. differt_core-0.0.4/differt-core/Cargo.lock +0 -576
  60. differt_core-0.0.4/differt-core/Cargo.toml +0 -19
  61. differt_core-0.0.4/differt-core/LICENSE.md +0 -21
  62. differt_core-0.0.4/differt-core/README.md +0 -4
  63. differt_core-0.0.4/differt-core/differt_core.pyi +0 -3
  64. differt_core-0.0.4/differt-core/requirements.txt +0 -1
  65. differt_core-0.0.4/differt-core/src/lib.rs +0 -115
  66. differt_core-0.0.4/pyproject.toml +0 -21
@@ -0,0 +1,1341 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
25
+
26
+ [[package]]
27
+ name = "approx"
28
+ version = "0.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
31
+ dependencies = [
32
+ "num-traits",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "arc-swap"
37
+ version = "1.7.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.2.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
46
+
47
+ [[package]]
48
+ name = "bitflags"
49
+ version = "2.5.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
52
+
53
+ [[package]]
54
+ name = "bumpalo"
55
+ version = "3.16.0"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
58
+
59
+ [[package]]
60
+ name = "bytecount"
61
+ version = "0.6.8"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
64
+
65
+ [[package]]
66
+ name = "bytemuck"
67
+ version = "1.15.0"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15"
70
+
71
+ [[package]]
72
+ name = "byteorder"
73
+ version = "1.5.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
76
+
77
+ [[package]]
78
+ name = "camino"
79
+ version = "1.1.6"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
82
+ dependencies = [
83
+ "serde",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "cargo-platform"
88
+ version = "0.1.8"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc"
91
+ dependencies = [
92
+ "serde",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "cargo_metadata"
97
+ version = "0.14.2"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
100
+ dependencies = [
101
+ "camino",
102
+ "cargo-platform",
103
+ "semver",
104
+ "serde",
105
+ "serde_json",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "cast"
110
+ version = "0.3.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
113
+
114
+ [[package]]
115
+ name = "cfg-if"
116
+ version = "1.0.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
119
+
120
+ [[package]]
121
+ name = "ciborium"
122
+ version = "0.2.2"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
125
+ dependencies = [
126
+ "ciborium-io",
127
+ "ciborium-ll",
128
+ "serde",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "ciborium-io"
133
+ version = "0.2.2"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
136
+
137
+ [[package]]
138
+ name = "ciborium-ll"
139
+ version = "0.2.2"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
142
+ dependencies = [
143
+ "ciborium-io",
144
+ "half",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "clap"
149
+ version = "4.5.4"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
152
+ dependencies = [
153
+ "clap_builder",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "clap_builder"
158
+ version = "4.5.2"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
161
+ dependencies = [
162
+ "anstyle",
163
+ "clap_lex",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "clap_lex"
168
+ version = "0.7.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
171
+
172
+ [[package]]
173
+ name = "criterion"
174
+ version = "0.5.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
177
+ dependencies = [
178
+ "anes",
179
+ "cast",
180
+ "ciborium",
181
+ "clap",
182
+ "criterion-plot",
183
+ "is-terminal",
184
+ "itertools",
185
+ "num-traits",
186
+ "once_cell",
187
+ "oorandom",
188
+ "plotters",
189
+ "rayon",
190
+ "regex",
191
+ "serde",
192
+ "serde_derive",
193
+ "serde_json",
194
+ "tinytemplate",
195
+ "walkdir",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "criterion-plot"
200
+ version = "0.5.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
203
+ dependencies = [
204
+ "cast",
205
+ "itertools",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "crossbeam-deque"
210
+ version = "0.8.5"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
213
+ dependencies = [
214
+ "crossbeam-epoch",
215
+ "crossbeam-utils",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "crossbeam-epoch"
220
+ version = "0.9.18"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
223
+ dependencies = [
224
+ "crossbeam-utils",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "crossbeam-utils"
229
+ version = "0.8.19"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
232
+
233
+ [[package]]
234
+ name = "crunchy"
235
+ version = "0.2.2"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
238
+
239
+ [[package]]
240
+ name = "differt-core"
241
+ version = "0.0.11"
242
+ dependencies = [
243
+ "criterion",
244
+ "log",
245
+ "nalgebra",
246
+ "ndarray",
247
+ "numpy",
248
+ "obj-rs",
249
+ "ply-rs",
250
+ "pyo3",
251
+ "pyo3-log",
252
+ "quick-xml",
253
+ "rstest",
254
+ "serde",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "either"
259
+ version = "1.11.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
262
+
263
+ [[package]]
264
+ name = "errno"
265
+ version = "0.3.8"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
268
+ dependencies = [
269
+ "libc",
270
+ "windows-sys",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "error-chain"
275
+ version = "0.12.4"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
278
+ dependencies = [
279
+ "version_check",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "fastrand"
284
+ version = "2.1.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
287
+
288
+ [[package]]
289
+ name = "futures"
290
+ version = "0.3.30"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
293
+ dependencies = [
294
+ "futures-channel",
295
+ "futures-core",
296
+ "futures-executor",
297
+ "futures-io",
298
+ "futures-sink",
299
+ "futures-task",
300
+ "futures-util",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "futures-channel"
305
+ version = "0.3.30"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
308
+ dependencies = [
309
+ "futures-core",
310
+ "futures-sink",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "futures-core"
315
+ version = "0.3.30"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
318
+
319
+ [[package]]
320
+ name = "futures-executor"
321
+ version = "0.3.30"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
324
+ dependencies = [
325
+ "futures-core",
326
+ "futures-task",
327
+ "futures-util",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "futures-io"
332
+ version = "0.3.30"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
335
+
336
+ [[package]]
337
+ name = "futures-macro"
338
+ version = "0.3.30"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
341
+ dependencies = [
342
+ "proc-macro2",
343
+ "quote",
344
+ "syn 2.0.60",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "futures-sink"
349
+ version = "0.3.30"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
352
+
353
+ [[package]]
354
+ name = "futures-task"
355
+ version = "0.3.30"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
358
+
359
+ [[package]]
360
+ name = "futures-timer"
361
+ version = "3.0.3"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
364
+
365
+ [[package]]
366
+ name = "futures-util"
367
+ version = "0.3.30"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
370
+ dependencies = [
371
+ "futures-channel",
372
+ "futures-core",
373
+ "futures-io",
374
+ "futures-macro",
375
+ "futures-sink",
376
+ "futures-task",
377
+ "memchr",
378
+ "pin-project-lite",
379
+ "pin-utils",
380
+ "slab",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "glob"
385
+ version = "0.3.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
388
+
389
+ [[package]]
390
+ name = "half"
391
+ version = "2.4.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
394
+ dependencies = [
395
+ "cfg-if",
396
+ "crunchy",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "heck"
401
+ version = "0.4.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
404
+
405
+ [[package]]
406
+ name = "hermit-abi"
407
+ version = "0.3.9"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
410
+
411
+ [[package]]
412
+ name = "indoc"
413
+ version = "2.0.5"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
416
+
417
+ [[package]]
418
+ name = "is-terminal"
419
+ version = "0.4.12"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
422
+ dependencies = [
423
+ "hermit-abi",
424
+ "libc",
425
+ "windows-sys",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "itertools"
430
+ version = "0.10.5"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
433
+ dependencies = [
434
+ "either",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "itoa"
439
+ version = "1.0.11"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
442
+
443
+ [[package]]
444
+ name = "js-sys"
445
+ version = "0.3.69"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
448
+ dependencies = [
449
+ "wasm-bindgen",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "libc"
454
+ version = "0.2.154"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
457
+
458
+ [[package]]
459
+ name = "linked-hash-map"
460
+ version = "0.5.6"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
463
+
464
+ [[package]]
465
+ name = "linux-raw-sys"
466
+ version = "0.4.13"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
469
+
470
+ [[package]]
471
+ name = "lock_api"
472
+ version = "0.4.12"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
475
+ dependencies = [
476
+ "autocfg",
477
+ "scopeguard",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "log"
482
+ version = "0.4.21"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
485
+
486
+ [[package]]
487
+ name = "matrixmultiply"
488
+ version = "0.3.8"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
491
+ dependencies = [
492
+ "autocfg",
493
+ "rawpointer",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "memchr"
498
+ version = "2.7.2"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
501
+
502
+ [[package]]
503
+ name = "memoffset"
504
+ version = "0.9.1"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
507
+ dependencies = [
508
+ "autocfg",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "nalgebra"
513
+ version = "0.32.5"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "3ea4908d4f23254adda3daa60ffef0f1ac7b8c3e9a864cf3cc154b251908a2ef"
516
+ dependencies = [
517
+ "approx",
518
+ "matrixmultiply",
519
+ "nalgebra-macros",
520
+ "num-complex",
521
+ "num-rational",
522
+ "num-traits",
523
+ "simba",
524
+ "typenum",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "nalgebra-macros"
529
+ version = "0.2.1"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998"
532
+ dependencies = [
533
+ "proc-macro2",
534
+ "quote",
535
+ "syn 1.0.109",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "ndarray"
540
+ version = "0.15.6"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
543
+ dependencies = [
544
+ "matrixmultiply",
545
+ "num-complex",
546
+ "num-integer",
547
+ "num-traits",
548
+ "rawpointer",
549
+ "rayon",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "num-complex"
554
+ version = "0.4.5"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6"
557
+ dependencies = [
558
+ "num-traits",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "num-integer"
563
+ version = "0.1.46"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
566
+ dependencies = [
567
+ "num-traits",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "num-rational"
572
+ version = "0.4.1"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
575
+ dependencies = [
576
+ "autocfg",
577
+ "num-integer",
578
+ "num-traits",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "num-traits"
583
+ version = "0.2.18"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
586
+ dependencies = [
587
+ "autocfg",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "numpy"
592
+ version = "0.21.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
595
+ dependencies = [
596
+ "libc",
597
+ "ndarray",
598
+ "num-complex",
599
+ "num-integer",
600
+ "num-traits",
601
+ "pyo3",
602
+ "rustc-hash",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "obj-rs"
607
+ version = "0.7.1"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "a502182538a65adc7e3843f820eb5a4bd3ff395017e0ba6e3ccad404e9ea1da3"
610
+ dependencies = [
611
+ "num-traits",
612
+ "serde",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "once_cell"
617
+ version = "1.19.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
620
+
621
+ [[package]]
622
+ name = "oorandom"
623
+ version = "11.1.3"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
626
+
627
+ [[package]]
628
+ name = "parking_lot"
629
+ version = "0.12.2"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
632
+ dependencies = [
633
+ "lock_api",
634
+ "parking_lot_core",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "parking_lot_core"
639
+ version = "0.9.10"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
642
+ dependencies = [
643
+ "cfg-if",
644
+ "libc",
645
+ "redox_syscall",
646
+ "smallvec",
647
+ "windows-targets",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "paste"
652
+ version = "1.0.14"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
655
+
656
+ [[package]]
657
+ name = "peg"
658
+ version = "0.6.3"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "9f76678828272f177ac33b7e2ac2e3e73cc6c1cd1e3e387928aa69562fa51367"
661
+ dependencies = [
662
+ "peg-macros",
663
+ "peg-runtime",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "peg-macros"
668
+ version = "0.6.3"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "636d60acf97633e48d266d7415a9355d4389cea327a193f87df395d88cd2b14d"
671
+ dependencies = [
672
+ "peg-runtime",
673
+ "proc-macro2",
674
+ "quote",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "peg-runtime"
679
+ version = "0.6.3"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "9555b1514d2d99d78150d3c799d4c357a3e2c2a8062cd108e93a06d9057629c5"
682
+
683
+ [[package]]
684
+ name = "pin-project-lite"
685
+ version = "0.2.14"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
688
+
689
+ [[package]]
690
+ name = "pin-utils"
691
+ version = "0.1.0"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
694
+
695
+ [[package]]
696
+ name = "plotters"
697
+ version = "0.3.5"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
700
+ dependencies = [
701
+ "num-traits",
702
+ "plotters-backend",
703
+ "plotters-svg",
704
+ "wasm-bindgen",
705
+ "web-sys",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "plotters-backend"
710
+ version = "0.3.5"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
713
+
714
+ [[package]]
715
+ name = "plotters-svg"
716
+ version = "0.3.5"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
719
+ dependencies = [
720
+ "plotters-backend",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "ply-rs"
725
+ version = "0.1.3"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "dbadf9cb4a79d516de4c64806fe64ffbd8161d1ac685d000be789fb628b88963"
728
+ dependencies = [
729
+ "byteorder",
730
+ "linked-hash-map",
731
+ "peg",
732
+ "skeptic",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "portable-atomic"
737
+ version = "1.6.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
740
+
741
+ [[package]]
742
+ name = "proc-macro2"
743
+ version = "1.0.81"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
746
+ dependencies = [
747
+ "unicode-ident",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "pulldown-cmark"
752
+ version = "0.9.6"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
755
+ dependencies = [
756
+ "bitflags",
757
+ "memchr",
758
+ "unicase",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "pyo3"
763
+ version = "0.21.2"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
766
+ dependencies = [
767
+ "cfg-if",
768
+ "indoc",
769
+ "libc",
770
+ "memoffset",
771
+ "parking_lot",
772
+ "portable-atomic",
773
+ "pyo3-build-config",
774
+ "pyo3-ffi",
775
+ "pyo3-macros",
776
+ "unindent",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "pyo3-build-config"
781
+ version = "0.21.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
784
+ dependencies = [
785
+ "once_cell",
786
+ "target-lexicon",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "pyo3-ffi"
791
+ version = "0.21.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
794
+ dependencies = [
795
+ "libc",
796
+ "pyo3-build-config",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "pyo3-log"
801
+ version = "0.10.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "2af49834b8d2ecd555177e63b273b708dea75150abc6f5341d0a6e1a9623976c"
804
+ dependencies = [
805
+ "arc-swap",
806
+ "log",
807
+ "pyo3",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "pyo3-macros"
812
+ version = "0.21.2"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
815
+ dependencies = [
816
+ "proc-macro2",
817
+ "pyo3-macros-backend",
818
+ "quote",
819
+ "syn 2.0.60",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "pyo3-macros-backend"
824
+ version = "0.21.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
827
+ dependencies = [
828
+ "heck",
829
+ "proc-macro2",
830
+ "pyo3-build-config",
831
+ "quote",
832
+ "syn 2.0.60",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "quick-xml"
837
+ version = "0.31.0"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
840
+ dependencies = [
841
+ "memchr",
842
+ "serde",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "quote"
847
+ version = "1.0.36"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
850
+ dependencies = [
851
+ "proc-macro2",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "rawpointer"
856
+ version = "0.2.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
859
+
860
+ [[package]]
861
+ name = "rayon"
862
+ version = "1.10.0"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
865
+ dependencies = [
866
+ "either",
867
+ "rayon-core",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "rayon-core"
872
+ version = "1.12.1"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
875
+ dependencies = [
876
+ "crossbeam-deque",
877
+ "crossbeam-utils",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "redox_syscall"
882
+ version = "0.5.1"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
885
+ dependencies = [
886
+ "bitflags",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "regex"
891
+ version = "1.10.4"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
894
+ dependencies = [
895
+ "aho-corasick",
896
+ "memchr",
897
+ "regex-automata",
898
+ "regex-syntax",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "regex-automata"
903
+ version = "0.4.6"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
906
+ dependencies = [
907
+ "aho-corasick",
908
+ "memchr",
909
+ "regex-syntax",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "regex-syntax"
914
+ version = "0.8.3"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
917
+
918
+ [[package]]
919
+ name = "relative-path"
920
+ version = "1.9.2"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc"
923
+
924
+ [[package]]
925
+ name = "rstest"
926
+ version = "0.18.2"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
929
+ dependencies = [
930
+ "futures",
931
+ "futures-timer",
932
+ "rstest_macros",
933
+ "rustc_version",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "rstest_macros"
938
+ version = "0.18.2"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
941
+ dependencies = [
942
+ "cfg-if",
943
+ "glob",
944
+ "proc-macro2",
945
+ "quote",
946
+ "regex",
947
+ "relative-path",
948
+ "rustc_version",
949
+ "syn 2.0.60",
950
+ "unicode-ident",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "rustc-hash"
955
+ version = "1.1.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
958
+
959
+ [[package]]
960
+ name = "rustc_version"
961
+ version = "0.4.0"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
964
+ dependencies = [
965
+ "semver",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "rustix"
970
+ version = "0.38.34"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
973
+ dependencies = [
974
+ "bitflags",
975
+ "errno",
976
+ "libc",
977
+ "linux-raw-sys",
978
+ "windows-sys",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "ryu"
983
+ version = "1.0.17"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
986
+
987
+ [[package]]
988
+ name = "safe_arch"
989
+ version = "0.7.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354"
992
+ dependencies = [
993
+ "bytemuck",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "same-file"
998
+ version = "1.0.6"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1001
+ dependencies = [
1002
+ "winapi-util",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "scopeguard"
1007
+ version = "1.2.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1010
+
1011
+ [[package]]
1012
+ name = "semver"
1013
+ version = "1.0.22"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
1016
+ dependencies = [
1017
+ "serde",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "serde"
1022
+ version = "1.0.200"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f"
1025
+ dependencies = [
1026
+ "serde_derive",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "serde_derive"
1031
+ version = "1.0.200"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb"
1034
+ dependencies = [
1035
+ "proc-macro2",
1036
+ "quote",
1037
+ "syn 2.0.60",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "serde_json"
1042
+ version = "1.0.116"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
1045
+ dependencies = [
1046
+ "itoa",
1047
+ "ryu",
1048
+ "serde",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "simba"
1053
+ version = "0.8.1"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
1056
+ dependencies = [
1057
+ "approx",
1058
+ "num-complex",
1059
+ "num-traits",
1060
+ "paste",
1061
+ "wide",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "skeptic"
1066
+ version = "0.13.7"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
1069
+ dependencies = [
1070
+ "bytecount",
1071
+ "cargo_metadata",
1072
+ "error-chain",
1073
+ "glob",
1074
+ "pulldown-cmark",
1075
+ "tempfile",
1076
+ "walkdir",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "slab"
1081
+ version = "0.4.9"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1084
+ dependencies = [
1085
+ "autocfg",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "smallvec"
1090
+ version = "1.13.2"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1093
+
1094
+ [[package]]
1095
+ name = "syn"
1096
+ version = "1.0.109"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1099
+ dependencies = [
1100
+ "proc-macro2",
1101
+ "quote",
1102
+ "unicode-ident",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "syn"
1107
+ version = "2.0.60"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
1110
+ dependencies = [
1111
+ "proc-macro2",
1112
+ "quote",
1113
+ "unicode-ident",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "target-lexicon"
1118
+ version = "0.12.14"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
1121
+
1122
+ [[package]]
1123
+ name = "tempfile"
1124
+ version = "3.10.1"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
1127
+ dependencies = [
1128
+ "cfg-if",
1129
+ "fastrand",
1130
+ "rustix",
1131
+ "windows-sys",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "tinytemplate"
1136
+ version = "1.2.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1139
+ dependencies = [
1140
+ "serde",
1141
+ "serde_json",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "typenum"
1146
+ version = "1.17.0"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1149
+
1150
+ [[package]]
1151
+ name = "unicase"
1152
+ version = "2.7.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
1155
+ dependencies = [
1156
+ "version_check",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "unicode-ident"
1161
+ version = "1.0.12"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1164
+
1165
+ [[package]]
1166
+ name = "unindent"
1167
+ version = "0.2.3"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1170
+
1171
+ [[package]]
1172
+ name = "version_check"
1173
+ version = "0.9.4"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1176
+
1177
+ [[package]]
1178
+ name = "walkdir"
1179
+ version = "2.5.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1182
+ dependencies = [
1183
+ "same-file",
1184
+ "winapi-util",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "wasm-bindgen"
1189
+ version = "0.2.92"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
1192
+ dependencies = [
1193
+ "cfg-if",
1194
+ "wasm-bindgen-macro",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "wasm-bindgen-backend"
1199
+ version = "0.2.92"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
1202
+ dependencies = [
1203
+ "bumpalo",
1204
+ "log",
1205
+ "once_cell",
1206
+ "proc-macro2",
1207
+ "quote",
1208
+ "syn 2.0.60",
1209
+ "wasm-bindgen-shared",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "wasm-bindgen-macro"
1214
+ version = "0.2.92"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
1217
+ dependencies = [
1218
+ "quote",
1219
+ "wasm-bindgen-macro-support",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "wasm-bindgen-macro-support"
1224
+ version = "0.2.92"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
1227
+ dependencies = [
1228
+ "proc-macro2",
1229
+ "quote",
1230
+ "syn 2.0.60",
1231
+ "wasm-bindgen-backend",
1232
+ "wasm-bindgen-shared",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "wasm-bindgen-shared"
1237
+ version = "0.2.92"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1240
+
1241
+ [[package]]
1242
+ name = "web-sys"
1243
+ version = "0.3.69"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
1246
+ dependencies = [
1247
+ "js-sys",
1248
+ "wasm-bindgen",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "wide"
1253
+ version = "0.7.17"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "0f0e39d2c603fdc0504b12b458cf1f34e0b937ed2f4f2dc20796e3e86f34e11f"
1256
+ dependencies = [
1257
+ "bytemuck",
1258
+ "safe_arch",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "winapi-util"
1263
+ version = "0.1.8"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
1266
+ dependencies = [
1267
+ "windows-sys",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "windows-sys"
1272
+ version = "0.52.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1275
+ dependencies = [
1276
+ "windows-targets",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "windows-targets"
1281
+ version = "0.52.5"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
1284
+ dependencies = [
1285
+ "windows_aarch64_gnullvm",
1286
+ "windows_aarch64_msvc",
1287
+ "windows_i686_gnu",
1288
+ "windows_i686_gnullvm",
1289
+ "windows_i686_msvc",
1290
+ "windows_x86_64_gnu",
1291
+ "windows_x86_64_gnullvm",
1292
+ "windows_x86_64_msvc",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "windows_aarch64_gnullvm"
1297
+ version = "0.52.5"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
1300
+
1301
+ [[package]]
1302
+ name = "windows_aarch64_msvc"
1303
+ version = "0.52.5"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
1306
+
1307
+ [[package]]
1308
+ name = "windows_i686_gnu"
1309
+ version = "0.52.5"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
1312
+
1313
+ [[package]]
1314
+ name = "windows_i686_gnullvm"
1315
+ version = "0.52.5"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
1318
+
1319
+ [[package]]
1320
+ name = "windows_i686_msvc"
1321
+ version = "0.52.5"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
1324
+
1325
+ [[package]]
1326
+ name = "windows_x86_64_gnu"
1327
+ version = "0.52.5"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
1330
+
1331
+ [[package]]
1332
+ name = "windows_x86_64_gnullvm"
1333
+ version = "0.52.5"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
1336
+
1337
+ [[package]]
1338
+ name = "windows_x86_64_msvc"
1339
+ version = "0.52.5"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"