differt-core 0.0.20__tar.gz → 0.0.22__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.
- {differt_core-0.0.20 → differt_core-0.0.22}/Cargo.lock +226 -259
- {differt_core-0.0.20 → differt_core-0.0.22}/PKG-INFO +2 -2
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/Cargo.toml +7 -6
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/benches/benchmarks/graph_iterators.rs +2 -2
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/_lowlevel/rt/graph.pyi +10 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/geometry/triangle_mesh.rs +7 -13
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/rt/graph.rs +315 -43
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/scene/sionna.rs +3 -6
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/scene/triangle_scene.rs +1 -3
- {differt_core-0.0.20 → differt_core-0.0.22}/pyproject.toml +1 -1
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/_lowlevel/rt/graph.pyi +10 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/Cargo.toml +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/README.md +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/LICENSE.md +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/README.md +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/benches/bench_main.rs +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/benches/benchmarks/mod.rs +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/_lowlevel/__init__.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/_lowlevel/scene/sionna.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/_lowlevel/scene/triangle_scene.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/geometry/triangle_mesh.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/py.typed +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/rt/graph.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/scene/sionna.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/python/differt_core/scene/triangle_scene.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/geometry/mod.rs +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/lib.rs +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/rt/mod.rs +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/src/scene/mod.rs +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/tests/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/tests/rt/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/differt-core/tests/rt/test_graph.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/_lowlevel/__init__.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/_lowlevel/scene/sionna.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/_lowlevel/scene/triangle_scene.pyi +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/geometry/triangle_mesh.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/py.typed +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/rt/graph.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/scene/sionna.py +0 -0
- {differt_core-0.0.20 → differt_core-0.0.22}/python/differt_core/scene/triangle_scene.py +0 -0
|
@@ -19,9 +19,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "anstyle"
|
|
22
|
-
version = "1.0.
|
|
22
|
+
version = "1.0.8"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "approx"
|
|
@@ -40,15 +40,15 @@ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "autocfg"
|
|
43
|
-
version = "1.
|
|
43
|
+
version = "1.4.0"
|
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
45
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
46
46
|
|
|
47
47
|
[[package]]
|
|
48
48
|
name = "bitflags"
|
|
49
|
-
version = "2.
|
|
49
|
+
version = "2.6.0"
|
|
50
50
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
-
checksum = "
|
|
51
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
52
52
|
|
|
53
53
|
[[package]]
|
|
54
54
|
name = "bumpalo"
|
|
@@ -64,9 +64,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "bytemuck"
|
|
67
|
-
version = "1.
|
|
67
|
+
version = "1.18.0"
|
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
69
|
+
checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae"
|
|
70
70
|
|
|
71
71
|
[[package]]
|
|
72
72
|
name = "byteorder"
|
|
@@ -76,9 +76,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
76
76
|
|
|
77
77
|
[[package]]
|
|
78
78
|
name = "camino"
|
|
79
|
-
version = "1.1.
|
|
79
|
+
version = "1.1.9"
|
|
80
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
81
|
+
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
82
82
|
dependencies = [
|
|
83
83
|
"serde",
|
|
84
84
|
]
|
|
@@ -146,18 +146,18 @@ dependencies = [
|
|
|
146
146
|
|
|
147
147
|
[[package]]
|
|
148
148
|
name = "clap"
|
|
149
|
-
version = "4.5.
|
|
149
|
+
version = "4.5.20"
|
|
150
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
151
|
+
checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
|
|
152
152
|
dependencies = [
|
|
153
153
|
"clap_builder",
|
|
154
154
|
]
|
|
155
155
|
|
|
156
156
|
[[package]]
|
|
157
157
|
name = "clap_builder"
|
|
158
|
-
version = "4.5.
|
|
158
|
+
version = "4.5.20"
|
|
159
159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
160
|
+
checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
|
|
161
161
|
dependencies = [
|
|
162
162
|
"anstyle",
|
|
163
163
|
"clap_lex",
|
|
@@ -165,9 +165,9 @@ dependencies = [
|
|
|
165
165
|
|
|
166
166
|
[[package]]
|
|
167
167
|
name = "clap_lex"
|
|
168
|
-
version = "0.7.
|
|
168
|
+
version = "0.7.2"
|
|
169
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
170
|
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
|
171
171
|
|
|
172
172
|
[[package]]
|
|
173
173
|
name = "criterion"
|
|
@@ -226,9 +226,9 @@ dependencies = [
|
|
|
226
226
|
|
|
227
227
|
[[package]]
|
|
228
228
|
name = "crossbeam-utils"
|
|
229
|
-
version = "0.8.
|
|
229
|
+
version = "0.8.20"
|
|
230
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
-
checksum = "
|
|
231
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
232
232
|
|
|
233
233
|
[[package]]
|
|
234
234
|
name = "crunchy"
|
|
@@ -238,7 +238,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
|
238
238
|
|
|
239
239
|
[[package]]
|
|
240
240
|
name = "differt-core"
|
|
241
|
-
version = "0.0.
|
|
241
|
+
version = "0.0.22"
|
|
242
242
|
dependencies = [
|
|
243
243
|
"criterion",
|
|
244
244
|
"indexmap",
|
|
@@ -253,13 +253,14 @@ dependencies = [
|
|
|
253
253
|
"quick-xml",
|
|
254
254
|
"rstest",
|
|
255
255
|
"serde",
|
|
256
|
+
"testing_logger",
|
|
256
257
|
]
|
|
257
258
|
|
|
258
259
|
[[package]]
|
|
259
260
|
name = "either"
|
|
260
|
-
version = "1.
|
|
261
|
+
version = "1.13.0"
|
|
261
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
-
checksum = "
|
|
263
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
263
264
|
|
|
264
265
|
[[package]]
|
|
265
266
|
name = "equivalent"
|
|
@@ -269,12 +270,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
269
270
|
|
|
270
271
|
[[package]]
|
|
271
272
|
name = "errno"
|
|
272
|
-
version = "0.3.
|
|
273
|
+
version = "0.3.9"
|
|
273
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
-
checksum = "
|
|
275
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
275
276
|
dependencies = [
|
|
276
277
|
"libc",
|
|
277
|
-
"windows-sys",
|
|
278
|
+
"windows-sys 0.52.0",
|
|
278
279
|
]
|
|
279
280
|
|
|
280
281
|
[[package]]
|
|
@@ -288,15 +289,15 @@ dependencies = [
|
|
|
288
289
|
|
|
289
290
|
[[package]]
|
|
290
291
|
name = "fastrand"
|
|
291
|
-
version = "2.1.
|
|
292
|
+
version = "2.1.1"
|
|
292
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
-
checksum = "
|
|
294
|
+
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
|
|
294
295
|
|
|
295
296
|
[[package]]
|
|
296
297
|
name = "futures"
|
|
297
|
-
version = "0.3.
|
|
298
|
+
version = "0.3.31"
|
|
298
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
-
checksum = "
|
|
300
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
300
301
|
dependencies = [
|
|
301
302
|
"futures-channel",
|
|
302
303
|
"futures-core",
|
|
@@ -309,9 +310,9 @@ dependencies = [
|
|
|
309
310
|
|
|
310
311
|
[[package]]
|
|
311
312
|
name = "futures-channel"
|
|
312
|
-
version = "0.3.
|
|
313
|
+
version = "0.3.31"
|
|
313
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
-
checksum = "
|
|
315
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
315
316
|
dependencies = [
|
|
316
317
|
"futures-core",
|
|
317
318
|
"futures-sink",
|
|
@@ -319,15 +320,15 @@ dependencies = [
|
|
|
319
320
|
|
|
320
321
|
[[package]]
|
|
321
322
|
name = "futures-core"
|
|
322
|
-
version = "0.3.
|
|
323
|
+
version = "0.3.31"
|
|
323
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
-
checksum = "
|
|
325
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
325
326
|
|
|
326
327
|
[[package]]
|
|
327
328
|
name = "futures-executor"
|
|
328
|
-
version = "0.3.
|
|
329
|
+
version = "0.3.31"
|
|
329
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
-
checksum = "
|
|
331
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
331
332
|
dependencies = [
|
|
332
333
|
"futures-core",
|
|
333
334
|
"futures-task",
|
|
@@ -336,32 +337,32 @@ dependencies = [
|
|
|
336
337
|
|
|
337
338
|
[[package]]
|
|
338
339
|
name = "futures-io"
|
|
339
|
-
version = "0.3.
|
|
340
|
+
version = "0.3.31"
|
|
340
341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
342
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
342
343
|
|
|
343
344
|
[[package]]
|
|
344
345
|
name = "futures-macro"
|
|
345
|
-
version = "0.3.
|
|
346
|
+
version = "0.3.31"
|
|
346
347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
348
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
348
349
|
dependencies = [
|
|
349
350
|
"proc-macro2",
|
|
350
351
|
"quote",
|
|
351
|
-
"syn
|
|
352
|
+
"syn",
|
|
352
353
|
]
|
|
353
354
|
|
|
354
355
|
[[package]]
|
|
355
356
|
name = "futures-sink"
|
|
356
|
-
version = "0.3.
|
|
357
|
+
version = "0.3.31"
|
|
357
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
-
checksum = "
|
|
359
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
359
360
|
|
|
360
361
|
[[package]]
|
|
361
362
|
name = "futures-task"
|
|
362
|
-
version = "0.3.
|
|
363
|
+
version = "0.3.31"
|
|
363
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
-
checksum = "
|
|
365
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
365
366
|
|
|
366
367
|
[[package]]
|
|
367
368
|
name = "futures-timer"
|
|
@@ -371,9 +372,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
|
371
372
|
|
|
372
373
|
[[package]]
|
|
373
374
|
name = "futures-util"
|
|
374
|
-
version = "0.3.
|
|
375
|
+
version = "0.3.31"
|
|
375
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
-
checksum = "
|
|
377
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
377
378
|
dependencies = [
|
|
378
379
|
"futures-channel",
|
|
379
380
|
"futures-core",
|
|
@@ -405,27 +406,27 @@ dependencies = [
|
|
|
405
406
|
|
|
406
407
|
[[package]]
|
|
407
408
|
name = "hashbrown"
|
|
408
|
-
version = "0.
|
|
409
|
+
version = "0.15.0"
|
|
409
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
411
|
+
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
|
|
411
412
|
|
|
412
413
|
[[package]]
|
|
413
414
|
name = "heck"
|
|
414
|
-
version = "0.
|
|
415
|
+
version = "0.5.0"
|
|
415
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
417
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
417
418
|
|
|
418
419
|
[[package]]
|
|
419
420
|
name = "hermit-abi"
|
|
420
|
-
version = "0.
|
|
421
|
+
version = "0.4.0"
|
|
421
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
-
checksum = "
|
|
423
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
423
424
|
|
|
424
425
|
[[package]]
|
|
425
426
|
name = "indexmap"
|
|
426
|
-
version = "2.
|
|
427
|
+
version = "2.6.0"
|
|
427
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
-
checksum = "
|
|
429
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
|
429
430
|
dependencies = [
|
|
430
431
|
"equivalent",
|
|
431
432
|
"hashbrown",
|
|
@@ -440,13 +441,13 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
|
440
441
|
|
|
441
442
|
[[package]]
|
|
442
443
|
name = "is-terminal"
|
|
443
|
-
version = "0.4.
|
|
444
|
+
version = "0.4.13"
|
|
444
445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "
|
|
446
|
+
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
|
|
446
447
|
dependencies = [
|
|
447
448
|
"hermit-abi",
|
|
448
449
|
"libc",
|
|
449
|
-
"windows-sys",
|
|
450
|
+
"windows-sys 0.52.0",
|
|
450
451
|
]
|
|
451
452
|
|
|
452
453
|
[[package]]
|
|
@@ -466,18 +467,18 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
|
466
467
|
|
|
467
468
|
[[package]]
|
|
468
469
|
name = "js-sys"
|
|
469
|
-
version = "0.3.
|
|
470
|
+
version = "0.3.72"
|
|
470
471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
-
checksum = "
|
|
472
|
+
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
|
472
473
|
dependencies = [
|
|
473
474
|
"wasm-bindgen",
|
|
474
475
|
]
|
|
475
476
|
|
|
476
477
|
[[package]]
|
|
477
478
|
name = "libc"
|
|
478
|
-
version = "0.2.
|
|
479
|
+
version = "0.2.159"
|
|
479
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
481
|
+
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
|
|
481
482
|
|
|
482
483
|
[[package]]
|
|
483
484
|
name = "linked-hash-map"
|
|
@@ -487,31 +488,21 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
487
488
|
|
|
488
489
|
[[package]]
|
|
489
490
|
name = "linux-raw-sys"
|
|
490
|
-
version = "0.4.
|
|
491
|
+
version = "0.4.14"
|
|
491
492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
493
|
-
|
|
494
|
-
[[package]]
|
|
495
|
-
name = "lock_api"
|
|
496
|
-
version = "0.4.12"
|
|
497
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
499
|
-
dependencies = [
|
|
500
|
-
"autocfg",
|
|
501
|
-
"scopeguard",
|
|
502
|
-
]
|
|
493
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
503
494
|
|
|
504
495
|
[[package]]
|
|
505
496
|
name = "log"
|
|
506
|
-
version = "0.4.
|
|
497
|
+
version = "0.4.22"
|
|
507
498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
499
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
509
500
|
|
|
510
501
|
[[package]]
|
|
511
502
|
name = "matrixmultiply"
|
|
512
|
-
version = "0.3.
|
|
503
|
+
version = "0.3.9"
|
|
513
504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
505
|
+
checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
|
|
515
506
|
dependencies = [
|
|
516
507
|
"autocfg",
|
|
517
508
|
"rawpointer",
|
|
@@ -519,9 +510,9 @@ dependencies = [
|
|
|
519
510
|
|
|
520
511
|
[[package]]
|
|
521
512
|
name = "memchr"
|
|
522
|
-
version = "2.7.
|
|
513
|
+
version = "2.7.4"
|
|
523
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
-
checksum = "
|
|
515
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
525
516
|
|
|
526
517
|
[[package]]
|
|
527
518
|
name = "memoffset"
|
|
@@ -534,9 +525,9 @@ dependencies = [
|
|
|
534
525
|
|
|
535
526
|
[[package]]
|
|
536
527
|
name = "nalgebra"
|
|
537
|
-
version = "0.32.
|
|
528
|
+
version = "0.32.6"
|
|
538
529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
530
|
+
checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
|
|
540
531
|
dependencies = [
|
|
541
532
|
"approx",
|
|
542
533
|
"matrixmultiply",
|
|
@@ -550,34 +541,36 @@ dependencies = [
|
|
|
550
541
|
|
|
551
542
|
[[package]]
|
|
552
543
|
name = "nalgebra-macros"
|
|
553
|
-
version = "0.2.
|
|
544
|
+
version = "0.2.2"
|
|
554
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
546
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
556
547
|
dependencies = [
|
|
557
548
|
"proc-macro2",
|
|
558
549
|
"quote",
|
|
559
|
-
"syn
|
|
550
|
+
"syn",
|
|
560
551
|
]
|
|
561
552
|
|
|
562
553
|
[[package]]
|
|
563
554
|
name = "ndarray"
|
|
564
|
-
version = "0.
|
|
555
|
+
version = "0.16.1"
|
|
565
556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
-
checksum = "
|
|
557
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
567
558
|
dependencies = [
|
|
568
559
|
"matrixmultiply",
|
|
569
560
|
"num-complex",
|
|
570
561
|
"num-integer",
|
|
571
562
|
"num-traits",
|
|
563
|
+
"portable-atomic",
|
|
564
|
+
"portable-atomic-util",
|
|
572
565
|
"rawpointer",
|
|
573
566
|
"rayon",
|
|
574
567
|
]
|
|
575
568
|
|
|
576
569
|
[[package]]
|
|
577
570
|
name = "num-complex"
|
|
578
|
-
version = "0.4.
|
|
571
|
+
version = "0.4.6"
|
|
579
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
-
checksum = "
|
|
573
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
581
574
|
dependencies = [
|
|
582
575
|
"num-traits",
|
|
583
576
|
]
|
|
@@ -593,29 +586,28 @@ dependencies = [
|
|
|
593
586
|
|
|
594
587
|
[[package]]
|
|
595
588
|
name = "num-rational"
|
|
596
|
-
version = "0.4.
|
|
589
|
+
version = "0.4.2"
|
|
597
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
-
checksum = "
|
|
591
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
599
592
|
dependencies = [
|
|
600
|
-
"autocfg",
|
|
601
593
|
"num-integer",
|
|
602
594
|
"num-traits",
|
|
603
595
|
]
|
|
604
596
|
|
|
605
597
|
[[package]]
|
|
606
598
|
name = "num-traits"
|
|
607
|
-
version = "0.2.
|
|
599
|
+
version = "0.2.19"
|
|
608
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "
|
|
601
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
610
602
|
dependencies = [
|
|
611
603
|
"autocfg",
|
|
612
604
|
]
|
|
613
605
|
|
|
614
606
|
[[package]]
|
|
615
607
|
name = "numpy"
|
|
616
|
-
version = "0.
|
|
608
|
+
version = "0.22.0"
|
|
617
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
610
|
+
checksum = "cf314fca279e6e6ac2126a4ff98f26d88aa4ad06bc68fb6ae5cf4bd706758311"
|
|
619
611
|
dependencies = [
|
|
620
612
|
"libc",
|
|
621
613
|
"ndarray",
|
|
@@ -628,9 +620,9 @@ dependencies = [
|
|
|
628
620
|
|
|
629
621
|
[[package]]
|
|
630
622
|
name = "obj-rs"
|
|
631
|
-
version = "0.7.
|
|
623
|
+
version = "0.7.4"
|
|
632
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
-
checksum = "
|
|
625
|
+
checksum = "8247fd8f66340ad9c969f96e63a80a2f74b04e5403d92584b75e046006f4c7e1"
|
|
634
626
|
dependencies = [
|
|
635
627
|
"num-traits",
|
|
636
628
|
"serde",
|
|
@@ -638,44 +630,21 @@ dependencies = [
|
|
|
638
630
|
|
|
639
631
|
[[package]]
|
|
640
632
|
name = "once_cell"
|
|
641
|
-
version = "1.
|
|
633
|
+
version = "1.20.2"
|
|
642
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
-
checksum = "
|
|
635
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
644
636
|
|
|
645
637
|
[[package]]
|
|
646
638
|
name = "oorandom"
|
|
647
|
-
version = "11.1.
|
|
648
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
-
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
|
650
|
-
|
|
651
|
-
[[package]]
|
|
652
|
-
name = "parking_lot"
|
|
653
|
-
version = "0.12.2"
|
|
639
|
+
version = "11.1.4"
|
|
654
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
656
|
-
dependencies = [
|
|
657
|
-
"lock_api",
|
|
658
|
-
"parking_lot_core",
|
|
659
|
-
]
|
|
660
|
-
|
|
661
|
-
[[package]]
|
|
662
|
-
name = "parking_lot_core"
|
|
663
|
-
version = "0.9.10"
|
|
664
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
-
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
666
|
-
dependencies = [
|
|
667
|
-
"cfg-if",
|
|
668
|
-
"libc",
|
|
669
|
-
"redox_syscall",
|
|
670
|
-
"smallvec",
|
|
671
|
-
"windows-targets",
|
|
672
|
-
]
|
|
641
|
+
checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
|
|
673
642
|
|
|
674
643
|
[[package]]
|
|
675
644
|
name = "paste"
|
|
676
|
-
version = "1.0.
|
|
645
|
+
version = "1.0.15"
|
|
677
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
-
checksum = "
|
|
647
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
679
648
|
|
|
680
649
|
[[package]]
|
|
681
650
|
name = "peg"
|
|
@@ -718,9 +687,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
718
687
|
|
|
719
688
|
[[package]]
|
|
720
689
|
name = "plotters"
|
|
721
|
-
version = "0.3.
|
|
690
|
+
version = "0.3.7"
|
|
722
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
-
checksum = "
|
|
692
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
724
693
|
dependencies = [
|
|
725
694
|
"num-traits",
|
|
726
695
|
"plotters-backend",
|
|
@@ -731,15 +700,15 @@ dependencies = [
|
|
|
731
700
|
|
|
732
701
|
[[package]]
|
|
733
702
|
name = "plotters-backend"
|
|
734
|
-
version = "0.3.
|
|
703
|
+
version = "0.3.7"
|
|
735
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
-
checksum = "
|
|
705
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
737
706
|
|
|
738
707
|
[[package]]
|
|
739
708
|
name = "plotters-svg"
|
|
740
|
-
version = "0.3.
|
|
709
|
+
version = "0.3.7"
|
|
741
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
-
checksum = "
|
|
711
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
743
712
|
dependencies = [
|
|
744
713
|
"plotters-backend",
|
|
745
714
|
]
|
|
@@ -758,15 +727,24 @@ dependencies = [
|
|
|
758
727
|
|
|
759
728
|
[[package]]
|
|
760
729
|
name = "portable-atomic"
|
|
761
|
-
version = "1.
|
|
730
|
+
version = "1.9.0"
|
|
762
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
-
checksum = "
|
|
732
|
+
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "portable-atomic-util"
|
|
736
|
+
version = "0.2.2"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "fcdd8420072e66d54a407b3316991fe946ce3ab1083a7f575b2463866624704d"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"portable-atomic",
|
|
741
|
+
]
|
|
764
742
|
|
|
765
743
|
[[package]]
|
|
766
744
|
name = "proc-macro2"
|
|
767
|
-
version = "1.0.
|
|
745
|
+
version = "1.0.87"
|
|
768
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
-
checksum = "
|
|
747
|
+
checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a"
|
|
770
748
|
dependencies = [
|
|
771
749
|
"unicode-ident",
|
|
772
750
|
]
|
|
@@ -784,16 +762,16 @@ dependencies = [
|
|
|
784
762
|
|
|
785
763
|
[[package]]
|
|
786
764
|
name = "pyo3"
|
|
787
|
-
version = "0.
|
|
765
|
+
version = "0.22.4"
|
|
788
766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
767
|
+
checksum = "00e89ce2565d6044ca31a3eb79a334c3a79a841120a98f64eea9f579564cb691"
|
|
790
768
|
dependencies = [
|
|
791
769
|
"cfg-if",
|
|
792
770
|
"indexmap",
|
|
793
771
|
"indoc",
|
|
794
772
|
"libc",
|
|
795
773
|
"memoffset",
|
|
796
|
-
"
|
|
774
|
+
"once_cell",
|
|
797
775
|
"portable-atomic",
|
|
798
776
|
"pyo3-build-config",
|
|
799
777
|
"pyo3-ffi",
|
|
@@ -803,9 +781,9 @@ dependencies = [
|
|
|
803
781
|
|
|
804
782
|
[[package]]
|
|
805
783
|
name = "pyo3-build-config"
|
|
806
|
-
version = "0.
|
|
784
|
+
version = "0.22.4"
|
|
807
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
-
checksum = "
|
|
786
|
+
checksum = "d8afbaf3abd7325e08f35ffb8deb5892046fcb2608b703db6a583a5ba4cea01e"
|
|
809
787
|
dependencies = [
|
|
810
788
|
"once_cell",
|
|
811
789
|
"target-lexicon",
|
|
@@ -813,9 +791,9 @@ dependencies = [
|
|
|
813
791
|
|
|
814
792
|
[[package]]
|
|
815
793
|
name = "pyo3-ffi"
|
|
816
|
-
version = "0.
|
|
794
|
+
version = "0.22.4"
|
|
817
795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
-
checksum = "
|
|
796
|
+
checksum = "ec15a5ba277339d04763f4c23d85987a5b08cbb494860be141e6a10a8eb88022"
|
|
819
797
|
dependencies = [
|
|
820
798
|
"libc",
|
|
821
799
|
"pyo3-build-config",
|
|
@@ -823,9 +801,9 @@ dependencies = [
|
|
|
823
801
|
|
|
824
802
|
[[package]]
|
|
825
803
|
name = "pyo3-log"
|
|
826
|
-
version = "0.
|
|
804
|
+
version = "0.11.0"
|
|
827
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
-
checksum = "
|
|
806
|
+
checksum = "3ac84e6eec1159bc2a575c9ae6723baa6ee9d45873e9bebad1e3ad7e8d28a443"
|
|
829
807
|
dependencies = [
|
|
830
808
|
"arc-swap",
|
|
831
809
|
"log",
|
|
@@ -834,27 +812,27 @@ dependencies = [
|
|
|
834
812
|
|
|
835
813
|
[[package]]
|
|
836
814
|
name = "pyo3-macros"
|
|
837
|
-
version = "0.
|
|
815
|
+
version = "0.22.4"
|
|
838
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "
|
|
817
|
+
checksum = "15e0f01b5364bcfbb686a52fc4181d412b708a68ed20c330db9fc8d2c2bf5a43"
|
|
840
818
|
dependencies = [
|
|
841
819
|
"proc-macro2",
|
|
842
820
|
"pyo3-macros-backend",
|
|
843
821
|
"quote",
|
|
844
|
-
"syn
|
|
822
|
+
"syn",
|
|
845
823
|
]
|
|
846
824
|
|
|
847
825
|
[[package]]
|
|
848
826
|
name = "pyo3-macros-backend"
|
|
849
|
-
version = "0.
|
|
827
|
+
version = "0.22.4"
|
|
850
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
-
checksum = "
|
|
829
|
+
checksum = "a09b550200e1e5ed9176976d0060cbc2ea82dc8515da07885e7b8153a85caacb"
|
|
852
830
|
dependencies = [
|
|
853
831
|
"heck",
|
|
854
832
|
"proc-macro2",
|
|
855
833
|
"pyo3-build-config",
|
|
856
834
|
"quote",
|
|
857
|
-
"syn
|
|
835
|
+
"syn",
|
|
858
836
|
]
|
|
859
837
|
|
|
860
838
|
[[package]]
|
|
@@ -869,9 +847,9 @@ dependencies = [
|
|
|
869
847
|
|
|
870
848
|
[[package]]
|
|
871
849
|
name = "quote"
|
|
872
|
-
version = "1.0.
|
|
850
|
+
version = "1.0.37"
|
|
873
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
-
checksum = "
|
|
852
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
875
853
|
dependencies = [
|
|
876
854
|
"proc-macro2",
|
|
877
855
|
]
|
|
@@ -902,20 +880,11 @@ dependencies = [
|
|
|
902
880
|
"crossbeam-utils",
|
|
903
881
|
]
|
|
904
882
|
|
|
905
|
-
[[package]]
|
|
906
|
-
name = "redox_syscall"
|
|
907
|
-
version = "0.5.1"
|
|
908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
-
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
|
|
910
|
-
dependencies = [
|
|
911
|
-
"bitflags",
|
|
912
|
-
]
|
|
913
|
-
|
|
914
883
|
[[package]]
|
|
915
884
|
name = "regex"
|
|
916
|
-
version = "1.
|
|
885
|
+
version = "1.11.0"
|
|
917
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
-
checksum = "
|
|
887
|
+
checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
|
|
919
888
|
dependencies = [
|
|
920
889
|
"aho-corasick",
|
|
921
890
|
"memchr",
|
|
@@ -925,9 +894,9 @@ dependencies = [
|
|
|
925
894
|
|
|
926
895
|
[[package]]
|
|
927
896
|
name = "regex-automata"
|
|
928
|
-
version = "0.4.
|
|
897
|
+
version = "0.4.8"
|
|
929
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
899
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
|
931
900
|
dependencies = [
|
|
932
901
|
"aho-corasick",
|
|
933
902
|
"memchr",
|
|
@@ -936,15 +905,15 @@ dependencies = [
|
|
|
936
905
|
|
|
937
906
|
[[package]]
|
|
938
907
|
name = "regex-syntax"
|
|
939
|
-
version = "0.8.
|
|
908
|
+
version = "0.8.5"
|
|
940
909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
910
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
942
911
|
|
|
943
912
|
[[package]]
|
|
944
913
|
name = "relative-path"
|
|
945
|
-
version = "1.9.
|
|
914
|
+
version = "1.9.3"
|
|
946
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
-
checksum = "
|
|
916
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
948
917
|
|
|
949
918
|
[[package]]
|
|
950
919
|
name = "rstest"
|
|
@@ -971,7 +940,7 @@ dependencies = [
|
|
|
971
940
|
"regex",
|
|
972
941
|
"relative-path",
|
|
973
942
|
"rustc_version",
|
|
974
|
-
"syn
|
|
943
|
+
"syn",
|
|
975
944
|
"unicode-ident",
|
|
976
945
|
]
|
|
977
946
|
|
|
@@ -983,37 +952,37 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
983
952
|
|
|
984
953
|
[[package]]
|
|
985
954
|
name = "rustc_version"
|
|
986
|
-
version = "0.4.
|
|
955
|
+
version = "0.4.1"
|
|
987
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
-
checksum = "
|
|
957
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
989
958
|
dependencies = [
|
|
990
959
|
"semver",
|
|
991
960
|
]
|
|
992
961
|
|
|
993
962
|
[[package]]
|
|
994
963
|
name = "rustix"
|
|
995
|
-
version = "0.38.
|
|
964
|
+
version = "0.38.37"
|
|
996
965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
-
checksum = "
|
|
966
|
+
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
|
|
998
967
|
dependencies = [
|
|
999
968
|
"bitflags",
|
|
1000
969
|
"errno",
|
|
1001
970
|
"libc",
|
|
1002
971
|
"linux-raw-sys",
|
|
1003
|
-
"windows-sys",
|
|
972
|
+
"windows-sys 0.52.0",
|
|
1004
973
|
]
|
|
1005
974
|
|
|
1006
975
|
[[package]]
|
|
1007
976
|
name = "ryu"
|
|
1008
|
-
version = "1.0.
|
|
977
|
+
version = "1.0.18"
|
|
1009
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
-
checksum = "
|
|
979
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1011
980
|
|
|
1012
981
|
[[package]]
|
|
1013
982
|
name = "safe_arch"
|
|
1014
|
-
version = "0.7.
|
|
983
|
+
version = "0.7.2"
|
|
1015
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
985
|
+
checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a"
|
|
1017
986
|
dependencies = [
|
|
1018
987
|
"bytemuck",
|
|
1019
988
|
]
|
|
@@ -1027,48 +996,43 @@ dependencies = [
|
|
|
1027
996
|
"winapi-util",
|
|
1028
997
|
]
|
|
1029
998
|
|
|
1030
|
-
[[package]]
|
|
1031
|
-
name = "scopeguard"
|
|
1032
|
-
version = "1.2.0"
|
|
1033
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1035
|
-
|
|
1036
999
|
[[package]]
|
|
1037
1000
|
name = "semver"
|
|
1038
|
-
version = "1.0.
|
|
1001
|
+
version = "1.0.23"
|
|
1039
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
1003
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
1041
1004
|
dependencies = [
|
|
1042
1005
|
"serde",
|
|
1043
1006
|
]
|
|
1044
1007
|
|
|
1045
1008
|
[[package]]
|
|
1046
1009
|
name = "serde"
|
|
1047
|
-
version = "1.0.
|
|
1010
|
+
version = "1.0.210"
|
|
1048
1011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
-
checksum = "
|
|
1012
|
+
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
|
|
1050
1013
|
dependencies = [
|
|
1051
1014
|
"serde_derive",
|
|
1052
1015
|
]
|
|
1053
1016
|
|
|
1054
1017
|
[[package]]
|
|
1055
1018
|
name = "serde_derive"
|
|
1056
|
-
version = "1.0.
|
|
1019
|
+
version = "1.0.210"
|
|
1057
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
-
checksum = "
|
|
1021
|
+
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
|
|
1059
1022
|
dependencies = [
|
|
1060
1023
|
"proc-macro2",
|
|
1061
1024
|
"quote",
|
|
1062
|
-
"syn
|
|
1025
|
+
"syn",
|
|
1063
1026
|
]
|
|
1064
1027
|
|
|
1065
1028
|
[[package]]
|
|
1066
1029
|
name = "serde_json"
|
|
1067
|
-
version = "1.0.
|
|
1030
|
+
version = "1.0.128"
|
|
1068
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
-
checksum = "
|
|
1032
|
+
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
|
|
1070
1033
|
dependencies = [
|
|
1071
1034
|
"itoa",
|
|
1035
|
+
"memchr",
|
|
1072
1036
|
"ryu",
|
|
1073
1037
|
"serde",
|
|
1074
1038
|
]
|
|
@@ -1110,28 +1074,11 @@ dependencies = [
|
|
|
1110
1074
|
"autocfg",
|
|
1111
1075
|
]
|
|
1112
1076
|
|
|
1113
|
-
[[package]]
|
|
1114
|
-
name = "smallvec"
|
|
1115
|
-
version = "1.13.2"
|
|
1116
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1118
|
-
|
|
1119
|
-
[[package]]
|
|
1120
|
-
name = "syn"
|
|
1121
|
-
version = "1.0.109"
|
|
1122
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1124
|
-
dependencies = [
|
|
1125
|
-
"proc-macro2",
|
|
1126
|
-
"quote",
|
|
1127
|
-
"unicode-ident",
|
|
1128
|
-
]
|
|
1129
|
-
|
|
1130
1077
|
[[package]]
|
|
1131
1078
|
name = "syn"
|
|
1132
|
-
version = "2.0.
|
|
1079
|
+
version = "2.0.79"
|
|
1133
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "
|
|
1081
|
+
checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
|
|
1135
1082
|
dependencies = [
|
|
1136
1083
|
"proc-macro2",
|
|
1137
1084
|
"quote",
|
|
@@ -1140,20 +1087,30 @@ dependencies = [
|
|
|
1140
1087
|
|
|
1141
1088
|
[[package]]
|
|
1142
1089
|
name = "target-lexicon"
|
|
1143
|
-
version = "0.12.
|
|
1090
|
+
version = "0.12.16"
|
|
1144
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
1092
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
1146
1093
|
|
|
1147
1094
|
[[package]]
|
|
1148
1095
|
name = "tempfile"
|
|
1149
|
-
version = "3.
|
|
1096
|
+
version = "3.13.0"
|
|
1150
1097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "
|
|
1098
|
+
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
|
|
1152
1099
|
dependencies = [
|
|
1153
1100
|
"cfg-if",
|
|
1154
1101
|
"fastrand",
|
|
1102
|
+
"once_cell",
|
|
1155
1103
|
"rustix",
|
|
1156
|
-
"windows-sys",
|
|
1104
|
+
"windows-sys 0.59.0",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "testing_logger"
|
|
1109
|
+
version = "0.1.1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "6d92b727cb45d33ae956f7f46b966b25f1bc712092aeef9dba5ac798fc89f720"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"log",
|
|
1157
1114
|
]
|
|
1158
1115
|
|
|
1159
1116
|
[[package]]
|
|
@@ -1183,9 +1140,9 @@ dependencies = [
|
|
|
1183
1140
|
|
|
1184
1141
|
[[package]]
|
|
1185
1142
|
name = "unicode-ident"
|
|
1186
|
-
version = "1.0.
|
|
1143
|
+
version = "1.0.13"
|
|
1187
1144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
-
checksum = "
|
|
1145
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|
1189
1146
|
|
|
1190
1147
|
[[package]]
|
|
1191
1148
|
name = "unindent"
|
|
@@ -1195,9 +1152,9 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
|
1195
1152
|
|
|
1196
1153
|
[[package]]
|
|
1197
1154
|
name = "version_check"
|
|
1198
|
-
version = "0.9.
|
|
1155
|
+
version = "0.9.5"
|
|
1199
1156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1157
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1201
1158
|
|
|
1202
1159
|
[[package]]
|
|
1203
1160
|
name = "walkdir"
|
|
@@ -1211,34 +1168,35 @@ dependencies = [
|
|
|
1211
1168
|
|
|
1212
1169
|
[[package]]
|
|
1213
1170
|
name = "wasm-bindgen"
|
|
1214
|
-
version = "0.2.
|
|
1171
|
+
version = "0.2.95"
|
|
1215
1172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "
|
|
1173
|
+
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
|
1217
1174
|
dependencies = [
|
|
1218
1175
|
"cfg-if",
|
|
1176
|
+
"once_cell",
|
|
1219
1177
|
"wasm-bindgen-macro",
|
|
1220
1178
|
]
|
|
1221
1179
|
|
|
1222
1180
|
[[package]]
|
|
1223
1181
|
name = "wasm-bindgen-backend"
|
|
1224
|
-
version = "0.2.
|
|
1182
|
+
version = "0.2.95"
|
|
1225
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
-
checksum = "
|
|
1184
|
+
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
|
1227
1185
|
dependencies = [
|
|
1228
1186
|
"bumpalo",
|
|
1229
1187
|
"log",
|
|
1230
1188
|
"once_cell",
|
|
1231
1189
|
"proc-macro2",
|
|
1232
1190
|
"quote",
|
|
1233
|
-
"syn
|
|
1191
|
+
"syn",
|
|
1234
1192
|
"wasm-bindgen-shared",
|
|
1235
1193
|
]
|
|
1236
1194
|
|
|
1237
1195
|
[[package]]
|
|
1238
1196
|
name = "wasm-bindgen-macro"
|
|
1239
|
-
version = "0.2.
|
|
1197
|
+
version = "0.2.95"
|
|
1240
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
-
checksum = "
|
|
1199
|
+
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
|
1242
1200
|
dependencies = [
|
|
1243
1201
|
"quote",
|
|
1244
1202
|
"wasm-bindgen-macro-support",
|
|
@@ -1246,28 +1204,28 @@ dependencies = [
|
|
|
1246
1204
|
|
|
1247
1205
|
[[package]]
|
|
1248
1206
|
name = "wasm-bindgen-macro-support"
|
|
1249
|
-
version = "0.2.
|
|
1207
|
+
version = "0.2.95"
|
|
1250
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
-
checksum = "
|
|
1209
|
+
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
|
1252
1210
|
dependencies = [
|
|
1253
1211
|
"proc-macro2",
|
|
1254
1212
|
"quote",
|
|
1255
|
-
"syn
|
|
1213
|
+
"syn",
|
|
1256
1214
|
"wasm-bindgen-backend",
|
|
1257
1215
|
"wasm-bindgen-shared",
|
|
1258
1216
|
]
|
|
1259
1217
|
|
|
1260
1218
|
[[package]]
|
|
1261
1219
|
name = "wasm-bindgen-shared"
|
|
1262
|
-
version = "0.2.
|
|
1220
|
+
version = "0.2.95"
|
|
1263
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
-
checksum = "
|
|
1222
|
+
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
|
1265
1223
|
|
|
1266
1224
|
[[package]]
|
|
1267
1225
|
name = "web-sys"
|
|
1268
|
-
version = "0.3.
|
|
1226
|
+
version = "0.3.72"
|
|
1269
1227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
-
checksum = "
|
|
1228
|
+
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
|
|
1271
1229
|
dependencies = [
|
|
1272
1230
|
"js-sys",
|
|
1273
1231
|
"wasm-bindgen",
|
|
@@ -1275,9 +1233,9 @@ dependencies = [
|
|
|
1275
1233
|
|
|
1276
1234
|
[[package]]
|
|
1277
1235
|
name = "wide"
|
|
1278
|
-
version = "0.7.
|
|
1236
|
+
version = "0.7.28"
|
|
1279
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
-
checksum = "
|
|
1238
|
+
checksum = "b828f995bf1e9622031f8009f8481a85406ce1f4d4588ff746d872043e855690"
|
|
1281
1239
|
dependencies = [
|
|
1282
1240
|
"bytemuck",
|
|
1283
1241
|
"safe_arch",
|
|
@@ -1285,11 +1243,11 @@ dependencies = [
|
|
|
1285
1243
|
|
|
1286
1244
|
[[package]]
|
|
1287
1245
|
name = "winapi-util"
|
|
1288
|
-
version = "0.1.
|
|
1246
|
+
version = "0.1.9"
|
|
1289
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
-
checksum = "
|
|
1248
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
1291
1249
|
dependencies = [
|
|
1292
|
-
"windows-sys",
|
|
1250
|
+
"windows-sys 0.59.0",
|
|
1293
1251
|
]
|
|
1294
1252
|
|
|
1295
1253
|
[[package]]
|
|
@@ -1301,11 +1259,20 @@ dependencies = [
|
|
|
1301
1259
|
"windows-targets",
|
|
1302
1260
|
]
|
|
1303
1261
|
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "windows-sys"
|
|
1264
|
+
version = "0.59.0"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"windows-targets",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1304
1271
|
[[package]]
|
|
1305
1272
|
name = "windows-targets"
|
|
1306
|
-
version = "0.52.
|
|
1273
|
+
version = "0.52.6"
|
|
1307
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
-
checksum = "
|
|
1275
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1309
1276
|
dependencies = [
|
|
1310
1277
|
"windows_aarch64_gnullvm",
|
|
1311
1278
|
"windows_aarch64_msvc",
|
|
@@ -1319,48 +1286,48 @@ dependencies = [
|
|
|
1319
1286
|
|
|
1320
1287
|
[[package]]
|
|
1321
1288
|
name = "windows_aarch64_gnullvm"
|
|
1322
|
-
version = "0.52.
|
|
1289
|
+
version = "0.52.6"
|
|
1323
1290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1291
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1325
1292
|
|
|
1326
1293
|
[[package]]
|
|
1327
1294
|
name = "windows_aarch64_msvc"
|
|
1328
|
-
version = "0.52.
|
|
1295
|
+
version = "0.52.6"
|
|
1329
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
-
checksum = "
|
|
1297
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1331
1298
|
|
|
1332
1299
|
[[package]]
|
|
1333
1300
|
name = "windows_i686_gnu"
|
|
1334
|
-
version = "0.52.
|
|
1301
|
+
version = "0.52.6"
|
|
1335
1302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
-
checksum = "
|
|
1303
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1337
1304
|
|
|
1338
1305
|
[[package]]
|
|
1339
1306
|
name = "windows_i686_gnullvm"
|
|
1340
|
-
version = "0.52.
|
|
1307
|
+
version = "0.52.6"
|
|
1341
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
-
checksum = "
|
|
1309
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1343
1310
|
|
|
1344
1311
|
[[package]]
|
|
1345
1312
|
name = "windows_i686_msvc"
|
|
1346
|
-
version = "0.52.
|
|
1313
|
+
version = "0.52.6"
|
|
1347
1314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
-
checksum = "
|
|
1315
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1349
1316
|
|
|
1350
1317
|
[[package]]
|
|
1351
1318
|
name = "windows_x86_64_gnu"
|
|
1352
|
-
version = "0.52.
|
|
1319
|
+
version = "0.52.6"
|
|
1353
1320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
-
checksum = "
|
|
1321
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1355
1322
|
|
|
1356
1323
|
[[package]]
|
|
1357
1324
|
name = "windows_x86_64_gnullvm"
|
|
1358
|
-
version = "0.52.
|
|
1325
|
+
version = "0.52.6"
|
|
1359
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
-
checksum = "
|
|
1327
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1361
1328
|
|
|
1362
1329
|
[[package]]
|
|
1363
1330
|
name = "windows_x86_64_msvc"
|
|
1364
|
-
version = "0.52.
|
|
1331
|
+
version = "0.52.6"
|
|
1365
1332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1333
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|