Skip to main content

PyMC-BART-rs

Rust implementation of PyMC-BART. PyMC-BART extends the PyMC probabilistic programming framework to be able to define and solve models including a Bayesian Additive Regression Tree (BART) random variable. PyMC-BART also includes a few helpers function to aid with the interpretation of those models and perform variable selection.

Table of Contents

Installation

PyMC-BART is available on PyPI with pre-built wheels for Linux (x86_64, aarch64), Windows (x64), and macOS (x86_64, aarch64). To install using pip

pip install pymc-bart-rs

Usage

Get started by using PyMC-BART to set up a BART model

import pymc as pm
import pymc_bart_rs as pmb

X, y = ... # Your data replaces "..."
with pm.Model() as model:
    bart = pmb.BART('bart', X, y)
    ...
    idata = pm.sample()

Modifications

The core Particle Gibbs (PG) sampling algorithm for BART remains the same in this Rust implementation as the original Python implementation. What differs is the choice of data structure to represent the Binary Decision Tree.

A DecisionTree structure is implemented as a number of parallel arrays. The i-th element of each array holds information about node i. The zero'th node is the tree's root. Some of the arrays only apply to either leaves or split nodes. In this case, the values of the nodes of the other arrays are arbitrary. For example, feature and threshold arrays only apply to split nodes. The values for leaf nodes in these arrays are therefore arbitrary.

Release files for pymc-bart-rs 0.1.2

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

Source distribution (sdist)

Source distribution for pymc-bart-rs 0.1.2
File Size Uploaded
pymc_bart_rs-0.1.2.tar.gz 257.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymc-bart-rs 0.1.2
File
pymc_bart_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.28+ x86-64 Details
pymc_bart_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pymc_bart_rs-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
pymc_bart_rs-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pymc_bart_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
pymc_bart_rs-0.1.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pymc_bart_rs-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
pymc_bart_rs-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pymc_bart_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
pymc_bart_rs-0.1.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pymc_bart_rs-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
pymc_bart_rs-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pymc_bart_rs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
pymc_bart_rs-0.1.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pymc_bart_rs-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
pymc_bart_rs-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
pymc_bart_rs-0.1.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pymc_bart_rs-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64 Details
pymc_bart_rs-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64 Details

Total release size: 24.2 MB

Release files / pymc_bart_rs-0.1.2.tar.gz

Download URL pymc_bart_rs-0.1.2.tar.gz
Size 257.9 kB
Tags Source
SHA-256 checksum
How to use checksums
1f9085d2e3ebb7d3a3e77ef531c6a88cdee7c8dec9361f8dd2b1d3c951d9a63d
BLAKE2b-256 checksum
How to use checksums
d93f5e4dbc8484f5bc74b069ebf8ae21d4652bec804bf7355b96fadb64e408c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl

Download URL pymc_bart_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags Linux glibc 2.28+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
2a84f27828cdac17f3b29cb4b4b65573c0f4a3ec6ddcc47dd652053a89b51448
BLAKE2b-256 checksum
How to use checksums
e95a9e31565d35ba270e7a1d2e98d547725081dd4f2f1e694518d651f6359d16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
4ed6acba590d5cda9b1c8bf35082e0bb30b9c4fd904526634682c9f67a77de3d
BLAKE2b-256 checksum
How to use checksums
b901e218f251e1b5caf5c37c7af25dea0ee202b4e57b8a914e7bb3e5fb46e928
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
b290101176da276301751ad5bbeb13381973606a1e5bb23fcc5ba61ae40df401
BLAKE2b-256 checksum
How to use checksums
4c3d85be66211bd4e7bb2483ae255dfb5c4c182245196b3355f43e6e3ef30552
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
6e4ed6d575800af1c63fa462aa2a670032268fb439e7da71904b742b1ec5d87d
BLAKE2b-256 checksum
How to use checksums
605ac556e2625dd91b68e87a1df91dd704ec9ab025edbb5a359a79205e244f39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp312-cp312-win_amd64.whl

Download URL pymc_bart_rs-0.1.2-cp312-cp312-win_amd64.whl
Size 211.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
57b58b17ae4634c101b8068d1e1cee418fd924e428180092f7866c1eda114ed7
BLAKE2b-256 checksum
How to use checksums
38367ff4a569a820f45d337055e2ed1650d20ccb720a4a4bf164c23a93dc33bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5c8bd92df02c17246d61b992bc3a4d4262e9419ce22ea4d27448e133176f11d0
BLAKE2b-256 checksum
How to use checksums
c3eaa74229cb971541d46c9f19f1d3247d4fb30aaa6a454162f402bad216a540
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1668bccff797de0ed93147c94ffb7eb55ccb2afbb59dcc216c280d80e7780da2
BLAKE2b-256 checksum
How to use checksums
37bd0120fe5c5deae3f471fbc257e2ff1638130d156e7c92ea8d5f0a66568a31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL pymc_bart_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Size 301.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
46aa66c85c3031558a97f3da1cab8b09821b624c3d78e57014f7fea61fedb909
BLAKE2b-256 checksum
How to use checksums
a2860e32fc8e7b965d7298996775304685774467eed716a835047898672f4099
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Size 311.9 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
74ec84b127f4eb50b3e5c4b5248a78e1ce1d807bf2a8af058217676a56a98991
BLAKE2b-256 checksum
How to use checksums
98e96e6290fd62f4d64356ba199af815af1e60f29a10cdf82d8e4324bc6a8a3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp311-cp311-win_amd64.whl

