Name | cargo-zigbuild JSON |
Version |
0.20.1
JSON |
| download |
home_page | None |
Summary | Compile Cargo project with zig as linker |
upload_time | 2025-07-18 00:33:09 |
maintainer | None |
docs_url | None |
author | None |
requires_python | None |
license | MIT |
keywords |
zig
cargo
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# cargo-zigbuild
[](https://github.com/rust-cross/cargo-zigbuild/actions?query=workflow%3ACI)
[](https://crates.io/crates/cargo-zigbuild)
[](https://docs.rs/cargo-zigbuild/)
[](https://pypi.org/project/cargo-zigbuild)
[](https://hub.docker.com/r/messense/cargo-zigbuild/)
> 🚀 Help me to become a full-time open-source developer by [sponsoring me on GitHub](https://github.com/sponsors/messense)
Compile Cargo project with [zig](https://github.com/ziglang/zig) as [linker](https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html) for
[easier cross compiling](https://actually.fyi/posts/zig-makes-rust-cross-compilation-just-work/).
## Installation
```bash
cargo install --locked cargo-zigbuild
```
You can also install it using pip which will also install [`ziglang`](https://pypi.org/project/ziglang/) automatically:
```bash
pip install cargo-zigbuild
```
We also provide Docker images which has macOS SDK pre-installed in addition to cargo-zigbuild and Rust, for example to build for x86_64 macOS:
- Linux docker image ([ghcr.io](https://github.com/rust-cross/cargo-zigbuild/pkgs/container/cargo-zigbuild), [Docker Hub](https://hub.docker.com/r/messense/cargo-zigbuild)):
```bash
docker run --rm -it -v $(pwd):/io -w /io ghcr.io/rust-cross/cargo-zigbuild \
cargo zigbuild --release --target x86_64-apple-darwin
```
[](https://repology.org/project/cargo-zigbuild/versions)
## Usage
1. Install [zig](https://ziglang.org/) following the [official documentation](https://ziglang.org/learn/getting-started/#installing-zig),
on macOS, Windows and Linux you can also install zig from PyPI via `pip3 install ziglang`
2. Install Rust target via rustup, for example, `rustup target add aarch64-unknown-linux-gnu`
3. Run `cargo zigbuild`, for example, `cargo zigbuild --target aarch64-unknown-linux-gnu`
### Specify glibc version
By default `--target` for `*-gnu` will have Zig implicitly build for a default version of glibc that varies based on the release of Zig ([v12 to v14 releases default to glibc 2.28](https://github.com/ziglang/zig/blob/0.14.1/lib/std/Target.zig#L473)).
To build for a specific minimum glibc version, add that version as a suffix to the `--target` value. For example, to compile with `--target aarch64-unknown-linux-gnu` for glibc 2.17:
```bash
cargo zigbuild --target aarch64-unknown-linux-gnu.2.17
```
> [!NOTE]
> There are [various caveats](https://github.com/rust-cross/cargo-zigbuild/issues/231#issuecomment-1983434802) with the glibc version targeting feature:
> - If you do not provide a `--target`, Zig is not used and the command effectively runs a regular `cargo build`.
> - If you specify an invalid glibc version, `cargo zigbuild` will not relay the warning emitted from `zig cc` about the fallback version selected.
> - This feature does not necessarily match the behaviour of dynamically linking to a specific version of glibc on the build host.
> - Version 2.32 can be specified, but runs on a host with only 2.31 available when it should instead abort with an error.
> - Meanwhile specifying 2.33 will correctly be detected as incompatible when run on a host with glibc 2.31.
> - Certain `RUSTFLAGS` like `-C linker` opt-out of using Zig, while `-L path/to/files` will have Zig ignore `-C target-feature=+crt-static`.
> - `-C target-feature=+crt-static` for statically linking to a glibc version is **not supported** (_upstream `zig cc` lacks support_)
#### Tip - `cargo zigbuild` cannot find headers (`*.h` files) or libraries that exist
You may need to prepend the following ENV to your `cargo zigbuild` command with the following system paths or similar:
- `CFLAGS='-isystem /usr/include'`
- `RUSTFLAGS='-L /usr/lib64'`
---
`cargo zigbuild` always uses the `zig cc` option `-nostdinc` which excludes standard header locations like `/usr/include`. This is also a default behaviour for Zig whenever it is configured with a `--target`, which additionally opts out of standard system search paths.
This can lead to a common difference between `cargo build` being successful, while `cargo zigbuild` fails without extra configuration:
```console
# Cannot find a header file to build:
fatal error: 'libelf.h' file not found
# Cannot find a shared library to link:
error: unable to find dynamic system library 'elf' using strategy 'no_fallback'. searched paths
```
There is a variety of ways to resolve this, but for system paths like `/usr/include` you must be careful to avoid getting the system glibc headers mixed with the glibc headers Zig provides itself, otherwise this will produce errors like from `CPATH=/usr/include`:
```rust
In file included from /usr/local/lib64/python3.13/site-packages/ziglang/lib/libunwind/src/gcc_personality_v0.c:21:
In file included from /usr/local/lib64/python3.13/site-packages/ziglang/lib/libunwind/include/unwind.h:18:
In file included from /usr/include/stdint.h:26:
In file included from /usr/include/bits/libc-header-start.h:33:
/usr/include/features.h:516:9: warning: '__GLIBC_MINOR__' macro redefined [-Wmacro-redefined]
516 | #define __GLIBC_MINOR__ 41
| ^
<command line>:2:9: note: previous definition is here
2 | #define __GLIBC_MINOR__ 37
|
```
When you have installed system packages that added headers to `/usr/include` that your project needs to build, you will want Zig to fallback to `/usr/include` just for those headers while using it's own for glibc. This can be done with `zig cc -isystem /usr/include`, which for `cargo zigbuild` can be configured through the common ENV `CFLAGS='-isystem /usr/include'`.
For the similar issue with shared libraries, if your packages are installing system libraries at `/usr/lib64` you would normally use `LDFLAGS='-L /usr/lib64'`, but `rustc` and `cargo` do not read this ENV but they must be configured with the search path for crates with a `build.rs` that searches for a library to link dynamically/statically. Instead you will need to use `RUSTFLAGS='-L /usr/lib64'`.
#### Tip - Verify minimum GLIBC version required
Provided you have no stripped the symbols from your binary built, on Linux you can run the following script to scan for glibc versioned symbols and find the highest version (the minimum required to run)
1. Create a file **`/usr/local/bin/get-min-glibc`:**
```bash
#!/bin/bash
FILE_NAME=$1
readelf -W --version-info --dyn-syms ${FILE_NAME} \
| grep 'Name: GLIBC' \
| sed -re 's/.*GLIBC_(.+) Flags.*/\1/g' \
| sort -t . -k1,1n -k2,2n \
| tail -n 1
```
2. Make the script command executable:
```bash
chmod +x /usr/local/bin/get-min-glibc
```
3. Run the command with the path to your executable / library to check:
```console
$ get-min-glibc target/x86_64-unknown-linux-gnu/release/hello-world
2.28
```
### macOS universal2 target
`cargo zigbuild` supports a special `universal2-apple-darwin` target for building macOS universal2 binaries/libraries on Rust 1.64.0 and later.
```bash
rustup target add x86_64-apple-darwin
rustup target add aarch64-apple-darwin
cargo zigbuild --target universal2-apple-darwin
```
> **Note**
>
> Note that Cargo `--message-format` option doesn't work with universal2 target currently.
## Caveats
1. Currently only Linux and macOS targets are supported,
other target platforms can be added if you can make it work,
pull requests are welcome.
2. Only current Rust **stable** and **nightly** versions are regularly tested on CI, other versions may not work.
Known upstream zig [issues](https://github.com/ziglang/zig/labels/zig%20cc):
1. [zig cc: parse `-target` and `-mcpu`/`-march`/`-mtune` flags according to clang](https://github.com/ziglang/zig/issues/4911):
Some Rust targets aren't recognized by `zig cc`, for example `armv7-unknown-linux-gnueabihf`, workaround by using `-mcpu=generic` and
explicitly passing target features in [#58](https://github.com/rust-cross/cargo-zigbuild/pull/58)
2. [ability to link against darwin frameworks (such as CoreFoundation) when cross compiling](https://github.com/ziglang/zig/issues/1349):
Set the `SDKROOT` environment variable to a macOS SDK path to workaround it
3. [zig misses some `compiler_rt` functions](https://github.com/ziglang/zig/issues/1290) that may lead to undefined symbol error for certain
targets. See also: [zig compiler-rt status](https://github.com/ziglang/zig/blob/master/lib/compiler_rt/README.md).
4. [CPU features are not passed to clang](https://github.com/ziglang/zig/issues/10411)
## License
This work is released under the MIT license. A copy of the license is provided
in the [LICENSE](./LICENSE) file.
Raw data
{
"_id": null,
"home_page": null,
"name": "cargo-zigbuild",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "zig, cargo",
"author": null,
"author_email": null,
"download_url": null,
"platform": null,
"description": "# cargo-zigbuild\n\n[](https://github.com/rust-cross/cargo-zigbuild/actions?query=workflow%3ACI)\n[](https://crates.io/crates/cargo-zigbuild)\n[](https://docs.rs/cargo-zigbuild/)\n[](https://pypi.org/project/cargo-zigbuild)\n[](https://hub.docker.com/r/messense/cargo-zigbuild/)\n\n> \ud83d\ude80 Help me to become a full-time open-source developer by [sponsoring me on GitHub](https://github.com/sponsors/messense)\n\nCompile Cargo project with [zig](https://github.com/ziglang/zig) as [linker](https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html) for\n[easier cross compiling](https://actually.fyi/posts/zig-makes-rust-cross-compilation-just-work/).\n\n## Installation\n\n```bash\ncargo install --locked cargo-zigbuild\n```\n\nYou can also install it using pip which will also install [`ziglang`](https://pypi.org/project/ziglang/) automatically:\n\n```bash\npip install cargo-zigbuild\n```\n\nWe also provide Docker images which has macOS SDK pre-installed in addition to cargo-zigbuild and Rust, for example to build for x86_64 macOS:\n\n- Linux docker image ([ghcr.io](https://github.com/rust-cross/cargo-zigbuild/pkgs/container/cargo-zigbuild), [Docker Hub](https://hub.docker.com/r/messense/cargo-zigbuild)):\n```bash\ndocker run --rm -it -v $(pwd):/io -w /io ghcr.io/rust-cross/cargo-zigbuild \\\n cargo zigbuild --release --target x86_64-apple-darwin\n```\n\n[](https://repology.org/project/cargo-zigbuild/versions)\n\n## Usage\n\n1. Install [zig](https://ziglang.org/) following the [official documentation](https://ziglang.org/learn/getting-started/#installing-zig),\non macOS, Windows and Linux you can also install zig from PyPI via `pip3 install ziglang`\n2. Install Rust target via rustup, for example, `rustup target add aarch64-unknown-linux-gnu`\n3. Run `cargo zigbuild`, for example, `cargo zigbuild --target aarch64-unknown-linux-gnu`\n\n### Specify glibc version\n\nBy default `--target` for `*-gnu` will have Zig implicitly build for a default version of glibc that varies based on the release of Zig ([v12 to v14 releases default to glibc 2.28](https://github.com/ziglang/zig/blob/0.14.1/lib/std/Target.zig#L473)).\n\nTo build for a specific minimum glibc version, add that version as a suffix to the `--target` value. For example, to compile with `--target aarch64-unknown-linux-gnu` for glibc 2.17:\n\n```bash\ncargo zigbuild --target aarch64-unknown-linux-gnu.2.17\n```\n\n> [!NOTE]\n> There are [various caveats](https://github.com/rust-cross/cargo-zigbuild/issues/231#issuecomment-1983434802) with the glibc version targeting feature:\n> - If you do not provide a `--target`, Zig is not used and the command effectively runs a regular `cargo build`.\n> - If you specify an invalid glibc version, `cargo zigbuild` will not relay the warning emitted from `zig cc` about the fallback version selected.\n> - This feature does not necessarily match the behaviour of dynamically linking to a specific version of glibc on the build host.\n> - Version 2.32 can be specified, but runs on a host with only 2.31 available when it should instead abort with an error.\n> - Meanwhile specifying 2.33 will correctly be detected as incompatible when run on a host with glibc 2.31.\n> - Certain `RUSTFLAGS` like `-C linker` opt-out of using Zig, while `-L path/to/files` will have Zig ignore `-C target-feature=+crt-static`.\n> - `-C target-feature=+crt-static` for statically linking to a glibc version is **not supported** (_upstream `zig cc` lacks support_)\n\n#### Tip - `cargo zigbuild` cannot find headers (`*.h` files) or libraries that exist\n\nYou may need to prepend the following ENV to your `cargo zigbuild` command with the following system paths or similar:\n- `CFLAGS='-isystem /usr/include'`\n- `RUSTFLAGS='-L /usr/lib64'`\n\n---\n\n`cargo zigbuild` always uses the `zig cc` option `-nostdinc` which excludes standard header locations like `/usr/include`. This is also a default behaviour for Zig whenever it is configured with a `--target`, which additionally opts out of standard system search paths.\n\nThis can lead to a common difference between `cargo build` being successful, while `cargo zigbuild` fails without extra configuration:\n\n```console\n# Cannot find a header file to build:\nfatal error: 'libelf.h' file not found\n\n# Cannot find a shared library to link:\nerror: unable to find dynamic system library 'elf' using strategy 'no_fallback'. searched paths\n```\n\nThere is a variety of ways to resolve this, but for system paths like `/usr/include` you must be careful to avoid getting the system glibc headers mixed with the glibc headers Zig provides itself, otherwise this will produce errors like from `CPATH=/usr/include`:\n\n```rust\nIn file included from /usr/local/lib64/python3.13/site-packages/ziglang/lib/libunwind/src/gcc_personality_v0.c:21:\nIn file included from /usr/local/lib64/python3.13/site-packages/ziglang/lib/libunwind/include/unwind.h:18:\nIn file included from /usr/include/stdint.h:26:\nIn file included from /usr/include/bits/libc-header-start.h:33:\n/usr/include/features.h:516:9: warning: '__GLIBC_MINOR__' macro redefined [-Wmacro-redefined]\n 516 | #define __GLIBC_MINOR__ 41\n | ^\n<command line>:2:9: note: previous definition is here\n 2 | #define __GLIBC_MINOR__ 37\n |\n```\n\nWhen you have installed system packages that added headers to `/usr/include` that your project needs to build, you will want Zig to fallback to `/usr/include` just for those headers while using it's own for glibc. This can be done with `zig cc -isystem /usr/include`, which for `cargo zigbuild` can be configured through the common ENV `CFLAGS='-isystem /usr/include'`.\n\nFor the similar issue with shared libraries, if your packages are installing system libraries at `/usr/lib64` you would normally use `LDFLAGS='-L /usr/lib64'`, but `rustc` and `cargo` do not read this ENV but they must be configured with the search path for crates with a `build.rs` that searches for a library to link dynamically/statically. Instead you will need to use `RUSTFLAGS='-L /usr/lib64'`.\n\n#### Tip - Verify minimum GLIBC version required\n\nProvided you have no stripped the symbols from your binary built, on Linux you can run the following script to scan for glibc versioned symbols and find the highest version (the minimum required to run)\n\n1. Create a file **`/usr/local/bin/get-min-glibc`:**\n\n ```bash\n #!/bin/bash\n \n FILE_NAME=$1\n readelf -W --version-info --dyn-syms ${FILE_NAME} \\\n | grep 'Name: GLIBC' \\\n | sed -re 's/.*GLIBC_(.+) Flags.*/\\1/g' \\\n | sort -t . -k1,1n -k2,2n \\\n | tail -n 1\n ```\n\n2. Make the script command executable:\n\n ```bash\n chmod +x /usr/local/bin/get-min-glibc\n ```\n\n3. Run the command with the path to your executable / library to check:\n\n ```console\n $ get-min-glibc target/x86_64-unknown-linux-gnu/release/hello-world\n 2.28\n ```\n\n### macOS universal2 target\n\n`cargo zigbuild` supports a special `universal2-apple-darwin` target for building macOS universal2 binaries/libraries on Rust 1.64.0 and later.\n\n```bash\nrustup target add x86_64-apple-darwin\nrustup target add aarch64-apple-darwin\ncargo zigbuild --target universal2-apple-darwin\n```\n\n> **Note**\n>\n> Note that Cargo `--message-format` option doesn't work with universal2 target currently.\n\n## Caveats\n\n1. Currently only Linux and macOS targets are supported,\n other target platforms can be added if you can make it work,\n pull requests are welcome.\n2. Only current Rust **stable** and **nightly** versions are regularly tested on CI, other versions may not work.\n\nKnown upstream zig [issues](https://github.com/ziglang/zig/labels/zig%20cc):\n\n1. [zig cc: parse `-target` and `-mcpu`/`-march`/`-mtune` flags according to clang](https://github.com/ziglang/zig/issues/4911):\n Some Rust targets aren't recognized by `zig cc`, for example `armv7-unknown-linux-gnueabihf`, workaround by using `-mcpu=generic` and\n explicitly passing target features in [#58](https://github.com/rust-cross/cargo-zigbuild/pull/58)\n2. [ability to link against darwin frameworks (such as CoreFoundation) when cross compiling](https://github.com/ziglang/zig/issues/1349):\n Set the `SDKROOT` environment variable to a macOS SDK path to workaround it\n3. [zig misses some `compiler_rt` functions](https://github.com/ziglang/zig/issues/1290) that may lead to undefined symbol error for certain\n targets. See also: [zig compiler-rt status](https://github.com/ziglang/zig/blob/master/lib/compiler_rt/README.md).\n4. [CPU features are not passed to clang](https://github.com/ziglang/zig/issues/10411)\n\n## License\n\nThis work is released under the MIT license. A copy of the license is provided\nin the [LICENSE](./LICENSE) file.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Compile Cargo project with zig as linker",
"version": "0.20.1",
"project_urls": {
"Source Code": "https://github.com/rust-cross/cargo-zigbuild"
},
"split_keywords": [
"zig",
" cargo"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "ac7155055eae1e1b1a01f72fd73882e99f06751ed6482f24db06279522640288",
"md5": "8402bdae4a532c3565925e2e8908c9b0",
"sha256": "9bb0413d7f8f32373b881c46835a4c888c29e3078282379cbe9a1d50fc25c5cc"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "8402bdae4a532c3565925e2e8908c9b0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 2792780,
"upload_time": "2025-07-18T00:33:09",
"upload_time_iso_8601": "2025-07-18T00:33:09.395116Z",
"url": "https://files.pythonhosted.org/packages/ac/71/55055eae1e1b1a01f72fd73882e99f06751ed6482f24db06279522640288/cargo_zigbuild-0.20.1-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73351728bdcf5a5e0b4c47622a8a3954682d59e518c50dc3214bc36a14e58c06",
"md5": "3cd4638cb39eab880eb3ade1f32f4724",
"sha256": "00f3cec957d5d02a13164f7cb7c6079a3ef4bf7666899dcf723336f1d31513fc"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3cd4638cb39eab880eb3ade1f32f4724",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1614196,
"upload_time": "2025-07-18T00:33:11",
"upload_time_iso_8601": "2025-07-18T00:33:11.180517Z",
"url": "https://files.pythonhosted.org/packages/73/35/1728bdcf5a5e0b4c47622a8a3954682d59e518c50dc3214bc36a14e58c06/cargo_zigbuild-0.20.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "009448f3cc740c1d6e43b97b69cc0e20425ee46d62fc57b6a5d33c874efcc248",
"md5": "dda83953e43e7ed2df16249c6ad4a2d4",
"sha256": "12eb27a98cf34a382431237357a6ed827e5b3d555c74cf0839cd97a01c56e8d4"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "dda83953e43e7ed2df16249c6ad4a2d4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1572961,
"upload_time": "2025-07-18T00:33:12",
"upload_time_iso_8601": "2025-07-18T00:33:12.371729Z",
"url": "https://files.pythonhosted.org/packages/00/94/48f3cc740c1d6e43b97b69cc0e20425ee46d62fc57b6a5d33c874efcc248/cargo_zigbuild-0.20.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b69e0a88322c6744c98914ccafd43b82fd5ce296f9a068a3c16a1a6d3d2ee9c",
"md5": "3f51bf527d35682ed90ac0658466fee8",
"sha256": "8e05562e639f483bbdb0ed4e94ef73a61d371329639584bcf1aa9b405bb402b2"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3f51bf527d35682ed90ac0658466fee8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1689406,
"upload_time": "2025-07-18T00:33:13",
"upload_time_iso_8601": "2025-07-18T00:33:13.969152Z",
"url": "https://files.pythonhosted.org/packages/1b/69/e0a88322c6744c98914ccafd43b82fd5ce296f9a068a3c16a1a6d3d2ee9c/cargo_zigbuild-0.20.1-py3-none-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32ddccec85254c252a784ed795639b51f7ea75dadbcba6b0a8c58b983ff20c96",
"md5": "ed26171853e840f7beba258ff28b92ad",
"sha256": "cb9508149ee63d60e5110ff24b527ab25ed418a6329252aa4f86868197c55bf6"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "ed26171853e840f7beba258ff28b92ad",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1679876,
"upload_time": "2025-07-18T00:33:15",
"upload_time_iso_8601": "2025-07-18T00:33:15.653405Z",
"url": "https://files.pythonhosted.org/packages/32/dd/ccec85254c252a784ed795639b51f7ea75dadbcba6b0a8c58b983ff20c96/cargo_zigbuild-0.20.1-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6c89ce97aee996238c483557b47c92eb7259aeff8d788b02b6ded67ebc364cd",
"md5": "c8b107684dae90701038183f522e97bc",
"sha256": "2ce11704b65e5f17c753b43f527fddc99a87aa3ca001e4f50060c6deb53c9c07"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "c8b107684dae90701038183f522e97bc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1220096,
"upload_time": "2025-07-18T00:33:16",
"upload_time_iso_8601": "2025-07-18T00:33:16.929758Z",
"url": "https://files.pythonhosted.org/packages/c6/c8/9ce97aee996238c483557b47c92eb7259aeff8d788b02b6ded67ebc364cd/cargo_zigbuild-0.20.1-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50f38475e70e42ef2d4a8e4490a6f01a08d81dec367b752be94e22253fcbe461",
"md5": "a4c3316bc13ad25f090dc70008a4eaa4",
"sha256": "73791f3961f0eddd644b59c253cad9eafae5f1086b804aaa3f0759fde813b32b"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "a4c3316bc13ad25f090dc70008a4eaa4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1334735,
"upload_time": "2025-07-18T00:33:18",
"upload_time_iso_8601": "2025-07-18T00:33:18.510841Z",
"url": "https://files.pythonhosted.org/packages/50/f3/8475e70e42ef2d4a8e4490a6f01a08d81dec367b752be94e22253fcbe461/cargo_zigbuild-0.20.1-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b6570c53d3c57ce6fe0164e7ee8b720f9bfdc91b0811955f0bc61e15d737402",
"md5": "1de95a5362be62c38fc8357b42592cb2",
"sha256": "b51d5abe478a9aaf83301baa18a65334e58ceb9469f76df6f111773c029cabc8"
},
"downloads": -1,
"filename": "cargo_zigbuild-0.20.1-py3-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "1de95a5362be62c38fc8357b42592cb2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 1280798,
"upload_time": "2025-07-18T00:33:19",
"upload_time_iso_8601": "2025-07-18T00:33:19.793690Z",
"url": "https://files.pythonhosted.org/packages/1b/65/70c53d3c57ce6fe0164e7ee8b720f9bfdc91b0811955f0bc61e15d737402/cargo_zigbuild-0.20.1-py3-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-18 00:33:09",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "rust-cross",
"github_project": "cargo-zigbuild",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "cargo-zigbuild"
}