forgekernel-rs 0.1.0__tar.gz → 0.9.0__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.
@@ -16,7 +16,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
16
16
 
17
17
  [[package]]
18
18
  name = "forge-core"
19
- version = "0.1.0"
19
+ version = "0.9.0"
20
20
  dependencies = [
21
21
  "num-bigint",
22
22
  "num-integer",
@@ -1,9 +1,9 @@
1
1
  [package]
2
2
  name = "forge-core"
3
- version = "0.1.0"
3
+ version = "0.9.0"
4
4
  edition = "2021"
5
5
  license = "Apache-2.0"
6
- description = "Native (Rust) accelerator for the forgekernel exact-arithmetic B-rep CAD kernel"
6
+ description = "Native (Rust) build of performance-critical routines for the forgekernel CAD kernel"
7
7
  repository = "https://github.com/gitcad-xyz/forge"
8
8
  readme = "README.md"
9
9
 
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: forgekernel_rs
3
+ Version: 0.9.0
4
+ Classifier: Development Status :: 3 - Alpha
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: Apache Software License
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Classifier: Operating System :: MacOS
9
+ Classifier: Operating System :: Microsoft :: Windows
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Rust
12
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
13
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
14
+ Summary: Native (Rust) build of performance-critical routines for the forgekernel CAD kernel
15
+ Keywords: cad,b-rep,geometry,kernel,nurbs,exact-arithmetic,rust
16
+ Author-email: Dan Willis <danielcwillis@gmail.com>
17
+ License: Apache-2.0
18
+ Requires-Python: >=3.11
19
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
20
+ Project-URL: Homepage, https://github.com/gitcad-xyz/forge
21
+ Project-URL: Issues, https://github.com/gitcad-xyz/forge/issues
22
+ Project-URL: Repository, https://github.com/gitcad-xyz/forge
23
+
24
+ # forgekernel_rs
25
+
26
+ Native (Rust) build of performance-critical routines for
27
+ [`forgekernel`](https://pypi.org/project/forgekernel/), an exact-arithmetic
28
+ B-rep CAD kernel.
29
+
30
+ `forgekernel` runs without this package (pure Python). When `forgekernel_rs` is
31
+ installed, it is used for the surface–surface intersection and geometric
32
+ predicate routines and returns the same results.
33
+
34
+ ## Install
35
+
36
+ ```
37
+ pip install forgekernel[rust]
38
+ ```
39
+
40
+ ## Build
41
+
42
+ Built with [PyO3](https://pyo3.rs) and [maturin](https://www.maturin.rs) as an
43
+ `abi3` wheel (one wheel per platform, CPython 3.11+). Exact arithmetic uses
44
+ `num-bigint` / `num-rational`.
45
+
46
+ License: Apache-2.0. Source: https://github.com/gitcad-xyz/forge
47
+
@@ -0,0 +1,23 @@
1
+ # forgekernel_rs
2
+
3
+ Native (Rust) build of performance-critical routines for
4
+ [`forgekernel`](https://pypi.org/project/forgekernel/), an exact-arithmetic
5
+ B-rep CAD kernel.
6
+
7
+ `forgekernel` runs without this package (pure Python). When `forgekernel_rs` is
8
+ installed, it is used for the surface–surface intersection and geometric
9
+ predicate routines and returns the same results.
10
+
11
+ ## Install
12
+
13
+ ```
14
+ pip install forgekernel[rust]
15
+ ```
16
+
17
+ ## Build
18
+
19
+ Built with [PyO3](https://pyo3.rs) and [maturin](https://www.maturin.rs) as an
20
+ `abi3` wheel (one wheel per platform, CPython 3.11+). Exact arithmetic uses
21
+ `num-bigint` / `num-rational`.
22
+
23
+ License: Apache-2.0. Source: https://github.com/gitcad-xyz/forge
@@ -4,13 +4,13 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "forgekernel_rs"
7
- version = "0.1.0"
8
- description = "Native (Rust) accelerator for forgekernel the exact-arithmetic B-rep CAD kernel"
7
+ version = "0.9.0"
8
+ description = "Native (Rust) build of performance-critical routines for the forgekernel CAD kernel"
9
9
  readme = "README.md"
10
10
  license = {text = "Apache-2.0"}
11
11
  requires-python = ">=3.11"
12
12
  authors = [{name = "Dan Willis", email = "danielcwillis@gmail.com"}]
13
- keywords = ["cad", "b-rep", "geometry", "kernel", "nurbs", "exact-arithmetic", "rust", "pyo3"]
13
+ keywords = ["cad", "b-rep", "geometry", "kernel", "nurbs", "exact-arithmetic", "rust"]
14
14
  classifiers = [
15
15
  "Development Status :: 3 - Alpha",
16
16
  "Intended Audience :: Developers",
@@ -1,45 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: forgekernel_rs
3
- Version: 0.1.0
4
- Classifier: Development Status :: 3 - Alpha
5
- Classifier: Intended Audience :: Developers
6
- Classifier: License :: OSI Approved :: Apache Software License
7
- Classifier: Operating System :: POSIX :: Linux
8
- Classifier: Operating System :: MacOS
9
- Classifier: Operating System :: Microsoft :: Windows
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Rust
12
- Classifier: Topic :: Scientific/Engineering :: Mathematics
13
- Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
14
- Summary: Native (Rust) accelerator for forgekernel — the exact-arithmetic B-rep CAD kernel
15
- Keywords: cad,b-rep,geometry,kernel,nurbs,exact-arithmetic,rust,pyo3
16
- Author-email: Dan Willis <danielcwillis@gmail.com>
17
- License: Apache-2.0
18
- Requires-Python: >=3.11
19
- Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
20
- Project-URL: Homepage, https://github.com/gitcad-xyz/forge
21
- Project-URL: Issues, https://github.com/gitcad-xyz/forge/issues
22
- Project-URL: Repository, https://github.com/gitcad-xyz/forge
23
-
24
- # forgekernel_rs — native accelerator for forgekernel
25
-
26
- The optional Rust build of the hot paths in
27
- [`forgekernel`](https://pypi.org/project/forgekernel/), the exact-arithmetic
28
- B-rep CAD kernel. It is a **drop-in speed-up, not a dependency**: `forgekernel`
29
- runs pure-Python and produces identical (exact ℚ) results without it, then
30
- transparently uses `forgekernel_rs` for the surface–surface intersection and
31
- predicate inner loops when the extension is importable.
32
-
33
- Bit-identical to the Python reference — every ported routine is oracle-checked
34
- against it, so the accelerator never changes an answer, only the wall time.
35
-
36
- ```bash
37
- pip install forgekernel[rust] # forgekernel + this accelerator
38
- ```
39
-
40
- Built with [PyO3](https://pyo3.rs) + [maturin](https://www.maturin.rs) as an
41
- `abi3-py311` wheel (one wheel per platform serves every CPython ≥ 3.11).
42
- Exact rationals use `num-bigint` / `num-rational`.
43
-
44
- Apache-2.0. Source and design: https://github.com/gitcad-xyz/forge
45
-
@@ -1,21 +0,0 @@
1
- # forgekernel_rs — native accelerator for forgekernel
2
-
3
- The optional Rust build of the hot paths in
4
- [`forgekernel`](https://pypi.org/project/forgekernel/), the exact-arithmetic
5
- B-rep CAD kernel. It is a **drop-in speed-up, not a dependency**: `forgekernel`
6
- runs pure-Python and produces identical (exact ℚ) results without it, then
7
- transparently uses `forgekernel_rs` for the surface–surface intersection and
8
- predicate inner loops when the extension is importable.
9
-
10
- Bit-identical to the Python reference — every ported routine is oracle-checked
11
- against it, so the accelerator never changes an answer, only the wall time.
12
-
13
- ```bash
14
- pip install forgekernel[rust] # forgekernel + this accelerator
15
- ```
16
-
17
- Built with [PyO3](https://pyo3.rs) + [maturin](https://www.maturin.rs) as an
18
- `abi3-py311` wheel (one wheel per platform serves every CPython ≥ 3.11).
19
- Exact rationals use `num-bigint` / `num-rational`.
20
-
21
- Apache-2.0. Source and design: https://github.com/gitcad-xyz/forge