A fast YAML parser and linter for Python, powered by Rust
Project description
fastyaml-rs
A fast YAML 1.2.2 parser and linter for Python, powered by Rust.
[!IMPORTANT] Requires Python 3.10 or later.
Installation
pip install fastyaml-rs
Usage
import fast_yaml
# Parse YAML
data = fast_yaml.safe_load("name: test\nvalue: 123")
print(data) # {'name': 'test', 'value': 123}
# Dump YAML
yaml_str = fast_yaml.safe_dump({"name": "test", "value": 123})
print(yaml_str) # name: test\nvalue: 123\n
Features
- YAML 1.2.2 compliant — Full Core Schema support
- Fast — 5-10x faster than PyYAML
- PyYAML compatible — Drop-in replacement with
load,dump,Loader,Dumperclasses - Linter — Rich diagnostics with line/column tracking
- Parallel processing — Multi-threaded parsing for large files
- Batch processing — Process multiple files in parallel
- Type stubs — Full IDE support with
.pyifiles
Batch Processing
Process multiple YAML files in parallel:
from fast_yaml._core import batch
# Parse multiple files
result = batch.process_files([
"config1.yaml",
"config2.yaml",
"config3.yaml",
])
print(f"Processed {result.total} files, {result.failed} failed")
# With configuration
config = batch.BatchConfig(workers=4, indent=2)
result = batch.process_files(paths, config)
Format Files
# Dry-run: get formatted content without writing
results = batch.format_files(["config.yaml"])
for path, content, error in results:
if content:
print(f"{path}: {len(content)} bytes")
# In-place: format and write back
result = batch.format_files_in_place(["config.yaml"])
print(f"Changed {result.changed} files")
BatchConfig Options
| Option | Default | Description |
|---|---|---|
workers |
Auto | Number of worker threads |
mmap_threshold |
512 KB | Mmap threshold for large files |
max_input_size |
100 MB | Maximum file size |
indent |
2 | Indentation width |
width |
80 | Line width |
sort_keys |
False | Sort dictionary keys |
BatchResult
result = batch.process_files(paths)
print(f"Total: {result.total}")
print(f"Success: {result.success}")
print(f"Changed: {result.changed}")
print(f"Failed: {result.failed}")
print(f"Duration: {result.duration_ms}ms")
print(f"Files/sec: {result.files_per_second()}")
for path, error in result.errors():
print(f"Error in {path}: {error}")
Documentation
See the main repository for full documentation.
License
Licensed under either of Apache License, Version 2.0 or MIT License at your option.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastyaml_rs-0.6.2.tar.gz.
File metadata
- Download URL: fastyaml_rs-0.6.2.tar.gz
- Upload date:
- Size: 266.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c01779a8877a688b68184ff92546b26ca1a49ecfae029db2eb127fb1f422090
|
|
| MD5 |
0f411ef9673512cb56160f27d0cfc77c
|
|
| BLAKE2b-256 |
ba2bbd47b3f3e8f672c88149b3dee7657e7c7818aab70a1b541ee5b480bf10af
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2.tar.gz:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2.tar.gz -
Subject digest:
0c01779a8877a688b68184ff92546b26ca1a49ecfae029db2eb127fb1f422090 - Sigstore transparency entry: 1391434306
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 709.7 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32c8674acd824876d0609a4bd07a4e2c1d9ec4241b7f52c55817be208d990f1b
|
|
| MD5 |
1d452a6e5cc7c5c17eaccca49007b366
|
|
| BLAKE2b-256 |
987952b7a5fdc4544f22a74711baa59e2e7e8794893b136378b88cfbb0c78690
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-win_amd64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-win_amd64.whl -
Subject digest:
32c8674acd824876d0609a4bd07a4e2c1d9ec4241b7f52c55817be208d990f1b - Sigstore transparency entry: 1391434415
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 989.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dca9d98ef8025b018ee24f3979bd095d0ec1af2cd0c277c50062aede257a5bcb
|
|
| MD5 |
040efca5a95e13086cfe4655adb73401
|
|
| BLAKE2b-256 |
393a9eaa188eb5f7e9906c15b7ad073fae3b644bb7d29f1616413d18cf8a48a8
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
dca9d98ef8025b018ee24f3979bd095d0ec1af2cd0c277c50062aede257a5bcb - Sigstore transparency entry: 1391434447
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 910.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b500e891b64e8f4ca7ebdce2ef5d26ba8660d18609e81b239948ef96c3f52eb
|
|
| MD5 |
9a585294354acc9df5ad6eaa5528c8f2
|
|
| BLAKE2b-256 |
acaa1ebe70123b94714aed5037a10c0323f540be6d54748eed3d5c692ddb21d3
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
2b500e891b64e8f4ca7ebdce2ef5d26ba8660d18609e81b239948ef96c3f52eb - Sigstore transparency entry: 1391434329
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 778.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccac78183f83e5eff1d780a2be9561b5b45c9a289ba6d990ca1c501fda52c9f5
|
|
| MD5 |
66a72c90d015d362dff4319959088f95
|
|
| BLAKE2b-256 |
f94436946c447cc39a2a9b411aef58821e5672ae57656179dd89752ae1369293
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ccac78183f83e5eff1d780a2be9561b5b45c9a289ba6d990ca1c501fda52c9f5 - Sigstore transparency entry: 1391434383
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 733.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33429b80f060632a24e573afffec1a336014fb2f7dd4075e8c03f7352cfc7b05
|
|
| MD5 |
d9fdbd763308797648b0b7871c34ca8c
|
|
| BLAKE2b-256 |
480e668c736388e1e7cbedcc86fb7b979082c0de0c0c98345cae860b8e91d050
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
33429b80f060632a24e573afffec1a336014fb2f7dd4075e8c03f7352cfc7b05 - Sigstore transparency entry: 1391434366
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 699.3 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
beac62848f17dee80ee3496c84c98870c32c986a832bbd7a08425550ef0c6e0a
|
|
| MD5 |
e1d3b5268feed39678855f0988f46d09
|
|
| BLAKE2b-256 |
5c24073bea16ae0d51c53eae4c24bc64d4eb7fc23aba570f68f69891540963e3
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
beac62848f17dee80ee3496c84c98870c32c986a832bbd7a08425550ef0c6e0a - Sigstore transparency entry: 1391434371
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 749.3 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4714b7a65a345f74e2507bf0c09fcdf43818f325eda5e81d01279a7af6368f6
|
|
| MD5 |
9dcb8f64673e2aee76606f6b5623986d
|
|
| BLAKE2b-256 |
3d829fc040cd5446839660ab40e383f51ee69b531ea373636d2d5cc357f92867
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
e4714b7a65a345f74e2507bf0c09fcdf43818f325eda5e81d01279a7af6368f6 - Sigstore transparency entry: 1391434326
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 709.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffcd4d43c2bbe7788d206236bb3b6a550a0b1e645d9172ab041eb9294749918c
|
|
| MD5 |
c72589b19efb59ea8af58bb86a1eda04
|
|
| BLAKE2b-256 |
beeeec47458b171c9b716e437dfcae72c79c9f6152f7b5ad79e1cc1ab3a5cb5d
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-win_amd64.whl -
Subject digest:
ffcd4d43c2bbe7788d206236bb3b6a550a0b1e645d9172ab041eb9294749918c - Sigstore transparency entry: 1391434339
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 989.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4eba707c84d19d979468b118504b144ccab048d73d4f5bbfdfec2ca28f2c481
|
|
| MD5 |
68823b743c9c50e075569bafe6d5024f
|
|
| BLAKE2b-256 |
3b45c6177fbeda1cbf558325d9a39bdf1ba3a4849406af7f352e7cd92ef03bba
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
f4eba707c84d19d979468b118504b144ccab048d73d4f5bbfdfec2ca28f2c481 - Sigstore transparency entry: 1391434361
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 910.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85c98b2403597db860eeb8cbc8500f2d845e0f0944e6001e1840460d802f8662
|
|
| MD5 |
524fcf8f6143319f6abc0249b287bd20
|
|
| BLAKE2b-256 |
6fa9fe1b5a3172ed8e9bc11e45cc14ffdae6e797781322921746b499b885ee6b
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
85c98b2403597db860eeb8cbc8500f2d845e0f0944e6001e1840460d802f8662 - Sigstore transparency entry: 1391434346
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 778.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f216d25b910c121f4518014a8655ed8664b86b9d8a31804148e5e73e9b6869fb
|
|
| MD5 |
7cb72d55729190906da01698a22783ef
|
|
| BLAKE2b-256 |
6821eeddb51bc06782a8229e484dac1b9426952e06900cddc425f293e21f4647
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
f216d25b910c121f4518014a8655ed8664b86b9d8a31804148e5e73e9b6869fb - Sigstore transparency entry: 1391434323
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 733.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b227179085f80b5b3d8f115c68cec872b2ee8325dd7bfd4171d3251d45ebddc1
|
|
| MD5 |
0be0bf53ccd262493d99f9fb9daf9982
|
|
| BLAKE2b-256 |
25e4a1efcc3310613c897329d4ffdca7e073a7d9179bbd4da2cba63ef638f7f3
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b227179085f80b5b3d8f115c68cec872b2ee8325dd7bfd4171d3251d45ebddc1 - Sigstore transparency entry: 1391434434
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 699.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
658cac921e08d2394fa42c0e6afe315ded069750c693d869db93d2d56608e439
|
|
| MD5 |
3da8532a867cf879522fa56697157858
|
|
| BLAKE2b-256 |
f3846d8dc446694758ead7f34a24bfe274316f10a677117339c7b029321e2623
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
658cac921e08d2394fa42c0e6afe315ded069750c693d869db93d2d56608e439 - Sigstore transparency entry: 1391434425
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 749.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c62c71f64154c1839cc86175a00e22f2faeacc761bbf055090ee2e7d2554476
|
|
| MD5 |
2d15412827d6177cb78ec42c9e29df61
|
|
| BLAKE2b-256 |
930c07e4a0e828d9aa0366a6cada03e5db68d803c51c78a2b3235e8ce47e1b69
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
5c62c71f64154c1839cc86175a00e22f2faeacc761bbf055090ee2e7d2554476 - Sigstore transparency entry: 1391434355
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 709.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e4bfcf36ad543260d9362cfea91c733ec6a47b75af86f1a9598f56d85537203
|
|
| MD5 |
b1167e5f7a2a985e8e9ad3165e4e1f2c
|
|
| BLAKE2b-256 |
9b18da9bf8b629fd9f6acefc688c61fb21af7267386a400e35dc51afd562346d
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-win_amd64.whl -
Subject digest:
5e4bfcf36ad543260d9362cfea91c733ec6a47b75af86f1a9598f56d85537203 - Sigstore transparency entry: 1391434429
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 989.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de65078cc5a3145f851f5a16c0e3f723ad7120a8a18c3882e9c27119355171ed
|
|
| MD5 |
ccf217c9916720cbf7304f37edf06dd6
|
|
| BLAKE2b-256 |
3e49499443e47445738f17cfb22f7b601dc4cb0b57d17a5cac017d0ca5a4c9d4
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
de65078cc5a3145f851f5a16c0e3f723ad7120a8a18c3882e9c27119355171ed - Sigstore transparency entry: 1391434402
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 910.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d69f717da474d3fc93233cc004d4c92586a24fcdbfabdd18515657b71f58221e
|
|
| MD5 |
18d99872b66716d9bd1bcc8a3e0b4a95
|
|
| BLAKE2b-256 |
3db196c2059a8e6a5f582773f7612795d86063413f8e74fc654826dc3ab8f684
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
d69f717da474d3fc93233cc004d4c92586a24fcdbfabdd18515657b71f58221e - Sigstore transparency entry: 1391434381
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 778.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
420fa7820f2acf0e7fe88d3043ddc32d4c45ef91d40a71304e552c33cd754354
|
|
| MD5 |
0c280dd6a6a41ab8b271678aaedb8490
|
|
| BLAKE2b-256 |
cc32e324cbc6aa0d95d8fe713f6aadb4317c6b3a2cf714be8844c7d26bb1ddd9
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
420fa7820f2acf0e7fe88d3043ddc32d4c45ef91d40a71304e552c33cd754354 - Sigstore transparency entry: 1391434436
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 733.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba77e18e6a31b2c995878aa3319390dac36904f5e57e94ea21c8975d69dac315
|
|
| MD5 |
8d462194c88da1590c74913b3620be7c
|
|
| BLAKE2b-256 |
638e86e689ecbbe2278ba490977fe7854cd66333b7190daa972098a15b303a48
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ba77e18e6a31b2c995878aa3319390dac36904f5e57e94ea21c8975d69dac315 - Sigstore transparency entry: 1391434378
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 699.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de5d4d40340c80fc0b1e7fef1899c6368627b077fa831441c1ba98a9aa81d3ef
|
|
| MD5 |
690fafa1fa88a8cdbf1efd1f6fb2da43
|
|
| BLAKE2b-256 |
ea9531120c580ecf9372e58c93511a7e7759ae42c2efa62efd96b5d607754c13
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
de5d4d40340c80fc0b1e7fef1899c6368627b077fa831441c1ba98a9aa81d3ef - Sigstore transparency entry: 1391434391
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 749.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
432caefcb15e9a4cb7d747e28a071672bfcffe68c35ba38d5e19c03dec64076f
|
|
| MD5 |
d20172ebc66cda772473b1f2ecfb111d
|
|
| BLAKE2b-256 |
d36cc5bbc2887c12b10cf5ed339d8acf3662505a885cca40b10df4fa7596c30d
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
432caefcb15e9a4cb7d747e28a071672bfcffe68c35ba38d5e19c03dec64076f - Sigstore transparency entry: 1391434398
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 711.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4753bad085302fea721bdd6767137edd2c3ca9f4b9ee2df02b6d55a729f818c5
|
|
| MD5 |
fbc859fee91ad9cbb94fbc809aa8cbb7
|
|
| BLAKE2b-256 |
f17685ad8ffc840a917f0b9648c10bf2a39cf80b556a389ace4afe4ed215ae90
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-win_amd64.whl -
Subject digest:
4753bad085302fea721bdd6767137edd2c3ca9f4b9ee2df02b6d55a729f818c5 - Sigstore transparency entry: 1391434422
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 988.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b7341a420aa5c50697f13edad2007cc2a53f06009a5a29cfe523f8c51869c0a
|
|
| MD5 |
f9bf88c73d3ad366434da91fd105e244
|
|
| BLAKE2b-256 |
5f41a38aea4a70c6678df9a482893dbd6463ea135db5476998b3c1ecdb7349de
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
5b7341a420aa5c50697f13edad2007cc2a53f06009a5a29cfe523f8c51869c0a - Sigstore transparency entry: 1391434351
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 910.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b5c7fb0a0da2f23e3f3f29742f85bf3d635673f502bb569ac957365769957a3
|
|
| MD5 |
dc39ae1277d3392bf86b4adecd50af72
|
|
| BLAKE2b-256 |
2e5a726a89d7df709cc772790b9bb6c710c48c53d1c7ad33336cc94fc750aada
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
6b5c7fb0a0da2f23e3f3f29742f85bf3d635673f502bb569ac957365769957a3 - Sigstore transparency entry: 1391434332
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 778.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d49b623157ddd805910426b713e5dbd212983b4d1e4996e688da603286e6d60f
|
|
| MD5 |
fe195cae4f1d3b7933a2a7da5ca0a704
|
|
| BLAKE2b-256 |
cd861de7edc14abcb94b50a87583107084913429acb66ba987680af7c84f1d15
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d49b623157ddd805910426b713e5dbd212983b4d1e4996e688da603286e6d60f - Sigstore transparency entry: 1391434386
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 733.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d25cde016a9109c4f3669b0579bee0ffe608b999aae531441f9d266ebf035110
|
|
| MD5 |
93173071da8c82a57adf6e67719fa520
|
|
| BLAKE2b-256 |
ccc7ced38287876ca64fcd4266e35fae835f76d3ccef294e141f36c72489b02b
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
d25cde016a9109c4f3669b0579bee0ffe608b999aae531441f9d266ebf035110 - Sigstore transparency entry: 1391434410
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 699.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e093abccb9e0bb8fdb655395c6d3208e7482fb60aadebea7ba4e441f301bcc11
|
|
| MD5 |
3b7c68cfd2938e58621b102dff16e558
|
|
| BLAKE2b-256 |
58620fac7ef2503eac07e41bff93de6395ea44c104883c90b3f39ed339a07d1e
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
e093abccb9e0bb8fdb655395c6d3208e7482fb60aadebea7ba4e441f301bcc11 - Sigstore transparency entry: 1391434454
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 750.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e0bb38e2fca8df0360cf2933a00111605e3efc150d20d0b62810825a87a2d64
|
|
| MD5 |
91692067b847be48707d7c9fb5ad40ad
|
|
| BLAKE2b-256 |
a0c11b947aea03aa8cb703ff1edf57115f46d031ccb49d364c654e6a6898a24a
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
7e0bb38e2fca8df0360cf2933a00111605e3efc150d20d0b62810825a87a2d64 - Sigstore transparency entry: 1391434419
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 711.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a85706f9d2f8c148e29b1664a849f7e2f571bcfacc463f47b3d0d8538971caeb
|
|
| MD5 |
1d97564ebae11e24de13012e8b80dfd8
|
|
| BLAKE2b-256 |
6f9ec4f128cada2b7f5205fcc7e3967f9386d6ff7937aa38cc2f291890413a01
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-win_amd64.whl -
Subject digest:
a85706f9d2f8c148e29b1664a849f7e2f571bcfacc463f47b3d0d8538971caeb - Sigstore transparency entry: 1391434394
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 989.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adedbf60acbe2641d0dd08aa5af8bba1f4fea3bfc2d89d2c6be92e0b0cf3bbb4
|
|
| MD5 |
da6841507d56212c7583869f8ab219dc
|
|
| BLAKE2b-256 |
9b61c2f9dd6718ac3d5110daa191d277466e8f0b81b92d7dd8c0e8327b3bc9b7
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
adedbf60acbe2641d0dd08aa5af8bba1f4fea3bfc2d89d2c6be92e0b0cf3bbb4 - Sigstore transparency entry: 1391434337
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 911.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
134583123e139cb321a0a4bf6715c228ad6f9a76fa8055bdf19f6397b3f7d0f4
|
|
| MD5 |
8aec6a8e96a8554d36a9c43f8db28c43
|
|
| BLAKE2b-256 |
fe59cb8b7c16826cd9a836bc0f1312308b2bf714c8e6e457127cb062d81e3f6b
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
134583123e139cb321a0a4bf6715c228ad6f9a76fa8055bdf19f6397b3f7d0f4 - Sigstore transparency entry: 1391434312
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 778.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ac23e178e39a6aa197b6942b092e0cd818624854748656a2bbb4903579495e5
|
|
| MD5 |
a802f2c6cb0b9d7e49fa1ead4023ea12
|
|
| BLAKE2b-256 |
67473d535534c8f7ab6832dada40ea7ce8edabbbbb79cad2fc65730f5c763458
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6ac23e178e39a6aa197b6942b092e0cd818624854748656a2bbb4903579495e5 - Sigstore transparency entry: 1391434320
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 734.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52c304f0bae072da4867ac429579a5cfc863e2f84da80f0507178681fef5e729
|
|
| MD5 |
f79d602b8d6f4b8b49979ce336ce0684
|
|
| BLAKE2b-256 |
dab90489e97c6271ba679a1f4eddbb71160250fd4cfe23d8f70af616b9f3770e
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
52c304f0bae072da4867ac429579a5cfc863e2f84da80f0507178681fef5e729 - Sigstore transparency entry: 1391434406
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 699.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fb85a9bef9b729ce8389348edafa608a961cea813083bc38fad09de7edaf024
|
|
| MD5 |
89f62412a2ea5dc96e8d9832e4f966ee
|
|
| BLAKE2b-256 |
3365848259ce796574a1af8c57a7e8b57eaea5265c1c743293a46df5366f7c5f
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
1fb85a9bef9b729ce8389348edafa608a961cea813083bc38fad09de7edaf024 - Sigstore transparency entry: 1391434374
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fastyaml_rs-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastyaml_rs-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 750.7 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdc4ac90884f6d367897a3d678c692b7a98fcb3e2ce6c69a62d5b7aaa778ac59
|
|
| MD5 |
58bf5360f2a265b2e5b5bc63200c84ee
|
|
| BLAKE2b-256 |
3a44d6052bb848aa0f49c50db229ab038d1a48ac912d6d67aff8e8cd051ce5be
|
Provenance
The following attestation bundles were made for fastyaml_rs-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/fast-yaml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastyaml_rs-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
bdc4ac90884f6d367897a3d678c692b7a98fcb3e2ce6c69a62d5b7aaa778ac59 - Sigstore transparency entry: 1391434342
- Sigstore integration time:
-
Permalink:
bug-ops/fast-yaml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Branch / Tag:
refs/tags/v0.6.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@be330aa227f77868f3f53072b1e31da42e2a4d35 -
Trigger Event:
push
-
Statement type: