Skip to main content

pyrucast

A finite element library in Rust, inspired by cast3m, exposed to Python — and usable as is in pure Rust (pyo3 is an optional dependency: a default build pulls in neither pyo3 nor libpython).

  • Full documentation: the mdbook in book/ (architecture, memory model, meshing, fields, physics…) — mdbook build book for the HTML.
  • Rust API reference: cargo doc --no-deps --lib --open.

Prerequisites

Tool Version Installation
Rust ≥ 1.89 (the crate's rust-version), edition 2024 rustup
Python ≥ 3.11 Python API only — not needed in pure Rust
Python headers — Python API only — Linux: python3-dev (Debian/Ubuntu) or python3-devel (Fedora/RHEL). Windows: included in the official installer.

Use in pure Rust (without Python)

[dependencies]
pyrucast = { git = "…", default-features = false }   # no pyo3, no libpython
use pyrucast::atoms::ElementType;
let mesh = pyrucast::ops::mesh::triangulate_surface(&contour, ElementType::TRI3, Some(1.0))?;

cargo build / cargo test (without any feature) compile the core in pure Rust — neither Python nor a venv required. The Python API (#[pyclass]) lives behind the python-api feature, enabled automatically by maturin.

Building in a venv (Python API)

For builds with the Python API (maturin, or cargo --features python-api), pyo3 locates the interpreter through VIRTUAL_ENV: always activate the venv before cargo or maturin, otherwise the build fails with error: failed to run the Python interpreter at .... (A plain cargo build does not have this constraint.)

Linux / macOS

python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip maturin
maturin develop --release

Windows (PowerShell)

python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install --upgrade pip maturin
maturin develop --release

maturin develop compiles the module and installs it into the venv. Check:

python -c "import pyrucast; c = pyrucast.Coords(2); print(c)"

After any change to the Rust, simply re-run maturin develop --release.

Development

pip install pytest ruff     # on top of maturin, in the venv
cargo build                 # pure Rust core (without pyo3; no venv needed)
cargo test                  # unit + integration tests + doctests (pure Rust)
maturin develop && python -m pytest   # Python tests
cargo fmt && ruff format .  # standard formatting (Rust + Python)
bash script/check_all.sh    # chains all the checks (formatting included)
bash script/check_doc.sh    # or a single block: format / rust / python / examples / doc

The book's chapter Building and testing details the Cargo features (viz, viz-interactive, stub-gen…), the generation of the python/pyrucast/_pyrucast/__init__.pyi stub and the common troubleshooting.

License

Distributed under the Mozilla Public License 2.0 (MPL-2.0).

It is a per-file copyleft: any modification of a pyrucast source file must be republished under the MPL, but one can freely build proprietary code on top of the library and combine it with it. The MPL is moreover GPL/CeCILL compatible ("Secondary Licenses", §3.3).

Release files for pyrucast 0.9.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyrucast 0.9.0
File Size Uploaded
pyrucast-0.9.0.tar.gz 1.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyrucast 0.9.0
File Interpreter ABI Platform
pyrucast-0.9.0-cp311-abi3-win_amd64.whl CPython 3.11 abi3 Windows x86-64 Details
pyrucast-0.9.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 abi3 Linux glibc 2.17+ x86-64 Details
pyrucast-0.9.0-cp311-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.11 abi3 macOS 10.12+ x86-64, macOS 11.0+ ARM64, macOS 10.12+ universal2 (ARM64, x86-64) Details

Total release size: 19.7 MB

Release files / pyrucast-0.9.0.tar.gz

Download URL pyrucast-0.9.0.tar.gz
Size 1.5 MB
Tags Source
SHA-256 checksum
How to use checksums
b5e4f96f7209ce4cd2c3f0134b99a5f031cf85e41da0baffb89c46007f96faa9
BLAKE2b-256 checksum
How to use checksums
0adebefb068d990e600eeca93ea9b6d04ee08303ac7b4e7128c98e75fc23b73e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / pyrucast-0.9.0-cp311-abi3-win_amd64.whl

Download URL pyrucast-0.9.0-cp311-abi3-win_amd64.whl
Size 3.9 MB
Tags CPython 3.11 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
da61f9ed2f94874486949235072e256e9fa06dcb964c4c44302686b5d419b298
BLAKE2b-256 checksum
How to use checksums
d16055802dbc336283857725ef7c270de3ada0fa423a1e9db2e925d161b0036a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / pyrucast-0.9.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyrucast-0.9.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 abi3
SHA-256 checksum
How to use checksums
93d4c56bb85cc5f483323d0bc8096e8e0ed1c4094a746443c2cd808156e53b0b
BLAKE2b-256 checksum
How to use checksums
543ee945dbeed188c00f5d58dd69ad9e1c3b660f1341e89a4129c6408b098f3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / pyrucast-0.9.0-cp311-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL pyrucast-0.9.0-cp311-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 7.6 MB
Tags CPython 3.11 abi3 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bfe6c821a71a518f743752a0467c02774610a981b3c923ced994de83e16d82e2
BLAKE2b-256 checksum
How to use checksums
5ed90914ece6e63913ff150437431311c6cae821ca2c6601a61b3a734c0c375c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release history Release notifications | RSS feed

0.10.0

4 release files

0.9.1

4 release files

This release

0.9.0 This release

4 release files

0.8.0

4 release files

0.7.1

4 release files

0.7.0

4 release files

0.6.0

4 release files

0.5.1

4 release files

0.5.0

4 release files

0.4.1

4 release files

0.4.0

4 release files

0.3.3

4 release files

0.3.1

4 release files

0.3.0

4 release files

0.2.1

4 release files

0.2.0

4 release files

0.1.4

4 release files

0.1.3

4 release files

0.1.2

3 release files

0.1.0

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page