differt-core 0.6.0__tar.gz → 0.6.2__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 (62) hide show
  1. {differt_core-0.6.0 → differt_core-0.6.2}/Cargo.lock +1 -1
  2. {differt_core-0.6.0 → differt_core-0.6.2}/PKG-INFO +3 -2
  3. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/Cargo.toml +1 -1
  4. {differt_core-0.6.0 → differt_core-0.6.2}/pyproject.toml +3 -2
  5. {differt_core-0.6.0 → differt_core-0.6.2}/Cargo.toml +0 -0
  6. {differt_core-0.6.0 → differt_core-0.6.2}/LICENSE.md +0 -0
  7. {differt_core-0.6.0 → differt_core-0.6.2}/README.md +0 -0
  8. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/LICENSE.md +0 -0
  9. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/README.md +0 -0
  10. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/benches/bench_main.rs +0 -0
  11. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/benches/benchmarks/graph_iterators.rs +0 -0
  12. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/benches/benchmarks/mod.rs +0 -0
  13. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/__init__.py +0 -0
  14. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/_differt_core/__init__.pyi +0 -0
  15. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/_differt_core/geometry/triangle_mesh.pyi +0 -0
  16. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/_differt_core/rt/__init__.pyi +0 -0
  17. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/_differt_core/rt/graph.pyi +0 -0
  18. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/_differt_core/scene/sionna.pyi +0 -0
  19. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/_differt_core/scene/triangle_scene.pyi +0 -0
  20. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/geometry/__init__.py +0 -0
  21. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/geometry/_triangle_mesh.py +0 -0
  22. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/py.typed +0 -0
  23. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/rt/__init__.py +0 -0
  24. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/rt/_graph.py +0 -0
  25. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/scene/__init__.py +0 -0
  26. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/scene/_sionna.py +0 -0
  27. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/python/differt_core/scene/_triangle_scene.py +0 -0
  28. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/geometry/mod.rs +0 -0
  29. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/geometry/triangle_mesh.rs +0 -0
  30. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/lib.rs +0 -0
  31. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/rt/graph.rs +0 -0
  32. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/rt/mod.rs +0 -0
  33. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/scene/mod.rs +0 -0
  34. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/scene/sionna.rs +0 -0
  35. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/src/scene/triangle_scene.rs +0 -0
  36. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/tests/__init__.py +0 -0
  37. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/tests/rt/__init__.py +0 -0
  38. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/tests/rt/test_graph.py +0 -0
  39. {differt_core-0.6.0 → differt_core-0.6.2}/differt-core/tests/test_version.py +0 -0
  40. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/__init__.py +0 -0
  41. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/_differt_core/__init__.pyi +0 -0
  42. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/_differt_core/geometry/triangle_mesh.pyi +0 -0
  43. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/_differt_core/rt/__init__.pyi +0 -0
  44. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/_differt_core/rt/graph.pyi +0 -0
  45. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/_differt_core/scene/sionna.pyi +0 -0
  46. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/_differt_core/scene/triangle_scene.pyi +0 -0
  47. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/geometry/__init__.py +0 -0
  48. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/geometry/_triangle_mesh.py +0 -0
  49. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/py.typed +0 -0
  50. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/rt/__init__.py +0 -0
  51. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/rt/_graph.py +0 -0
  52. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/scene/__init__.py +0 -0
  53. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/scene/_sionna.py +0 -0
  54. {differt_core-0.6.0 → differt_core-0.6.2}/python/differt_core/scene/_triangle_scene.py +0 -0
  55. {differt_core-0.6.0 → differt_core-0.6.2}/src/geometry/mod.rs +0 -0
  56. {differt_core-0.6.0 → differt_core-0.6.2}/src/geometry/triangle_mesh.rs +0 -0
  57. {differt_core-0.6.0 → differt_core-0.6.2}/src/lib.rs +0 -0
  58. {differt_core-0.6.0 → differt_core-0.6.2}/src/rt/graph.rs +0 -0
  59. {differt_core-0.6.0 → differt_core-0.6.2}/src/rt/mod.rs +0 -0
  60. {differt_core-0.6.0 → differt_core-0.6.2}/src/scene/mod.rs +0 -0
  61. {differt_core-0.6.0 → differt_core-0.6.2}/src/scene/sionna.rs +0 -0
  62. {differt_core-0.6.0 → differt_core-0.6.2}/src/scene/triangle_scene.rs +0 -0
@@ -247,7 +247,7 @@ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
247
247
 
248
248
  [[package]]
249
249
  name = "differt-core"
250
- version = "0.6.0"
250
+ version = "0.6.2"
251
251
  dependencies = [
252
252
  "criterion",
253
253
  "indexmap",
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: differt-core
3
- Version: 0.6.0
3
+ Version: 0.6.2
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.11
6
6
  Classifier: Programming Language :: Python :: 3.12
7
7
  Classifier: Programming Language :: Python :: 3.13
8
- Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Programming Language :: Python :: 3.14
9
+ Classifier: Programming Language :: Python :: Free Threading
9
10
  Classifier: Operating System :: OS Independent
10
11
  Classifier: Topic :: Scientific/Engineering
11
12
  Classifier: Programming Language :: Rust
@@ -37,5 +37,5 @@ unexpected_cfgs = {level = "warn", check-cfg = ['cfg(tarpaulin_include)']}
37
37
  edition = "2021"
38
38
  name = "differt-core"
39
39
  rust-version = "1.78.0"
40
- version = "0.6.0"
40
+ version = "0.6.2"
41
41
  readme = "README.md"
@@ -1,6 +1,6 @@
1
1
  [build-system]
2
2
  build-backend = "maturin"
3
- requires = ["maturin>=1.6,<2"]
3
+ requires = ["maturin>=1.9.6,<2"]
4
4
 
5
5
  [project]
6
6
  authors = [
@@ -11,7 +11,8 @@ classifiers = [
11
11
  "Programming Language :: Python :: 3.11",
12
12
  "Programming Language :: Python :: 3.12",
13
13
  "Programming Language :: Python :: 3.13",
14
- "License :: OSI Approved :: MIT License",
14
+ "Programming Language :: Python :: 3.14",
15
+ "Programming Language :: Python :: Free Threading",
15
16
  "Operating System :: OS Independent",
16
17
  "Topic :: Scientific/Engineering",
17
18
  "Programming Language :: Rust",
File without changes
File without changes
File without changes
File without changes
File without changes