Download URL pymc_bart_rs-0.1.2-cp311-cp311-win_amd64.whl
Size 214.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9946585ded30068c4dca4a29b9f54458c28ff830689d66e7be608f9adbe8924c
BLAKE2b-256 checksum
How to use checksums
efe70a6c12058ba66206a0d78ca50c3de22dbce609f7839a52e590a5d94dc8f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d1055fce441ad1d9a84e1e00ad4b5b1f1ce569cf4be05417017772df43a3c88e
BLAKE2b-256 checksum
How to use checksums
0b3f3e2a8583a23cad3c1d6d72a6f240656689924e43a775b63162ba9b3aa2bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
da14c6ddf1fef2e2d370c008b0762c90a4b21faced6b827b549af0801a2868d4
BLAKE2b-256 checksum
How to use checksums
bb033f1cecac4ab75d1838ab4e92c54ff64afb0552fe7926dd03806ac71a3c0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL pymc_bart_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Size 302.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e893ccad0172743752d824716d0e59efeb8a7af5dea13439c3a5e94581ef9840
BLAKE2b-256 checksum
How to use checksums
99f3a6b1021d49924287f408e6d15b8501615bee5f981c1ef581520285d36913
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Size 312.6 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
5085f48708861f7abe9b639d4469a066788406d9472976067ea5eeb88d96f735
BLAKE2b-256 checksum
How to use checksums
bb33d8a09f0cf473868155146d54305a3c40909daad2027b5181998fe4334202
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp310-cp310-win_amd64.whl

Download URL pymc_bart_rs-0.1.2-cp310-cp310-win_amd64.whl
Size 214.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
dbf53849777cc5a57ef9d20fcb19a4c98999e7683b5388a477c7582fbd800d75
BLAKE2b-256 checksum
How to use checksums
a0442cabb4c3656509f17692c88bdb91c8aa57c7bee7e93f6fc0e2291e49d861
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f19be1609bc84527989fe3698f188c6225da5ad2049fd8976a95296594d896d6
BLAKE2b-256 checksum
How to use checksums
372f6cf2318ba9c44281f42696d2f57f9fa07ce97b7f7887d7715dfe362f3834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
74ea9991a874dc737a01fdb163081cdb7cd649a9ab9362978ab8ddc19a036fcd
BLAKE2b-256 checksum
How to use checksums
2fb21e940388c3e5e92dfd9dfed602b036b40443f2638c9127d40eaf42d47bf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL pymc_bart_rs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Size 302.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3f1062d7e504ceac1d5748bba8c9d92f7707207c4e2cbcfddd69fdf8b10ea8f7
BLAKE2b-256 checksum
How to use checksums
dcf45b26edfc1ce2166dbb16c21b1704dca08abb2889acdbefa69ad925ddcfeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Size 312.6 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
86d6be400b15e47a76d807911aa57b5f38cf7011af6ae1d40ce722154b60681a
BLAKE2b-256 checksum
How to use checksums
fac68fb4e8f32b79366eba669dc3b15647973c98ae6f5f5e78c0c6c5c8a87ae9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp39-cp39-win_amd64.whl

Download URL pymc_bart_rs-0.1.2-cp39-cp39-win_amd64.whl
Size 214.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c5a056faf932e946ec4bdbbc83dcb3f46ad264c58191d1f20847bacc83227733
BLAKE2b-256 checksum
How to use checksums
a0bb85f11f5e4cbeb053759d0922fc20fb56a0899fe47420fd8ace0d6aafb3c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d3bf4de595151d73ac8915b89aea1c92756c3ff4fe24d8a381814d7ca08e0cfe
BLAKE2b-256 checksum
How to use checksums
edfdb79aeece53874fd02b60a074bad7299f13404d359fd3832f4dc87ba44fec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
01c3afc62e1d0cd9a638da7da45583d54624876d087ad72e4c4df4eefecf3de2
BLAKE2b-256 checksum
How to use checksums
e9ddd6b0edc34ddd50443e538532490dc8b8975c545a8ada6d57bfb842e86c27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp38-cp38-win_amd64.whl

Download URL pymc_bart_rs-0.1.2-cp38-cp38-win_amd64.whl
Size 214.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
f126de3d991628ec23d2caf9c3571e4e043b7c0561dc3903c848ef8a5a1aacfb
BLAKE2b-256 checksum
How to use checksums
bd1c66010d1abcb27af8f129e24646245290462e9c9916df10218bd885994f1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl

Download URL pymc_bart_rs-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
85342563dcacb5ff4d520f0c531005e7899eced90bfc93c322cb40e6089d0ee0
BLAKE2b-256 checksum
How to use checksums
d1bc67bc6bdc7a48d0605466026cfa99b5e23d369722a1e9e8ccce6001487dc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release files / pymc_bart_rs-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl

Download URL pymc_bart_rs-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6e907ca6d416633ba747f3f61f10f8e1f3c22735762284b0428514ecc43009d6
BLAKE2b-256 checksum
How to use checksums
21419c463dd70d2ee078e7ca4e55b5d424057a81f6ec95bdb9989bf4c9d7f5a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.1

Release history Release notifications | RSS feed

This release

0.1.2 This release

26 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