maturin


Namematurin JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttps://github.com/pyo3/maturin
SummaryBuild and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
upload_time2024-03-05 01:37:16
maintainerNone
docs_urlNone
authorkonstin <konstin@mailbox.org>, messense <messense@icloud.com>
requires_python>=3.7
licenseMIT OR Apache-2.0
keywords python cffi packaging pypi pyo3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Maturin

_formerly pyo3-pack_

[![Maturin User Guide](https://img.shields.io/badge/user-guide-brightgreen?logo=readthedocs&style=flat-square)](https://maturin.rs)
[![Crates.io](https://img.shields.io/crates/v/maturin.svg?logo=rust&style=flat-square)](https://crates.io/crates/maturin)
[![PyPI](https://img.shields.io/pypi/v/maturin.svg?logo=python&style=flat-square)](https://pypi.org/project/maturin)
[![Actions Status](https://img.shields.io/github/actions/workflow/status/PyO3/maturin/test.yml?branch=main&logo=github&style=flat-square)](https://github.com/PyO3/maturin/actions)
[![FreeBSD](https://img.shields.io/cirrus/github/PyO3/maturin/main?logo=CircleCI&style=flat-square)](https://cirrus-ci.com/github/PyO3/maturin)
[![Chat on Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg?logo=gitter&style=flat-square)](https://gitter.im/PyO3/Lobby)

Build and publish crates with pyo3, rust-cpython, cffi and uniffi bindings as well as rust binaries as python packages with minimal configuration.
It supports building wheels for python 3.8+ on windows, linux, mac and freebsd, can upload them to [pypi](https://pypi.org/) and has basic pypy and graalpy support.

Check out the [User Guide](https://maturin.rs/)!

## Usage

You can either download binaries from the [latest release](https://github.com/PyO3/maturin/releases/latest) or install it with [pipx](https://pypa.github.io/pipx/):

```shell
pipx install maturin
```

> [!NOTE]
>
> `pip install maturin` should also work if you don't want to use pipx.

There are four main commands:

 * `maturin new` creates a new cargo project with maturin configured.
 * `maturin publish` builds the crate into python packages and publishes them to pypi.
 * `maturin build` builds the wheels and stores them in a folder (`target/wheels` by default), but doesn't upload them. It's possible to upload those with [twine](https://github.com/pypa/twine) or `maturin upload`.
 * `maturin develop` builds the crate and installs it as a python module directly in the current virtualenv. Note that while `maturin develop` is faster, it doesn't support all the feature that running `pip install` after `maturin build` supports.

`pyo3` and `rust-cpython` bindings are automatically detected. For cffi or binaries, you need to pass `-b cffi` or `-b bin`.
maturin doesn't need extra configuration files and doesn't clash with an existing setuptools-rust or milksnake configuration.
You can even integrate it with testing tools such as [tox](https://tox.readthedocs.io/en/latest/).
There are examples for the different bindings in the `test-crates` folder.

The name of the package will be the name of the cargo project, i.e. the name field in the `[package]` section of `Cargo.toml`.
The name of the module, which you are using when importing, will be the `name` value in the `[lib]` section (which defaults to the name of the package). For binaries, it's simply the name of the binary generated by cargo.

## Python packaging basics

Python packages come in two formats:
A built form called wheel and source distributions (sdist), both of which are archives.
A wheel can be compatible with any python version, interpreter (cpython and pypy, mainly), operating system and hardware architecture (for pure python wheels),
can be limited to a specific platform and architecture (e.g. when using ctypes or cffi) or to a specific python interpreter and version on a specific architecture and operating system (e.g. with pyo3 and rust-cpython).

When using `pip install` on a package, pip tries to find a matching wheel and install that. If it doesn't find one, it downloads the source distribution and builds a wheel for the current platform,
which requires the right compilers to be installed. Installing a wheel is much faster than installing a source distribution as building wheels is generally slow.

When you publish a package to be installable with `pip install`, you upload it to [pypi](https://pypi.org/), the official package repository.
For testing, you can use [test pypi](https://test.pypi.org/) instead, which you can use with `pip install --index-url https://test.pypi.org/simple/`.
Note that for publishing for linux, [you need to use the manylinux docker container](#manylinux-and-auditwheel), while for publishing from your repository you can use the [PyO3/maturin-action github action](https://github.com/PyO3/maturin-action).

## pyo3 and rust-cpython

For pyo3 and rust-cpython, maturin can only build packages for installed python versions. On linux and mac, all python versions in `PATH` are used.
If you don't set your own interpreters with `-i`, a heuristic is used to search for python installations.
On windows all versions from the python launcher (which is installed by default by the python.org installer) and all conda environments except base are used. You can check which versions are picked up with the `list-python` subcommand.

pyo3 will set the used python interpreter in the environment variable `PYTHON_SYS_EXECUTABLE`, which can be used from custom build scripts. Maturin can build and upload wheels for pypy with pyo3, even though only pypy3.7-7.3 on linux is tested.

## Cffi

Cffi wheels are compatible with all python versions including pypy. If `cffi` isn't installed and python is running inside a virtualenv, maturin will install it, otherwise you have to install it yourself (`pip install cffi`).

maturin uses cbindgen to generate a header file, which can be customized by configuring cbindgen through a `cbindgen.toml` file inside your project root. Alternatively you can use a build script that writes a header file to `$PROJECT_ROOT/target/header.h`.

Based on the header file maturin generates a module which exports an `ffi` and a `lib` object.

<details>
<summary>Example of a custom build script</summary>

```rust
use cbindgen;
use std::env;
use std::path::Path;

fn main() {
    let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();

    let bindings = cbindgen::Builder::new()
        .with_no_includes()
        .with_language(cbindgen::Language::C)
        .with_crate(crate_dir)
        .generate()
        .unwrap();
    bindings.write_to_file(Path::new("target").join("header.h"));
}
```

</details>

## uniffi

uniffi bindings use [uniffi-rs](https://mozilla.github.io/uniffi-rs/) to generate Python `ctypes` bindings
from an interface definition file. uniffi wheels are compatible with all python versions including pypy.

## Mixed rust/python projects

To create a mixed rust/python project, create a folder with your module name (i.e. `lib.name` in Cargo.toml) next to your Cargo.toml and add your python sources there:

```
my-project
├── Cargo.toml
├── my_project
│   ├── __init__.py
│   └── bar.py
├── pyproject.toml
├── README.md
└── src
    └── lib.rs
```

You can specify a different python source directory in `pyproject.toml` by setting `tool.maturin.python-source`, for example

**pyproject.toml**

```toml
[tool.maturin]
python-source = "python"
module-name = "my_project._lib_name"
```

then the project structure would look like this:

```
my-project
├── Cargo.toml
├── python
│   └── my_project
│       ├── __init__.py
│       └── bar.py
├── pyproject.toml
├── README.md
└── src
    └── lib.rs
```

> [!NOTE]
>
> This structure is recommended to avoid [a common `ImportError` pitfall](https://github.com/PyO3/maturin/issues/490)

maturin will add the native extension as a module in your python folder. When using develop, maturin will copy the native library and for cffi also the glue code to your python folder. You should add those files to your gitignore.

With cffi you can do `from .my_project import lib` and then use `lib.my_native_function`, with pyo3/rust-cpython you can directly `from .my_project import my_native_function`.

Example layout with pyo3 after `maturin develop`:

```
my-project
├── Cargo.toml
├── my_project
│   ├── __init__.py
│   ├── bar.py
│   └── _lib_name.cpython-36m-x86_64-linux-gnu.so
├── README.md
└── src
    └── lib.rs
```

When doing this also be sure to set the module name in your code to match the last part of `module-name` (don't include the package path):

```rust
#[pymodule]
#[pyo3(name="_lib_name")]
fn my_lib_name(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
    m.add_class::<MyPythonRustClass>()?;
    Ok(())
}
```


## Python metadata

maturin supports [PEP 621](https://www.python.org/dev/peps/pep-0621/), you can specify python package metadata in `pyproject.toml`.
maturin merges metadata from `Cargo.toml` and `pyproject.toml`, `pyproject.toml` takes precedence over `Cargo.toml`.

To specify python dependencies, add a list `dependencies` in a `[project]` section in the `pyproject.toml`. This list is equivalent to `install_requires` in setuptools:

```toml
[project]
name = "my-project"
dependencies = ["flask~=1.1.0", "toml==0.10.0"]
```

Pip allows adding so called console scripts, which are shell commands that execute some function in your program. You can add console scripts in a section `[project.scripts]`.
The keys are the script names while the values are the path to the function in the format `some.module.path:class.function`, where the `class` part is optional. The function is called with no arguments. Example:

```toml
[project.scripts]
get_42 = "my_project:DummyClass.get_42"
```

You can also specify [trove classifiers](https://pypi.org/classifiers/) in your `pyproject.toml` under `project.classifiers`:

```toml
[project]
name = "my-project"
classifiers = ["Programming Language :: Python"]
```

## Source distribution

maturin supports building through `pyproject.toml`. To use it, create a `pyproject.toml` next to your `Cargo.toml` with the following content:

```toml
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
```

If a `pyproject.toml` with a `[build-system]` entry is present, maturin can build a source distribution of your package when `--sdist` is specified.
The source distribution will contain the same files as `cargo package`. To only build a source distribution, pass `--interpreter` without any values.

You can then e.g. install your package with `pip install .`. With `pip install . -v` you can see the output of cargo and maturin.

You can use the options `compatibility`, `skip-auditwheel`, `bindings`, `strip` and common Cargo build options such as `features` under `[tool.maturin]` the same way you would when running maturin directly.
The `bindings` key is required for cffi and bin projects as those can't be automatically detected. Currently, all builds are in release mode (see [this thread](https://discuss.python.org/t/pep-517-debug-vs-release-builds/1924) for details).

For a non-manylinux build with cffi bindings you could use the following:

```toml
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[tool.maturin]
bindings = "cffi"
compatibility = "linux"
```

`manylinux` option is also accepted as an alias of `compatibility` for backward compatibility with old version of maturin.

To include arbitrary files in the sdist for use during compilation specify `include` as an array of `path` globs with `format` set to `sdist`:

```toml
[tool.maturin]
include = [{ path = "path/**/*", format = "sdist" }]
```

There's a `maturin sdist` command for only building a source distribution as workaround for [pypa/pip#6041](https://github.com/pypa/pip/issues/6041).

## Manylinux and auditwheel

For portability reasons, native python modules on linux must only dynamically link a set of very few libraries which are installed basically everywhere, hence the name manylinux.
The pypa offers special docker images and a tool called [auditwheel](https://github.com/pypa/auditwheel/) to ensure compliance with the [manylinux rules](https://peps.python.org/pep-0599/#the-manylinux2014-policy).
If you want to publish widely usable wheels for linux pypi, **you need to use a manylinux docker image**.

The Rust compiler since version 1.64 [requires at least glibc 2.17](https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html), so you need to use at least manylinux2014.
For publishing, we recommend enforcing the same manylinux version as the image with the manylinux flag, e.g. use `--manylinux 2014` if you are building in `quay.io/pypa/manylinux2014_x86_64`.
The [PyO3/maturin-action](https://github.com/PyO3/maturin-action) github action already takes care of this if you set e.g. `manylinux: 2014`.

maturin contains a reimplementation of auditwheel automatically checks the generated library and gives the wheel the proper.
If your system's glibc is too new or you link other shared libraries, it will assign the `linux` tag.
You can also manually disable those checks and directly use native linux target with `--manylinux off`.

For full manylinux compliance you need to compile in a CentOS docker container. The [pyo3/maturin](https://ghcr.io/pyo3/maturin) image is based on the manylinux2014 image,
and passes arguments to the `maturin` binary. You can use it like this:

```
docker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin build --release  # or other maturin arguments
```

Note that this image is very basic and only contains python, maturin and stable rust. If you need additional tools, you can run commands inside the manylinux container.
See [konstin/complex-manylinux-maturin-docker](https://github.com/konstin/complex-manylinux-maturin-docker) for a small educational example or [nanoporetech/fast-ctc-decode](https://github.com/nanoporetech/fast-ctc-decode/blob/b226ea0f2b2f4f474eff47349703d57d2ea4801b/.github/workflows/publish.yml) for a real world setup.

maturin itself is manylinux compliant when compiled for the musl target.

## Examples

* [ballista-python](https://github.com/apache/arrow-ballista-python) - A Python library that binds to Apache Arrow distributed query engine Ballista
* [chardetng-py](https://github.com/john-parton/chardetng-py) - Python binding for the chardetng character encoding detector.
* [connector-x](https://github.com/sfu-db/connector-x/tree/main/connectorx-python) - ConnectorX enables you to load data from databases into Python in the fastest and most memory efficient way
* [datafusion-python](https://github.com/apache/arrow-datafusion-python) - a Python library that binds to Apache Arrow in-memory query engine DataFusion
* [deltalake-python](https://github.com/delta-io/delta-rs/tree/main/python) - Native Delta Lake Python binding based on delta-rs with Pandas integration
* [opendal](https://github.com/apache/incubator-opendal/tree/main/bindings/python) - OpenDAL Python Binding to access data freely
* [orjson](https://github.com/ijl/orjson) - A fast, correct JSON library for Python
* [polars](https://github.com/pola-rs/polars/tree/master/py-polars) - Fast multi-threaded DataFrame library in Rust | Python | Node.js
* [pydantic-core](https://github.com/pydantic/pydantic-core) - Core validation logic for pydantic written in Rust
* [pyrus-cramjam](https://github.com/milesgranger/pyrus-cramjam) - Thin Python wrapper to de/compression algorithms in Rust
* [pyxel](https://github.com/kitao/pyxel) - A retro game engine for Python
* [roapi](https://github.com/roapi/roapi) - ROAPI automatically spins up read-only APIs for static datasets without requiring you to write a single line of code
* [robyn](https://github.com/sansyrox/robyn) -  A fast and extensible async python web server with a Rust runtime
* [ruff](https://github.com/charliermarsh/ruff) - An extremely fast Python linter, written in Rust
* [tantivy-py](https://github.com/quickwit-oss/tantivy-py) - Python bindings for Tantivy
* [watchfiles](https://github.com/samuelcolvin/watchfiles) - Simple, modern and high performance file watching and code reload in python
* [wonnx](https://github.com/webonnx/wonnx/tree/master/wonnx-py) - Wonnx is a GPU-accelerated ONNX inference run-time written 100% in Rust

## Contributing

Everyone is welcomed to contribute to maturin! There are many ways to support the project, such as:

- help maturin users with issues on GitHub and Gitter
- improve documentation
- write features and bugfixes
- publish blogs and examples of how to use maturin

Our [contributing notes](https://github.com/PyO3/maturin/blob/main/guide/src/contributing.md) have more resources if you wish to volunteer time for maturin and are searching where to start.

If you don't have time to contribute yourself but still wish to support the project's future success, some of our maintainers have GitHub sponsorship pages:

- [messense](https://github.com/sponsors/messense)

## License

Licensed under either of:

 * Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/PyO3/maturin/blob/main/license-apache) or http://www.apache.org/licenses/LICENSE-2.0)
 * MIT license ([LICENSE-MIT](https://github.com/PyO3/maturin/blob/main/license-mit) or http://opensource.org/licenses/MIT)

at your option.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyo3/maturin",
    "name": "maturin",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python,cffi,packaging,pypi,pyo3",
    "author": "konstin <konstin@mailbox.org>, messense <messense@icloud.com>",
    "author_email": "konstin <konstin@mailbox.org>, messense <messense@icloud.com>",
    "download_url": "https://files.pythonhosted.org/packages/cc/e5/6de242b8a6180dc81a75fb0791f983ba8d81f53786c829ed77765b25ca46/maturin-1.5.0.tar.gz",
    "platform": null,
    "description": "# Maturin\n\n_formerly pyo3-pack_\n\n[![Maturin User Guide](https://img.shields.io/badge/user-guide-brightgreen?logo=readthedocs&style=flat-square)](https://maturin.rs)\n[![Crates.io](https://img.shields.io/crates/v/maturin.svg?logo=rust&style=flat-square)](https://crates.io/crates/maturin)\n[![PyPI](https://img.shields.io/pypi/v/maturin.svg?logo=python&style=flat-square)](https://pypi.org/project/maturin)\n[![Actions Status](https://img.shields.io/github/actions/workflow/status/PyO3/maturin/test.yml?branch=main&logo=github&style=flat-square)](https://github.com/PyO3/maturin/actions)\n[![FreeBSD](https://img.shields.io/cirrus/github/PyO3/maturin/main?logo=CircleCI&style=flat-square)](https://cirrus-ci.com/github/PyO3/maturin)\n[![Chat on Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg?logo=gitter&style=flat-square)](https://gitter.im/PyO3/Lobby)\n\nBuild and publish crates with pyo3, rust-cpython, cffi and uniffi bindings as well as rust binaries as python packages with minimal configuration.\nIt supports building wheels for python 3.8+ on windows, linux, mac and freebsd, can upload them to [pypi](https://pypi.org/) and has basic pypy and graalpy support.\n\nCheck out the [User Guide](https://maturin.rs/)!\n\n## Usage\n\nYou can either download binaries from the [latest release](https://github.com/PyO3/maturin/releases/latest) or install it with [pipx](https://pypa.github.io/pipx/):\n\n```shell\npipx install maturin\n```\n\n> [!NOTE]\n>\n> `pip install maturin` should also work if you don't want to use pipx.\n\nThere are four main commands:\n\n * `maturin new` creates a new cargo project with maturin configured.\n * `maturin publish` builds the crate into python packages and publishes them to pypi.\n * `maturin build` builds the wheels and stores them in a folder (`target/wheels` by default), but doesn't upload them. It's possible to upload those with [twine](https://github.com/pypa/twine) or `maturin upload`.\n * `maturin develop` builds the crate and installs it as a python module directly in the current virtualenv. Note that while `maturin develop` is faster, it doesn't support all the feature that running `pip install` after `maturin build` supports.\n\n`pyo3` and `rust-cpython` bindings are automatically detected. For cffi or binaries, you need to pass `-b cffi` or `-b bin`.\nmaturin doesn't need extra configuration files and doesn't clash with an existing setuptools-rust or milksnake configuration.\nYou can even integrate it with testing tools such as [tox](https://tox.readthedocs.io/en/latest/).\nThere are examples for the different bindings in the `test-crates` folder.\n\nThe name of the package will be the name of the cargo project, i.e. the name field in the `[package]` section of `Cargo.toml`.\nThe name of the module, which you are using when importing, will be the `name` value in the `[lib]` section (which defaults to the name of the package). For binaries, it's simply the name of the binary generated by cargo.\n\n## Python packaging basics\n\nPython packages come in two formats:\nA built form called wheel and source distributions (sdist), both of which are archives.\nA wheel can be compatible with any python version, interpreter (cpython and pypy, mainly), operating system and hardware architecture (for pure python wheels),\ncan be limited to a specific platform and architecture (e.g. when using ctypes or cffi) or to a specific python interpreter and version on a specific architecture and operating system (e.g. with pyo3 and rust-cpython).\n\nWhen using `pip install` on a package, pip tries to find a matching wheel and install that. If it doesn't find one, it downloads the source distribution and builds a wheel for the current platform,\nwhich requires the right compilers to be installed. Installing a wheel is much faster than installing a source distribution as building wheels is generally slow.\n\nWhen you publish a package to be installable with `pip install`, you upload it to [pypi](https://pypi.org/), the official package repository.\nFor testing, you can use [test pypi](https://test.pypi.org/) instead, which you can use with `pip install --index-url https://test.pypi.org/simple/`.\nNote that for publishing for linux, [you need to use the manylinux docker container](#manylinux-and-auditwheel), while for publishing from your repository you can use the [PyO3/maturin-action github action](https://github.com/PyO3/maturin-action).\n\n## pyo3 and rust-cpython\n\nFor pyo3 and rust-cpython, maturin can only build packages for installed python versions. On linux and mac, all python versions in `PATH` are used.\nIf you don't set your own interpreters with `-i`, a heuristic is used to search for python installations.\nOn windows all versions from the python launcher (which is installed by default by the python.org installer) and all conda environments except base are used. You can check which versions are picked up with the `list-python` subcommand.\n\npyo3 will set the used python interpreter in the environment variable `PYTHON_SYS_EXECUTABLE`, which can be used from custom build scripts. Maturin can build and upload wheels for pypy with pyo3, even though only pypy3.7-7.3 on linux is tested.\n\n## Cffi\n\nCffi wheels are compatible with all python versions including pypy. If `cffi` isn't installed and python is running inside a virtualenv, maturin will install it, otherwise you have to install it yourself (`pip install cffi`).\n\nmaturin uses cbindgen to generate a header file, which can be customized by configuring cbindgen through a `cbindgen.toml` file inside your project root. Alternatively you can use a build script that writes a header file to `$PROJECT_ROOT/target/header.h`.\n\nBased on the header file maturin generates a module which exports an `ffi` and a `lib` object.\n\n<details>\n<summary>Example of a custom build script</summary>\n\n```rust\nuse cbindgen;\nuse std::env;\nuse std::path::Path;\n\nfn main() {\n    let crate_dir = env::var(\"CARGO_MANIFEST_DIR\").unwrap();\n\n    let bindings = cbindgen::Builder::new()\n        .with_no_includes()\n        .with_language(cbindgen::Language::C)\n        .with_crate(crate_dir)\n        .generate()\n        .unwrap();\n    bindings.write_to_file(Path::new(\"target\").join(\"header.h\"));\n}\n```\n\n</details>\n\n## uniffi\n\nuniffi bindings use [uniffi-rs](https://mozilla.github.io/uniffi-rs/) to generate Python `ctypes` bindings\nfrom an interface definition file. uniffi wheels are compatible with all python versions including pypy.\n\n## Mixed rust/python projects\n\nTo create a mixed rust/python project, create a folder with your module name (i.e. `lib.name` in Cargo.toml) next to your Cargo.toml and add your python sources there:\n\n```\nmy-project\n\u251c\u2500\u2500 Cargo.toml\n\u251c\u2500\u2500 my_project\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 bar.py\n\u251c\u2500\u2500 pyproject.toml\n\u251c\u2500\u2500 README.md\n\u2514\u2500\u2500 src\n \u00a0\u00a0 \u2514\u2500\u2500 lib.rs\n```\n\nYou can specify a different python source directory in `pyproject.toml` by setting `tool.maturin.python-source`, for example\n\n**pyproject.toml**\n\n```toml\n[tool.maturin]\npython-source = \"python\"\nmodule-name = \"my_project._lib_name\"\n```\n\nthen the project structure would look like this:\n\n```\nmy-project\n\u251c\u2500\u2500 Cargo.toml\n\u251c\u2500\u2500 python\n\u2502   \u2514\u2500\u2500 my_project\n\u2502       \u251c\u2500\u2500 __init__.py\n\u2502       \u2514\u2500\u2500 bar.py\n\u251c\u2500\u2500 pyproject.toml\n\u251c\u2500\u2500 README.md\n\u2514\u2500\u2500 src\n \u00a0\u00a0 \u2514\u2500\u2500 lib.rs\n```\n\n> [!NOTE]\n>\n> This structure is recommended to avoid [a common `ImportError` pitfall](https://github.com/PyO3/maturin/issues/490)\n\nmaturin will add the native extension as a module in your python folder. When using develop, maturin will copy the native library and for cffi also the glue code to your python folder. You should add those files to your gitignore.\n\nWith cffi you can do `from .my_project import lib` and then use `lib.my_native_function`, with pyo3/rust-cpython you can directly `from .my_project import my_native_function`.\n\nExample layout with pyo3 after `maturin develop`:\n\n```\nmy-project\n\u251c\u2500\u2500 Cargo.toml\n\u251c\u2500\u2500 my_project\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bar.py\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 _lib_name.cpython-36m-x86_64-linux-gnu.so\n\u251c\u2500\u2500 README.md\n\u2514\u2500\u2500 src\n \u00a0\u00a0 \u2514\u2500\u2500 lib.rs\n```\n\nWhen doing this also be sure to set the module name in your code to match the last part of `module-name` (don't include the package path):\n\n```rust\n#[pymodule]\n#[pyo3(name=\"_lib_name\")]\nfn my_lib_name(_py: Python<'_>, m: &PyModule) -> PyResult<()> {\n    m.add_class::<MyPythonRustClass>()?;\n    Ok(())\n}\n```\n\n\n## Python metadata\n\nmaturin supports [PEP 621](https://www.python.org/dev/peps/pep-0621/), you can specify python package metadata in `pyproject.toml`.\nmaturin merges metadata from `Cargo.toml` and `pyproject.toml`, `pyproject.toml` takes precedence over `Cargo.toml`.\n\nTo specify python dependencies, add a list `dependencies` in a `[project]` section in the `pyproject.toml`. This list is equivalent to `install_requires` in setuptools:\n\n```toml\n[project]\nname = \"my-project\"\ndependencies = [\"flask~=1.1.0\", \"toml==0.10.0\"]\n```\n\nPip allows adding so called console scripts, which are shell commands that execute some function in your program. You can add console scripts in a section `[project.scripts]`.\nThe keys are the script names while the values are the path to the function in the format `some.module.path:class.function`, where the `class` part is optional. The function is called with no arguments. Example:\n\n```toml\n[project.scripts]\nget_42 = \"my_project:DummyClass.get_42\"\n```\n\nYou can also specify [trove classifiers](https://pypi.org/classifiers/) in your `pyproject.toml` under `project.classifiers`:\n\n```toml\n[project]\nname = \"my-project\"\nclassifiers = [\"Programming Language :: Python\"]\n```\n\n## Source distribution\n\nmaturin supports building through `pyproject.toml`. To use it, create a `pyproject.toml` next to your `Cargo.toml` with the following content:\n\n```toml\n[build-system]\nrequires = [\"maturin>=1.0,<2.0\"]\nbuild-backend = \"maturin\"\n```\n\nIf a `pyproject.toml` with a `[build-system]` entry is present, maturin can build a source distribution of your package when `--sdist` is specified.\nThe source distribution will contain the same files as `cargo package`. To only build a source distribution, pass `--interpreter` without any values.\n\nYou can then e.g. install your package with `pip install .`. With `pip install . -v` you can see the output of cargo and maturin.\n\nYou can use the options `compatibility`, `skip-auditwheel`, `bindings`, `strip` and common Cargo build options such as `features` under `[tool.maturin]` the same way you would when running maturin directly.\nThe `bindings` key is required for cffi and bin projects as those can't be automatically detected. Currently, all builds are in release mode (see [this thread](https://discuss.python.org/t/pep-517-debug-vs-release-builds/1924) for details).\n\nFor a non-manylinux build with cffi bindings you could use the following:\n\n```toml\n[build-system]\nrequires = [\"maturin>=1.0,<2.0\"]\nbuild-backend = \"maturin\"\n\n[tool.maturin]\nbindings = \"cffi\"\ncompatibility = \"linux\"\n```\n\n`manylinux` option is also accepted as an alias of `compatibility` for backward compatibility with old version of maturin.\n\nTo include arbitrary files in the sdist for use during compilation specify `include` as an array of `path` globs with `format` set to `sdist`:\n\n```toml\n[tool.maturin]\ninclude = [{ path = \"path/**/*\", format = \"sdist\" }]\n```\n\nThere's a `maturin sdist` command for only building a source distribution as workaround for [pypa/pip#6041](https://github.com/pypa/pip/issues/6041).\n\n## Manylinux and auditwheel\n\nFor portability reasons, native python modules on linux must only dynamically link a set of very few libraries which are installed basically everywhere, hence the name manylinux.\nThe pypa offers special docker images and a tool called [auditwheel](https://github.com/pypa/auditwheel/) to ensure compliance with the [manylinux rules](https://peps.python.org/pep-0599/#the-manylinux2014-policy).\nIf you want to publish widely usable wheels for linux pypi, **you need to use a manylinux docker image**.\n\nThe Rust compiler since version 1.64 [requires at least glibc 2.17](https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html), so you need to use at least manylinux2014.\nFor publishing, we recommend enforcing the same manylinux version as the image with the manylinux flag, e.g. use `--manylinux 2014` if you are building in `quay.io/pypa/manylinux2014_x86_64`.\nThe [PyO3/maturin-action](https://github.com/PyO3/maturin-action) github action already takes care of this if you set e.g. `manylinux: 2014`.\n\nmaturin contains a reimplementation of auditwheel automatically checks the generated library and gives the wheel the proper.\nIf your system's glibc is too new or you link other shared libraries, it will assign the `linux` tag.\nYou can also manually disable those checks and directly use native linux target with `--manylinux off`.\n\nFor full manylinux compliance you need to compile in a CentOS docker container. The [pyo3/maturin](https://ghcr.io/pyo3/maturin) image is based on the manylinux2014 image,\nand passes arguments to the `maturin` binary. You can use it like this:\n\n```\ndocker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin build --release  # or other maturin arguments\n```\n\nNote that this image is very basic and only contains python, maturin and stable rust. If you need additional tools, you can run commands inside the manylinux container.\nSee [konstin/complex-manylinux-maturin-docker](https://github.com/konstin/complex-manylinux-maturin-docker) for a small educational example or [nanoporetech/fast-ctc-decode](https://github.com/nanoporetech/fast-ctc-decode/blob/b226ea0f2b2f4f474eff47349703d57d2ea4801b/.github/workflows/publish.yml) for a real world setup.\n\nmaturin itself is manylinux compliant when compiled for the musl target.\n\n## Examples\n\n* [ballista-python](https://github.com/apache/arrow-ballista-python) - A Python library that binds to Apache Arrow distributed query engine Ballista\n* [chardetng-py](https://github.com/john-parton/chardetng-py) - Python binding for the chardetng character encoding detector.\n* [connector-x](https://github.com/sfu-db/connector-x/tree/main/connectorx-python) - ConnectorX enables you to load data from databases into Python in the fastest and most memory efficient way\n* [datafusion-python](https://github.com/apache/arrow-datafusion-python) - a Python library that binds to Apache Arrow in-memory query engine DataFusion\n* [deltalake-python](https://github.com/delta-io/delta-rs/tree/main/python) - Native Delta Lake Python binding based on delta-rs with Pandas integration\n* [opendal](https://github.com/apache/incubator-opendal/tree/main/bindings/python) - OpenDAL Python Binding to access data freely\n* [orjson](https://github.com/ijl/orjson) - A fast, correct JSON library for Python\n* [polars](https://github.com/pola-rs/polars/tree/master/py-polars) - Fast multi-threaded DataFrame library in Rust | Python | Node.js\n* [pydantic-core](https://github.com/pydantic/pydantic-core) - Core validation logic for pydantic written in Rust\n* [pyrus-cramjam](https://github.com/milesgranger/pyrus-cramjam) - Thin Python wrapper to de/compression algorithms in Rust\n* [pyxel](https://github.com/kitao/pyxel) - A retro game engine for Python\n* [roapi](https://github.com/roapi/roapi) - ROAPI automatically spins up read-only APIs for static datasets without requiring you to write a single line of code\n* [robyn](https://github.com/sansyrox/robyn) -  A fast and extensible async python web server with a Rust runtime\n* [ruff](https://github.com/charliermarsh/ruff) - An extremely fast Python linter, written in Rust\n* [tantivy-py](https://github.com/quickwit-oss/tantivy-py) - Python bindings for Tantivy\n* [watchfiles](https://github.com/samuelcolvin/watchfiles) - Simple, modern and high performance file watching and code reload in python\n* [wonnx](https://github.com/webonnx/wonnx/tree/master/wonnx-py) - Wonnx is a GPU-accelerated ONNX inference run-time written 100% in Rust\n\n## Contributing\n\nEveryone is welcomed to contribute to maturin! There are many ways to support the project, such as:\n\n- help maturin users with issues on GitHub and Gitter\n- improve documentation\n- write features and bugfixes\n- publish blogs and examples of how to use maturin\n\nOur [contributing notes](https://github.com/PyO3/maturin/blob/main/guide/src/contributing.md) have more resources if you wish to volunteer time for maturin and are searching where to start.\n\nIf you don't have time to contribute yourself but still wish to support the project's future success, some of our maintainers have GitHub sponsorship pages:\n\n- [messense](https://github.com/sponsors/messense)\n\n## License\n\nLicensed under either of:\n\n * Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/PyO3/maturin/blob/main/license-apache) or http://www.apache.org/licenses/LICENSE-2.0)\n * MIT license ([LICENSE-MIT](https://github.com/PyO3/maturin/blob/main/license-mit) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages",
    "version": "1.5.0",
    "project_urls": {
        "Changelog": "https://maturin.rs/changelog.html",
        "Documentation": "https://maturin.rs",
        "Homepage": "https://github.com/pyo3/maturin",
        "Issues": "https://github.com/PyO3/maturin/issues",
        "Source Code": "https://github.com/PyO3/maturin"
    },
    "split_keywords": [
        "python",
        "cffi",
        "packaging",
        "pypi",
        "pyo3"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ff1fe5c7ba1232e6563a664979e8d9044c0af5c2d19f1610402fcf08d8e61b7",
                "md5": "26b62966fe10b0e7fda8e2db2d2d3dad",
                "sha256": "0b976116b7cfaafbc8c3f0acfaec6702520c49e86e48ea80e2c282b7f8118c1a"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-linux_armv6l.whl",
            "has_sig": false,
            "md5_digest": "26b62966fe10b0e7fda8e2db2d2d3dad",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9962422,
            "upload_time": "2024-03-05T01:36:34",
            "upload_time_iso_8601": "2024-03-05T01:36:34.606535Z",
            "url": "https://files.pythonhosted.org/packages/6f/f1/fe5c7ba1232e6563a664979e8d9044c0af5c2d19f1610402fcf08d8e61b7/maturin-1.5.0-py3-none-linux_armv6l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b43d373654d404fa5b85c5ae89b4b709aa512523b6788f0e82dc163dd6b0ca41",
                "md5": "63c660e9b68f29f6d6c4e6ccc3885173",
                "sha256": "d277adf9b27143627ba7be7ea254513d3e85008fb16a94638b56884a41b4e5a2"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "63c660e9b68f29f6d6c4e6ccc3885173",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15553598,
            "upload_time": "2024-03-05T01:36:40",
            "upload_time_iso_8601": "2024-03-05T01:36:40.166989Z",
            "url": "https://files.pythonhosted.org/packages/b4/3d/373654d404fa5b85c5ae89b4b709aa512523b6788f0e82dc163dd6b0ca41/maturin-1.5.0-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db2b26f25c64ddca3b18f29767fdc6fab838e626eb52e71c515c8d947194dbac",
                "md5": "fe00a7a318487ab236a473859646c55b",
                "sha256": "d6a314472e07b6bdfa4cdf97d24cda1defe008d36d4b75de2efd3383e7a2d7bf"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe00a7a318487ab236a473859646c55b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7946702,
            "upload_time": "2024-03-05T01:36:43",
            "upload_time_iso_8601": "2024-03-05T01:36:43.411825Z",
            "url": "https://files.pythonhosted.org/packages/db/2b/26f25c64ddca3b18f29767fdc6fab838e626eb52e71c515c8d947194dbac/maturin-1.5.0-py3-none-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dfd87a1e96c57777945daff102983775893c83208cdb205e542849d730e1a0e",
                "md5": "b59ed517aac6d369b93c2b016cb920aa",
                "sha256": "a5c038ded82c7595d99e94a208aa8af2b5c94eef4c8fcf5ef6e841957e506201"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b59ed517aac6d369b93c2b016cb920aa",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 10385161,
            "upload_time": "2024-03-05T01:36:46",
            "upload_time_iso_8601": "2024-03-05T01:36:46.627312Z",
            "url": "https://files.pythonhosted.org/packages/4d/fd/87a1e96c57777945daff102983775893c83208cdb205e542849d730e1a0e/maturin-1.5.0-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6969f732f0c8797048db54250687c0f8ce73b429bceb609d3b797eac3bd95c39",
                "md5": "aa46863a1568b8945131a006bd6e7775",
                "sha256": "faa0d099a8045afc9977284cb3a1c26e5ebc9a7f0fe4d53b7ee17f62fd279f4a"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa46863a1568b8945131a006bd6e7775",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 10265276,
            "upload_time": "2024-03-05T01:36:49",
            "upload_time_iso_8601": "2024-03-05T01:36:49.959976Z",
            "url": "https://files.pythonhosted.org/packages/69/69/f732f0c8797048db54250687c0f8ce73b429bceb609d3b797eac3bd95c39/maturin-1.5.0-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50f67c97821f96b4d1adc0e48c999ca52ced40e2cd6ee278eee812d5577238a8",
                "md5": "472b58eff0e66fa156a705ce3ea25f74",
                "sha256": "9cba3737cb92ce5c1bd82cbb9b1fde412b2aac8882ac38b8340980f5eb858d8c"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "472b58eff0e66fa156a705ce3ea25f74",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9794427,
            "upload_time": "2024-03-05T01:36:54",
            "upload_time_iso_8601": "2024-03-05T01:36:54.219576Z",
            "url": "https://files.pythonhosted.org/packages/50/f6/7c97821f96b4d1adc0e48c999ca52ced40e2cd6ee278eee812d5577238a8/maturin-1.5.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d18c0286af94d3829cd1f6a77365203663f4007d64d1e57b289ea5b3d2bdc3d",
                "md5": "8cb2a2f762602c3c3a57f766b00418d6",
                "sha256": "1b29bf8771f27d2e6b2685c82de952b5732ee79e5c0030ffd5dab5ccb99137a1"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8cb2a2f762602c3c3a57f766b00418d6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9876279,
            "upload_time": "2024-03-05T01:36:57",
            "upload_time_iso_8601": "2024-03-05T01:36:57.928441Z",
            "url": "https://files.pythonhosted.org/packages/4d/18/c0286af94d3829cd1f6a77365203663f4007d64d1e57b289ea5b3d2bdc3d/maturin-1.5.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e3f31f8e9608f8340dc8cf6a2e3612cfa2e28e3d249f2fc47b40836a76578a5",
                "md5": "47be5eadccae1c7a6a19e27524664814",
                "sha256": "f271f315fb78d2ff5fdf60f8d3ada2a04a66ac6fbd3cbb318c4eb4e9766449bc"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47be5eadccae1c7a6a19e27524664814",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9084371,
            "upload_time": "2024-03-05T01:37:01",
            "upload_time_iso_8601": "2024-03-05T01:37:01.578798Z",
            "url": "https://files.pythonhosted.org/packages/3e/3f/31f8e9608f8340dc8cf6a2e3612cfa2e28e3d249f2fc47b40836a76578a5/maturin-1.5.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56f6dcb263d27e407c722912d069d68a50cc8e8d6c9eb5715b80097bf1b2e7a6",
                "md5": "3bd02cc0ead3946926ad04731fca5afe",
                "sha256": "76e3270ff87b5484976d23e3d88475cd64acf41b54f561263f253d8fca0baab3"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3bd02cc0ead3946926ad04731fca5afe",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 11864975,
            "upload_time": "2024-03-05T01:37:05",
            "upload_time_iso_8601": "2024-03-05T01:37:05.349575Z",
            "url": "https://files.pythonhosted.org/packages/56/f6/dcb263d27e407c722912d069d68a50cc8e8d6c9eb5715b80097bf1b2e7a6/maturin-1.5.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5aff42f7e23c25ce6b9c1e3e80fc70f18df78d450e43973ce13e788c9a46e8ea",
                "md5": "395e44b56587f770c0113f04fb1d0ec2",
                "sha256": "eb35dfe5994ad2c34d2874a73720847ecc2adb28f934e9a7cbcdb8826b240e60"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "395e44b56587f770c0113f04fb1d0ec2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6479018,
            "upload_time": "2024-03-05T01:37:08",
            "upload_time_iso_8601": "2024-03-05T01:37:08.659637Z",
            "url": "https://files.pythonhosted.org/packages/5a/ff/42f7e23c25ce6b9c1e3e80fc70f18df78d450e43973ce13e788c9a46e8ea/maturin-1.5.0-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd41096d4048928b36d1db6a70640656e7d6710309c863a6278356889cbe6d8d",
                "md5": "ccf8780412236f216875c5e1708eaf5d",
                "sha256": "b3a499ff5960e46115488e68011809ce99857864ce3a91cf5d0fff3adbd89e8c"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ccf8780412236f216875c5e1708eaf5d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7287651,
            "upload_time": "2024-03-05T01:37:11",
            "upload_time_iso_8601": "2024-03-05T01:37:11.564234Z",
            "url": "https://files.pythonhosted.org/packages/cd/41/096d4048928b36d1db6a70640656e7d6710309c863a6278356889cbe6d8d/maturin-1.5.0-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e4c7f1b7df98801814a62f71a3ba2e30e855e6cd7a2a0b609dbe97eafee1581",
                "md5": "9f9a9fa5a0c124ead304440918a361c5",
                "sha256": "2e4c01370a5c10b6c4887bee66d3582bdb38c3805168c1393f072bd266da08d4"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0-py3-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f9a9fa5a0c124ead304440918a361c5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6390619,
            "upload_time": "2024-03-05T01:37:14",
            "upload_time_iso_8601": "2024-03-05T01:37:14.350955Z",
            "url": "https://files.pythonhosted.org/packages/1e/4c/7f1b7df98801814a62f71a3ba2e30e855e6cd7a2a0b609dbe97eafee1581/maturin-1.5.0-py3-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cce56de242b8a6180dc81a75fb0791f983ba8d81f53786c829ed77765b25ca46",
                "md5": "0ad4510331b9d76c19d287bfe120016b",
                "sha256": "e046ea2aed687991d58c42f6276dfcc0c037092934654f538b5877fd57dd3a9c"
            },
            "downloads": -1,
            "filename": "maturin-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0ad4510331b9d76c19d287bfe120016b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 180891,
            "upload_time": "2024-03-05T01:37:16",
            "upload_time_iso_8601": "2024-03-05T01:37:16.752218Z",
            "url": "https://files.pythonhosted.org/packages/cc/e5/6de242b8a6180dc81a75fb0791f983ba8d81f53786c829ed77765b25ca46/maturin-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-05 01:37:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyo3",
    "github_project": "maturin",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "maturin"
}
        
Elapsed time: 0.19678s