differt-core 0.0.26__tar.gz → 0.0.27__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.26 → differt_core-0.0.27}/Cargo.lock +70 -73
- {differt_core-0.0.26 → differt_core-0.0.27}/PKG-INFO +3 -2
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/Cargo.toml +6 -6
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/geometry/triangle_mesh.rs +5 -5
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/rt/graph.rs +6 -6
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/scene/triangle_scene.rs +2 -2
- {differt_core-0.0.26 → differt_core-0.0.27}/pyproject.toml +1 -0
- differt_core-0.0.26/differt-core/README.md +0 -33
- {differt_core-0.0.26 → differt_core-0.0.27}/Cargo.toml +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/LICENSE.md +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27/differt-core}/README.md +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/benches/bench_main.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/benches/benchmarks/graph_iterators.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/benches/benchmarks/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/rt/graph.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/scene/sionna.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/scene/triangle_scene.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/py.typed +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/scene/_triangle_scene.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/geometry/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/lib.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/rt/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/scene/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/src/scene/sionna.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/tests/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/tests/rt/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/differt-core/tests/rt/test_graph.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/rt/graph.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/scene/sionna.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/scene/triangle_scene.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/py.typed +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.27}/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.10"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "approx"
|
|
@@ -64,9 +64,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "bytemuck"
|
|
67
|
-
version = "1.
|
|
67
|
+
version = "1.20.0"
|
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
69
|
+
checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a"
|
|
70
70
|
|
|
71
71
|
[[package]]
|
|
72
72
|
name = "byteorder"
|
|
@@ -85,9 +85,9 @@ dependencies = [
|
|
|
85
85
|
|
|
86
86
|
[[package]]
|
|
87
87
|
name = "cargo-platform"
|
|
88
|
-
version = "0.1.
|
|
88
|
+
version = "0.1.9"
|
|
89
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
90
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
91
91
|
dependencies = [
|
|
92
92
|
"serde",
|
|
93
93
|
]
|
|
@@ -146,18 +146,18 @@ dependencies = [
|
|
|
146
146
|
|
|
147
147
|
[[package]]
|
|
148
148
|
name = "clap"
|
|
149
|
-
version = "4.5.
|
|
149
|
+
version = "4.5.21"
|
|
150
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
151
|
+
checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f"
|
|
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.21"
|
|
159
159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
160
|
+
checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec"
|
|
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.3"
|
|
169
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
170
|
+
checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7"
|
|
171
171
|
|
|
172
172
|
[[package]]
|
|
173
173
|
name = "criterion"
|
|
@@ -238,7 +238,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
|
238
238
|
|
|
239
239
|
[[package]]
|
|
240
240
|
name = "differt-core"
|
|
241
|
-
version = "0.0.
|
|
241
|
+
version = "0.0.27"
|
|
242
242
|
dependencies = [
|
|
243
243
|
"criterion",
|
|
244
244
|
"indexmap",
|
|
@@ -270,12 +270,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
270
270
|
|
|
271
271
|
[[package]]
|
|
272
272
|
name = "errno"
|
|
273
|
-
version = "0.3.
|
|
273
|
+
version = "0.3.10"
|
|
274
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
-
checksum = "
|
|
275
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
276
276
|
dependencies = [
|
|
277
277
|
"libc",
|
|
278
|
-
"windows-sys 0.
|
|
278
|
+
"windows-sys 0.59.0",
|
|
279
279
|
]
|
|
280
280
|
|
|
281
281
|
[[package]]
|
|
@@ -289,9 +289,9 @@ dependencies = [
|
|
|
289
289
|
|
|
290
290
|
[[package]]
|
|
291
291
|
name = "fastrand"
|
|
292
|
-
version = "2.
|
|
292
|
+
version = "2.2.0"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
294
|
+
checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
|
|
295
295
|
|
|
296
296
|
[[package]]
|
|
297
297
|
name = "futures"
|
|
@@ -406,9 +406,9 @@ dependencies = [
|
|
|
406
406
|
|
|
407
407
|
[[package]]
|
|
408
408
|
name = "hashbrown"
|
|
409
|
-
version = "0.15.
|
|
409
|
+
version = "0.15.2"
|
|
410
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "
|
|
411
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
412
412
|
|
|
413
413
|
[[package]]
|
|
414
414
|
name = "heck"
|
|
@@ -461,9 +461,9 @@ dependencies = [
|
|
|
461
461
|
|
|
462
462
|
[[package]]
|
|
463
463
|
name = "itoa"
|
|
464
|
-
version = "1.0.
|
|
464
|
+
version = "1.0.14"
|
|
465
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "
|
|
466
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
467
467
|
|
|
468
468
|
[[package]]
|
|
469
469
|
name = "js-sys"
|
|
@@ -476,9 +476,9 @@ dependencies = [
|
|
|
476
476
|
|
|
477
477
|
[[package]]
|
|
478
478
|
name = "libc"
|
|
479
|
-
version = "0.2.
|
|
479
|
+
version = "0.2.167"
|
|
480
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
-
checksum = "
|
|
481
|
+
checksum = "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc"
|
|
482
482
|
|
|
483
483
|
[[package]]
|
|
484
484
|
name = "linked-hash-map"
|
|
@@ -605,9 +605,9 @@ dependencies = [
|
|
|
605
605
|
|
|
606
606
|
[[package]]
|
|
607
607
|
name = "numpy"
|
|
608
|
-
version = "0.
|
|
608
|
+
version = "0.23.0"
|
|
609
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
610
|
+
checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
|
|
611
611
|
dependencies = [
|
|
612
612
|
"libc",
|
|
613
613
|
"ndarray",
|
|
@@ -675,9 +675,9 @@ checksum = "9555b1514d2d99d78150d3c799d4c357a3e2c2a8062cd108e93a06d9057629c5"
|
|
|
675
675
|
|
|
676
676
|
[[package]]
|
|
677
677
|
name = "pin-project-lite"
|
|
678
|
-
version = "0.2.
|
|
678
|
+
version = "0.2.15"
|
|
679
679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
680
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
|
681
681
|
|
|
682
682
|
[[package]]
|
|
683
683
|
name = "pin-utils"
|
|
@@ -727,24 +727,24 @@ dependencies = [
|
|
|
727
727
|
|
|
728
728
|
[[package]]
|
|
729
729
|
name = "portable-atomic"
|
|
730
|
-
version = "1.
|
|
730
|
+
version = "1.10.0"
|
|
731
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
732
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
733
733
|
|
|
734
734
|
[[package]]
|
|
735
735
|
name = "portable-atomic-util"
|
|
736
|
-
version = "0.2.
|
|
736
|
+
version = "0.2.4"
|
|
737
737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
738
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
739
739
|
dependencies = [
|
|
740
740
|
"portable-atomic",
|
|
741
741
|
]
|
|
742
742
|
|
|
743
743
|
[[package]]
|
|
744
744
|
name = "proc-macro2"
|
|
745
|
-
version = "1.0.
|
|
745
|
+
version = "1.0.92"
|
|
746
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
747
|
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
|
|
748
748
|
dependencies = [
|
|
749
749
|
"unicode-ident",
|
|
750
750
|
]
|
|
@@ -762,9 +762,9 @@ dependencies = [
|
|
|
762
762
|
|
|
763
763
|
[[package]]
|
|
764
764
|
name = "pyo3"
|
|
765
|
-
version = "0.
|
|
765
|
+
version = "0.23.2"
|
|
766
766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
767
|
+
checksum = "f54b3d09cbdd1f8c20650b28e7b09e338881482f4aa908a5f61a00c98fba2690"
|
|
768
768
|
dependencies = [
|
|
769
769
|
"cfg-if",
|
|
770
770
|
"indexmap",
|
|
@@ -781,9 +781,9 @@ dependencies = [
|
|
|
781
781
|
|
|
782
782
|
[[package]]
|
|
783
783
|
name = "pyo3-build-config"
|
|
784
|
-
version = "0.
|
|
784
|
+
version = "0.23.2"
|
|
785
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
786
|
+
checksum = "3015cf985888fe66cfb63ce0e321c603706cd541b7aec7ddd35c281390af45d8"
|
|
787
787
|
dependencies = [
|
|
788
788
|
"once_cell",
|
|
789
789
|
"target-lexicon",
|
|
@@ -791,9 +791,9 @@ dependencies = [
|
|
|
791
791
|
|
|
792
792
|
[[package]]
|
|
793
793
|
name = "pyo3-ffi"
|
|
794
|
-
version = "0.
|
|
794
|
+
version = "0.23.2"
|
|
795
795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
-
checksum = "
|
|
796
|
+
checksum = "6fca7cd8fd809b5ac4eefb89c1f98f7a7651d3739dfb341ca6980090f554c270"
|
|
797
797
|
dependencies = [
|
|
798
798
|
"libc",
|
|
799
799
|
"pyo3-build-config",
|
|
@@ -801,9 +801,9 @@ dependencies = [
|
|
|
801
801
|
|
|
802
802
|
[[package]]
|
|
803
803
|
name = "pyo3-log"
|
|
804
|
-
version = "0.
|
|
804
|
+
version = "0.12.0"
|
|
805
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
-
checksum = "
|
|
806
|
+
checksum = "3eb421dc86d38d08e04b927b02424db480be71b777fa3a56f32e2f2a3a1a3b08"
|
|
807
807
|
dependencies = [
|
|
808
808
|
"arc-swap",
|
|
809
809
|
"log",
|
|
@@ -812,9 +812,9 @@ dependencies = [
|
|
|
812
812
|
|
|
813
813
|
[[package]]
|
|
814
814
|
name = "pyo3-macros"
|
|
815
|
-
version = "0.
|
|
815
|
+
version = "0.23.2"
|
|
816
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
-
checksum = "
|
|
817
|
+
checksum = "34e657fa5379a79151b6ff5328d9216a84f55dc93b17b08e7c3609a969b73aa0"
|
|
818
818
|
dependencies = [
|
|
819
819
|
"proc-macro2",
|
|
820
820
|
"pyo3-macros-backend",
|
|
@@ -824,9 +824,9 @@ dependencies = [
|
|
|
824
824
|
|
|
825
825
|
[[package]]
|
|
826
826
|
name = "pyo3-macros-backend"
|
|
827
|
-
version = "0.
|
|
827
|
+
version = "0.23.2"
|
|
828
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
-
checksum = "
|
|
829
|
+
checksum = "295548d5ffd95fd1981d2d3cf4458831b21d60af046b729b6fd143b0ba7aee2f"
|
|
830
830
|
dependencies = [
|
|
831
831
|
"heck",
|
|
832
832
|
"proc-macro2",
|
|
@@ -882,9 +882,9 @@ dependencies = [
|
|
|
882
882
|
|
|
883
883
|
[[package]]
|
|
884
884
|
name = "regex"
|
|
885
|
-
version = "1.11.
|
|
885
|
+
version = "1.11.1"
|
|
886
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
887
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
888
888
|
dependencies = [
|
|
889
889
|
"aho-corasick",
|
|
890
890
|
"memchr",
|
|
@@ -894,9 +894,9 @@ dependencies = [
|
|
|
894
894
|
|
|
895
895
|
[[package]]
|
|
896
896
|
name = "regex-automata"
|
|
897
|
-
version = "0.4.
|
|
897
|
+
version = "0.4.9"
|
|
898
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
899
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
900
900
|
dependencies = [
|
|
901
901
|
"aho-corasick",
|
|
902
902
|
"memchr",
|
|
@@ -946,9 +946,9 @@ dependencies = [
|
|
|
946
946
|
|
|
947
947
|
[[package]]
|
|
948
948
|
name = "rustc-hash"
|
|
949
|
-
version = "
|
|
949
|
+
version = "2.0.0"
|
|
950
950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
951
|
+
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
|
|
952
952
|
|
|
953
953
|
[[package]]
|
|
954
954
|
name = "rustc_version"
|
|
@@ -961,9 +961,9 @@ dependencies = [
|
|
|
961
961
|
|
|
962
962
|
[[package]]
|
|
963
963
|
name = "rustix"
|
|
964
|
-
version = "0.38.
|
|
964
|
+
version = "0.38.41"
|
|
965
965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
-
checksum = "
|
|
966
|
+
checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
|
|
967
967
|
dependencies = [
|
|
968
968
|
"bitflags",
|
|
969
969
|
"errno",
|
|
@@ -1007,18 +1007,18 @@ dependencies = [
|
|
|
1007
1007
|
|
|
1008
1008
|
[[package]]
|
|
1009
1009
|
name = "serde"
|
|
1010
|
-
version = "1.0.
|
|
1010
|
+
version = "1.0.215"
|
|
1011
1011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
-
checksum = "
|
|
1012
|
+
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
|
|
1013
1013
|
dependencies = [
|
|
1014
1014
|
"serde_derive",
|
|
1015
1015
|
]
|
|
1016
1016
|
|
|
1017
1017
|
[[package]]
|
|
1018
1018
|
name = "serde_derive"
|
|
1019
|
-
version = "1.0.
|
|
1019
|
+
version = "1.0.215"
|
|
1020
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
-
checksum = "
|
|
1021
|
+
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
|
|
1022
1022
|
dependencies = [
|
|
1023
1023
|
"proc-macro2",
|
|
1024
1024
|
"quote",
|
|
@@ -1027,9 +1027,9 @@ dependencies = [
|
|
|
1027
1027
|
|
|
1028
1028
|
[[package]]
|
|
1029
1029
|
name = "serde_json"
|
|
1030
|
-
version = "1.0.
|
|
1030
|
+
version = "1.0.133"
|
|
1031
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
-
checksum = "
|
|
1032
|
+
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
|
|
1033
1033
|
dependencies = [
|
|
1034
1034
|
"itoa",
|
|
1035
1035
|
"memchr",
|
|
@@ -1076,9 +1076,9 @@ dependencies = [
|
|
|
1076
1076
|
|
|
1077
1077
|
[[package]]
|
|
1078
1078
|
name = "syn"
|
|
1079
|
-
version = "2.0.
|
|
1079
|
+
version = "2.0.89"
|
|
1080
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1081
|
+
checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
|
|
1082
1082
|
dependencies = [
|
|
1083
1083
|
"proc-macro2",
|
|
1084
1084
|
"quote",
|
|
@@ -1093,9 +1093,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
1093
1093
|
|
|
1094
1094
|
[[package]]
|
|
1095
1095
|
name = "tempfile"
|
|
1096
|
-
version = "3.
|
|
1096
|
+
version = "3.14.0"
|
|
1097
1097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
-
checksum = "
|
|
1098
|
+
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
|
|
1099
1099
|
dependencies = [
|
|
1100
1100
|
"cfg-if",
|
|
1101
1101
|
"fastrand",
|
|
@@ -1131,18 +1131,15 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
|
1131
1131
|
|
|
1132
1132
|
[[package]]
|
|
1133
1133
|
name = "unicase"
|
|
1134
|
-
version = "2.
|
|
1134
|
+
version = "2.8.0"
|
|
1135
1135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
-
checksum = "
|
|
1137
|
-
dependencies = [
|
|
1138
|
-
"version_check",
|
|
1139
|
-
]
|
|
1136
|
+
checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
|
|
1140
1137
|
|
|
1141
1138
|
[[package]]
|
|
1142
1139
|
name = "unicode-ident"
|
|
1143
|
-
version = "1.0.
|
|
1140
|
+
version = "1.0.14"
|
|
1144
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
1142
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
|
1146
1143
|
|
|
1147
1144
|
[[package]]
|
|
1148
1145
|
name = "unindent"
|
|
@@ -1233,9 +1230,9 @@ dependencies = [
|
|
|
1233
1230
|
|
|
1234
1231
|
[[package]]
|
|
1235
1232
|
name = "wide"
|
|
1236
|
-
version = "0.7.
|
|
1233
|
+
version = "0.7.30"
|
|
1237
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "
|
|
1235
|
+
checksum = "58e6db2670d2be78525979e9a5f9c69d296fd7d670549fe9ebf70f8708cb5019"
|
|
1239
1236
|
dependencies = [
|
|
1240
1237
|
"bytemuck",
|
|
1241
1238
|
"safe_arch",
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: differt-core
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.27
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.9
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.10
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.11
|
|
8
8
|
Classifier: Programming Language :: Python :: 3.12
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
11
12
|
Classifier: Topic :: Scientific/Engineering
|
|
@@ -7,17 +7,17 @@ indexmap = {version = "2.5.0", features = ["serde"]}
|
|
|
7
7
|
log = "0.4.21"
|
|
8
8
|
nalgebra = "0.32.3"
|
|
9
9
|
ndarray = {version = "0.16", features = ["rayon"]}
|
|
10
|
-
numpy = "
|
|
10
|
+
numpy = "0.23"
|
|
11
11
|
obj-rs = "0.7.1"
|
|
12
12
|
ply-rs = "0.1.3"
|
|
13
|
-
pyo3 = {version = "0.
|
|
14
|
-
pyo3-log = "0.
|
|
13
|
+
pyo3 = {version = "0.23", features = ["indexmap"]}
|
|
14
|
+
pyo3-log = "0.12"
|
|
15
15
|
quick-xml = {version = "0.31.0", features = ["serialize"]}
|
|
16
16
|
serde = {version = "1.0.197", features = ["derive"]}
|
|
17
17
|
|
|
18
18
|
[dev-dependencies]
|
|
19
19
|
criterion = "0.5.1"
|
|
20
|
-
pyo3 = {version = "0.
|
|
20
|
+
pyo3 = {version = "0.23", features = ["auto-initialize"]}
|
|
21
21
|
rstest = "0.18.2"
|
|
22
22
|
testing_logger = "0.1.1"
|
|
23
23
|
|
|
@@ -36,5 +36,5 @@ unexpected_cfgs = {level = "warn", check-cfg = ['cfg(tarpaulin_include)']}
|
|
|
36
36
|
[package]
|
|
37
37
|
edition = "2021"
|
|
38
38
|
name = "differt-core"
|
|
39
|
-
rust-version = "1.
|
|
40
|
-
version = "0.0.
|
|
39
|
+
rust-version = "1.78.0"
|
|
40
|
+
version = "0.0.27"
|
|
@@ -127,14 +127,14 @@ impl TriangleMesh {
|
|
|
127
127
|
#[getter]
|
|
128
128
|
fn vertices<'py>(&self, py: Python<'py>) -> Bound<'py, PyArray2<f32>> {
|
|
129
129
|
let array = arr2(&self.vertices);
|
|
130
|
-
PyArray2::
|
|
130
|
+
PyArray2::from_owned_array(py, array)
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
/// :class:`Int[np.ndarray, 'num_triangles 3']<jaxtyping.Int>`: The array of triangle indices.
|
|
134
134
|
#[getter]
|
|
135
135
|
fn triangles<'py>(&self, py: Python<'py>) -> Bound<'py, PyArray2<usize>> {
|
|
136
136
|
let array = arr2(&self.triangles);
|
|
137
|
-
PyArray2::
|
|
137
|
+
PyArray2::from_owned_array(py, array)
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
/// :class:`Float[np.ndarray, 'num_vertices 3']<jaxtyping.Float>` | :data:`None`: The array of face colors.
|
|
@@ -146,7 +146,7 @@ impl TriangleMesh {
|
|
|
146
146
|
fn face_colors<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray2<f32>>> {
|
|
147
147
|
if let Some(face_colors) = &self.face_colors {
|
|
148
148
|
let array = arr2(face_colors);
|
|
149
|
-
return Some(PyArray2::
|
|
149
|
+
return Some(PyArray2::from_owned_array(py, array));
|
|
150
150
|
}
|
|
151
151
|
None
|
|
152
152
|
}
|
|
@@ -160,7 +160,7 @@ impl TriangleMesh {
|
|
|
160
160
|
#[getter]
|
|
161
161
|
fn face_materials<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray1<isize>>> {
|
|
162
162
|
if let Some(face_materials) = &self.face_materials {
|
|
163
|
-
return Some(PyArray1::
|
|
163
|
+
return Some(PyArray1::from_slice(py, face_materials.as_slice()));
|
|
164
164
|
}
|
|
165
165
|
None
|
|
166
166
|
}
|
|
@@ -174,7 +174,7 @@ impl TriangleMesh {
|
|
|
174
174
|
fn object_bounds<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray2<usize>>> {
|
|
175
175
|
if let Some(object_bounds) = &self.object_bounds {
|
|
176
176
|
let array = arr2(object_bounds);
|
|
177
|
-
return Some(PyArray2::
|
|
177
|
+
return Some(PyArray2::from_owned_array(py, array));
|
|
178
178
|
}
|
|
179
179
|
None
|
|
180
180
|
}
|
|
@@ -225,7 +225,7 @@ pub mod complete {
|
|
|
225
225
|
) -> Bound<'py, PyArray2<NodeId>> {
|
|
226
226
|
AllPathsFromCompleteGraphIter::new(self.clone(), from_, to, depth, include_from_and_to)
|
|
227
227
|
.collect_array()
|
|
228
|
-
.
|
|
228
|
+
.into_pyarray(py)
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
/// Return an iterator over all paths of length ``depth``
|
|
@@ -497,7 +497,7 @@ pub mod complete {
|
|
|
497
497
|
mut slf: PyRefMut<'py, Self>,
|
|
498
498
|
py: Python<'py>,
|
|
499
499
|
) -> Option<Bound<'py, PyArray1<NodeId>>> {
|
|
500
|
-
slf.next().map(|path| PyArray1::
|
|
500
|
+
slf.next().map(|path| PyArray1::from_vec(py, path))
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
fn __len__(&self) -> usize {
|
|
@@ -557,7 +557,7 @@ pub mod complete {
|
|
|
557
557
|
mut slf: PyRefMut<'py, Self>,
|
|
558
558
|
py: Python<'py>,
|
|
559
559
|
) -> Option<Bound<'py, PyArray2<NodeId>>> {
|
|
560
|
-
slf.iter.next().map(|paths| paths.
|
|
560
|
+
slf.iter.next().map(|paths| paths.into_pyarray(py))
|
|
561
561
|
}
|
|
562
562
|
|
|
563
563
|
fn __len__(&self) -> usize {
|
|
@@ -889,7 +889,7 @@ pub mod directed {
|
|
|
889
889
|
) -> Bound<'py, PyArray2<NodeId>> {
|
|
890
890
|
AllPathsFromDiGraphIter::new(self.clone(), from_, to, depth, include_from_and_to)
|
|
891
891
|
.collect_array()
|
|
892
|
-
.
|
|
892
|
+
.into_pyarray(py)
|
|
893
893
|
}
|
|
894
894
|
|
|
895
895
|
/// Return an iterator over all paths of length ``depth``
|
|
@@ -1057,7 +1057,7 @@ pub mod directed {
|
|
|
1057
1057
|
mut slf: PyRefMut<'py, Self>,
|
|
1058
1058
|
py: Python<'py>,
|
|
1059
1059
|
) -> Option<Bound<'py, PyArray1<NodeId>>> {
|
|
1060
|
-
slf.next().map(|path| PyArray1::
|
|
1060
|
+
slf.next().map(|path| PyArray1::from_vec(py, path))
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
1063
1063
|
/// Count the number of elements in this iterator by consuming it.
|
|
@@ -1101,7 +1101,7 @@ pub mod directed {
|
|
|
1101
1101
|
mut slf: PyRefMut<'py, Self>,
|
|
1102
1102
|
py: Python<'py>,
|
|
1103
1103
|
) -> Option<Bound<'py, PyArray2<NodeId>>> {
|
|
1104
|
-
slf.iter.next().map(|paths| paths.
|
|
1104
|
+
slf.iter.next().map(|paths| paths.into_pyarray(py))
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
1107
|
/// Count the number of elements in this iterator by consuming it.
|
|
@@ -29,7 +29,7 @@ impl TriangleScene {
|
|
|
29
29
|
#[classmethod]
|
|
30
30
|
fn load_xml(cls: &Bound<'_, PyType>, file: &str) -> PyResult<Self> {
|
|
31
31
|
// TODO: create a Rust variant without PyType?
|
|
32
|
-
let sionna_scene_py_type = PyType::
|
|
32
|
+
let sionna_scene_py_type = PyType::new::<SionnaScene>(cls.py());
|
|
33
33
|
let sionna = SionnaScene::load_xml(&sionna_scene_py_type, file)?;
|
|
34
34
|
|
|
35
35
|
let path = PathBuf::from(file);
|
|
@@ -42,7 +42,7 @@ impl TriangleScene {
|
|
|
42
42
|
|
|
43
43
|
let mut mesh = TriangleMesh::default();
|
|
44
44
|
|
|
45
|
-
let triangle_mesh_py_type = PyType::
|
|
45
|
+
let triangle_mesh_py_type = PyType::new::<TriangleMesh>(cls.py());
|
|
46
46
|
|
|
47
47
|
for (_, shape) in sionna.shapes.into_iter() {
|
|
48
48
|
let mesh_file_path = folder.join(shape.file);
|
|
@@ -12,6 +12,7 @@ classifiers = [
|
|
|
12
12
|
"Programming Language :: Python :: 3.10",
|
|
13
13
|
"Programming Language :: Python :: 3.11",
|
|
14
14
|
"Programming Language :: Python :: 3.12",
|
|
15
|
+
"Programming Language :: Python :: 3.13",
|
|
15
16
|
"License :: OSI Approved :: MIT License",
|
|
16
17
|
"Operating System :: OS Independent",
|
|
17
18
|
"Topic :: Scientific/Engineering",
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/jeertmans/DiffeRT/main/static/logo_250px.png" alt="DiffeRT logo"></img>
|
|
3
|
-
</div>
|
|
4
|
-
|
|
5
|
-
<div align="center">
|
|
6
|
-
|
|
7
|
-
# DiffeRT-core
|
|
8
|
-
|
|
9
|
-
[![Latest Release][pypi-version-badge]][pypi-version-url]
|
|
10
|
-
[![Python version][pypi-python-version-badge]][pypi-version-url]
|
|
11
|
-
[![Documentation][documentation-badge]][documentation-url]
|
|
12
|
-
|
|
13
|
-
</div>
|
|
14
|
-
|
|
15
|
-
This package contains the core backend of
|
|
16
|
-
[DiffeRT](https://pypi.org/project/DiffeRT/),
|
|
17
|
-
implemented in Rust for performances.
|
|
18
|
-
|
|
19
|
-
As a result, both `differt` and `differt-core` will
|
|
20
|
-
share the same version, and `differt` directly depends on `differt-core`.
|
|
21
|
-
|
|
22
|
-
However, you can decide to only install `differt-core`
|
|
23
|
-
if you want to use features that are specific to this package.
|
|
24
|
-
|
|
25
|
-
The installation procedure, contributing guidelines, and documentation,
|
|
26
|
-
are shared with the
|
|
27
|
-
[main DiffeRT package](https://github.com/jeertmans/DiffeRT).
|
|
28
|
-
|
|
29
|
-
[pypi-version-badge]: https://img.shields.io/pypi/v/DiffeRT-core?label=DiffeRT-core&color=blueviolet
|
|
30
|
-
[pypi-version-url]: https://pypi.org/project/DiffeRT-core/
|
|
31
|
-
[pypi-python-version-badge]: https://img.shields.io/pypi/pyversions/DiffeRT-core?color=orange
|
|
32
|
-
[documentation-badge]: https://readthedocs.org/projects/differt/badge/?version=latest
|
|
33
|
-
[documentation-url]: https://differt.readthedocs.io/latest/?badge=latest
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/differt-core/benches/benchmarks/graph_iterators.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/__init__.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/_lowlevel/rt/graph.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/geometry/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/scene/__init__.py
RENAMED
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/differt-core/python/differt_core/scene/_sionna.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.27}/python/differt_core/_lowlevel/scene/triangle_scene.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|