maturin 1.0.0b9__tar.gz → 1.0.1__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.
Potentially problematic release.
This version of maturin might be problematic. Click here for more details.
- {maturin-1.0.0b9 → maturin-1.0.1}/.cirrus.yml +2 -2
- maturin-1.0.1/.devcontainer/devcontainer.json +22 -0
- maturin-1.0.1/.devcontainer/post_create.sh +12 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/Cargo.lock +307 -201
- {maturin-1.0.0b9 → maturin-1.0.1}/Cargo.toml +8 -8
- {maturin-1.0.0b9 → maturin-1.0.1}/Changelog.md +35 -1
- {maturin-1.0.0b9 → maturin-1.0.1}/PKG-INFO +17 -5
- {maturin-1.0.0b9 → maturin-1.0.1}/README.md +16 -4
- {maturin-1.0.0b9 → maturin-1.0.1}/deny.toml +6 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/maturin/__init__.py +17 -4
- {maturin-1.0.0b9 → maturin-1.0.1}/setup.py +2 -1
- {maturin-1.0.0b9 → maturin-1.0.1}/src/build_context.rs +5 -4
- {maturin-1.0.0b9 → maturin-1.0.1}/src/build_options.rs +37 -27
- {maturin-1.0.0b9 → maturin-1.0.1}/src/compile.rs +1 -1
- {maturin-1.0.0b9 → maturin-1.0.1}/src/develop.rs +0 -1
- {maturin-1.0.0b9 → maturin-1.0.1}/src/module_writer.rs +24 -8
- {maturin-1.0.0b9 → maturin-1.0.1}/src/project_layout.rs +34 -16
- {maturin-1.0.0b9 → maturin-1.0.1}/src/pyproject_toml.rs +52 -14
- maturin-1.0.1/src/python_interpreter/config.rs +747 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/python_interpreter/mod.rs +36 -11
- {maturin-1.0.0b9 → maturin-1.0.1}/src/source_distribution.rs +23 -13
- {maturin-1.0.0b9 → maturin-1.0.1}/src/target.rs +4 -3
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/Cargo.toml.j2 +1 -1
- {maturin-1.0.0b9 → maturin-1.0.1}/src/upload.rs +3 -1
- maturin-1.0.0b9/src/python_interpreter/config.rs +0 -293
- maturin-1.0.0b9/src/python_interpreter/sysconfig-emscripten.json +0 -22
- maturin-1.0.0b9/src/python_interpreter/sysconfig-freebsd.json +0 -190
- maturin-1.0.0b9/src/python_interpreter/sysconfig-linux.json +0 -619
- maturin-1.0.0b9/src/python_interpreter/sysconfig-macos.json +0 -177
- maturin-1.0.0b9/src/python_interpreter/sysconfig-netbsd.json +0 -40
- maturin-1.0.0b9/src/python_interpreter/sysconfig-openbsd.json +0 -116
- maturin-1.0.0b9/src/python_interpreter/sysconfig-windows.json +0 -161
- {maturin-1.0.0b9 → maturin-1.0.1}/.codespellrc +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/.config/nextest.toml +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/.dockerignore +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/.gitignore +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/Code-of-Conduct.md +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/Dockerfile +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/MANIFEST.in +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/clippy.toml +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/license-apache +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/license-mit +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/maturin/__main__.py +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/maturin/import_hook.py +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/netlify.toml +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/noxfile.py +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/pyproject.toml +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/audit.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/manylinux-policy.json +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/mod.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/musllinux-policy.json +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/musllinux.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/patchelf.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/platform_tag.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/policy.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/auditwheel/repair.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/cargo_toml.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/ci.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/cross_compile.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/lib.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/main.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/metadata.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/new_project.rs +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/python_interpreter/get_interpreter_metadata.py +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/.gitignore.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/__init__.py.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/build.rs.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/example.udl.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/lib.rs.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/main.rs.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/src/templates/pyproject.toml.j2 +0 -0
- {maturin-1.0.0b9 → maturin-1.0.1}/test-dockerfile.sh +0 -0
|
@@ -5,8 +5,8 @@ env:
|
|
|
5
5
|
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
|
|
6
6
|
|
|
7
7
|
build_and_test: &BUILD_AND_TEST
|
|
8
|
-
# only run tasks on pull request or
|
|
9
|
-
only_if: $CIRRUS_BRANCH
|
|
8
|
+
# only run tasks on pull request or github merge queue branches
|
|
9
|
+
only_if: $CIRRUS_BRANCH =~ 'gh-readonly-queue/.*' || $CIRRUS_PR != ""
|
|
10
10
|
setup_script:
|
|
11
11
|
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
|
|
12
12
|
- rustup target add wasm32-wasi
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "maturin",
|
|
3
|
+
"image": "mcr.microsoft.com/devcontainers/rust:bullseye",
|
|
4
|
+
"postCreateCommand": "bash .devcontainer/post_create.sh",
|
|
5
|
+
"customizations": {
|
|
6
|
+
"vscode": {
|
|
7
|
+
"extensions": [
|
|
8
|
+
"ms-python.black-formatter",
|
|
9
|
+
"rust-lang.rust-analyzer",
|
|
10
|
+
"charliermarsh.ruff"
|
|
11
|
+
],
|
|
12
|
+
"settings": {
|
|
13
|
+
"editor.formatOnSave": true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"features": {
|
|
18
|
+
"ghcr.io/devcontainers/features/sshd:1": {
|
|
19
|
+
"version": "latest"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
set -euxo pipefail
|
|
2
|
+
|
|
3
|
+
sudo apt-get update
|
|
4
|
+
sudo apt-get install -y python3-dev python3-pip python3-venv libclang-dev
|
|
5
|
+
sudo python3 -m pip install cffi virtualenv pipx
|
|
6
|
+
|
|
7
|
+
pipx ensurepath
|
|
8
|
+
pipx install uniffi-bindgen
|
|
9
|
+
pipx install cargo-deny
|
|
10
|
+
|
|
11
|
+
rustup target add wasm32-wasi
|
|
12
|
+
curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
|