Skip to main content

High-performance Rust-backed ROUGE scoring for Python

Project description

rouge-rust

rouge-rust is a Rust-powered replacement for Google's rouge-score Python package. It provides matching ROUGE-1, ROUGE-2, and ROUGE-L metrics through a PyO3 extension module, with fast batch APIs for large-scale evaluation workloads.

Features

  • ROUGE-1, ROUGE-2, and ROUGE-L scoring
  • score() for drop-in per-pair scoring
  • score_batch() for list-of-dicts batch scoring
  • score_batch_flat() for high-throughput struct-of-arrays batch scoring
  • Rust core optimized for large datasets

Installation

pip install rouge-rust

Usage

import fast_rouge

single = fast_rouge.score("the cat sat", "the cat sat")
print(single["rouge1"].fmeasure)

batch = fast_rouge.score_batch(
    ["the cat sat", "hello world"],
    ["the dog sat", "hello there"],
)
print(batch[0]["rougeL"].precision)

flat = fast_rouge.score_batch_flat(
    ["the cat sat", "hello world"],
    ["the dog sat", "hello there"],
)
print(flat.rouge1_fmeasure[0])

Development

Build the extension into the active virtual environment:

source "$HOME/.cargo/env"
.venv/bin/maturin develop --release

Run tests:

source "$HOME/.cargo/env"
cargo test
.venv/bin/pytest -q

Run the benchmark:

PAIR_COUNT=100000 REPEATS=3 .venv/bin/python benchmark.py

Contributing

See CONTRIBUTING.md.

License

This project is released under the MIT License. See LICENSE.

Release

Build a source distribution and wheel:

source "$HOME/.cargo/env"
.venv/bin/maturin build --release --sdist -o dist

Validate the distributions:

.venv/bin/python -m twine check dist/*

Upload to PyPI:

source "$HOME/.cargo/env"
.venv/bin/maturin upload dist/*

GitHub Actions release flow

This repo includes a GitHub Actions pipeline in .github/workflows/release.yml.

  • pushes and pull requests to main and develop build and test wheels
  • tags matching v* build release artifacts
  • tag builds publish to PyPI and create a GitHub Release

One-time PyPI setup

Configure PyPI trusted publishing for:

  • owner: kyle-mirich
  • repository: rouge-rust
  • workflow: release.yml
  • environment: pypi

After that, creating and pushing a tag such as v0.1.0 will trigger publishing.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rouge_rust-0.1.2.tar.gz (11.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rouge_rust-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp314-cp314-win_amd64.whl (183.3 kB view details)

Uploaded CPython 3.14Windows x86-64

rouge_rust-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (284.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rouge_rust-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (291.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rouge_rust-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp313-cp313-win_amd64.whl (183.4 kB view details)

Uploaded CPython 3.13Windows x86-64

rouge_rust-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (284.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rouge_rust-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (291.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rouge_rust-0.1.2-cp312-cp312-win_amd64.whl (183.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (284.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rouge_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (291.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rouge_rust-0.1.2-cp311-cp311-win_amd64.whl (184.6 kB view details)

Uploaded CPython 3.11Windows x86-64

rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (285.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rouge_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rouge_rust-0.1.2-cp310-cp310-win_amd64.whl (184.5 kB view details)

Uploaded CPython 3.10Windows x86-64

rouge_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rouge_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file rouge_rust-0.1.2.tar.gz.

File metadata

  • Download URL: rouge_rust-0.1.2.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rouge_rust-0.1.2.tar.gz
Algorithm Hash digest
SHA256 97e8107f93d26b53eb1dd5c87046de054b885774c3ceab3116c956db35f9616e
MD5 2a606a9bb9bf0e21d3c0c583eb89686a
BLAKE2b-256 6f69a155f81d1174a769761f66eb945a14e7994e5da8f6fe66585bd9e54b7318

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2.tar.gz:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0026f822a6610d37f97a9bf846c54b1d53c12b3c21d56e74d6f933c8528db1ad
MD5 b3d55aedd2ea8ffe0db3b355997e8b72
BLAKE2b-256 4273f13fb11e553197366d9676f5b8347a1ace8876b5b89b074b1f62c4194927

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ffa7ce86a0b67926932eb42f660e6dbdf8eb2d9b97345422e7f40e0eab5cd3e
MD5 2a4e8d7ce062e51636208c11630a215c
BLAKE2b-256 61080c8ae0935dd7ba1926d1fd3c5b31b1457e36ada8ba8cac62ddf75d0ee496

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rouge_rust-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 183.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rouge_rust-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e52d938e9f8c98be2b0bf7da9a11e251662612368d87d98c0b56c84cd72e2e5e
MD5 648c6877f5ba5c5dbbd66460ba87d5fa
BLAKE2b-256 c079e9c3234362e3fb7fb6dcc0f0b6964a06011f85f76ca0df0520c4ea444243

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp314-cp314-win_amd64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc6f9441325b725335b64a30117f9a17c8ec7b4528628b7789db2182a2b52a5d
MD5 40d204ebcee19a381a43eec7800a7a30
BLAKE2b-256 19b102481dca4520881041849b97e98dacda517e791b2730327cc700e0003062

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95c1d6099ed897b0ba517ec1a8e0f474387973c1b619e2a82d6a003f2830395f
MD5 1866c07e47aa4307da33a0f1f2ff7c35
BLAKE2b-256 57f6fabbeeaffc6318890fe58c0d0a57111cc23db82f73cf7228e8e6ad089787

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd02e9eb6bfd4333dda1e6e4c019010794adfe0faf87089b5249cccf4fa49485
MD5 d9d8e902a5f64254b4f6dacf4600a088
BLAKE2b-256 72ee7132518767d003e07727b2e881f7e7349504839b0e71915fa38c2511563e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 977f468fe17a0d7f466fabcc171edab67928cb3582c08cee864855666efa92dc
MD5 144b3748455ebb01150c3a408a7cc52e
BLAKE2b-256 932f6e7410bc88938572d6bd84766d1e44918c0ee309c4a7bdcbafc9b1e5c361

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rouge_rust-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 183.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rouge_rust-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a7f91dece78e0d8ce3809cb9bc45050e5954d14fc5003b88d0bb9ecefdbde3c
MD5 3006ad52acf215fd903b6bfdc060aa42
BLAKE2b-256 e1b3e3d9fabf73763f0034b82fdeb6103bd78a37e87488c62e05dd827a8c5993

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3209c34650c04d3a66f68574f540740df89da66e917e34453586848059b163cf
MD5 dc807d55da760cc864d8e0939a39b38e
BLAKE2b-256 2d801f5fb675e9c5d27bf2b8e955d9441e6e9106696f1db778dec3e247cdf894

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d076584bd9ee21d265482e563b4e52b6af41319e51739563d01e9553cd4164b6
MD5 f39ff7e6309e33bb8de945c2197644e1
BLAKE2b-256 2542b51fbb4c75fd8cebfff24f4e8a2a0ac6af021188f36cdace5927327c677b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f12e5c1f77dc55d4eaa667c7757503c9c3b8a2ea1ab05c90dd3553528d84e2e
MD5 073facbae39098c8e5a55e7dd020c322
BLAKE2b-256 d6637ea530c74cd0d2cbf771823ef9364df7fe3aee17579143243333dba0378d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rouge_rust-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 183.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rouge_rust-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b8092eb9498c4ffa024a2520e654e57632be43fbcdf9767489d6356ba8cb9e50
MD5 5d33dfcc8caf3b7f29d5b6d6f05452fa
BLAKE2b-256 b7e2ee56c6bf48e400c21609b662318307a859d9eb708a0a9559b53d3031d6db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 688bebe4218b5cd416383e0ab0a930109530dd2367808378138caa13498adc80
MD5 90c95514747d157cf85ca5c711e9c70a
BLAKE2b-256 fd443945b27b827d641f1a91f9e95f9d342635636db9b429eb480785e7dee41e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e706d9f191b811e3bdbc4f0fec830932ac806aebd066b19f3b1cd3a0ff631f0a
MD5 028274839955a89d16b87055cd3389b4
BLAKE2b-256 a2527ef7b46073353e6a143545689e141e511a46673884fd72598398bb8825cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6ba81f64185bd600c4178e4474058dcd2bfbba6de31ecb9cc86e64e578e300e
MD5 53e736f6ca3e203093239f6c9b2128fa
BLAKE2b-256 cf715b81a32835cb6eef81daac34f9b0d700df89c1f2a37f5356bb67bb5a0b89

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d69b0b5c0bee110dd3b18e7f856cbdc2b83c86b2ad57b80f9cbf22606724312
MD5 70a9fc090b91ec1361f2c770a3dce5cc
BLAKE2b-256 4c1ed903aed14e0983f300ad974a0657930dc8178d112d720e7f203e1a65261c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rouge_rust-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 184.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rouge_rust-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e48c50f6be2f111c1f344c4a79a65cc8bd179db979e6446ba30db7dc7b37c12e
MD5 a9684d039a2bd3d53fd2c64b01681f48
BLAKE2b-256 c20f5b781a50c98c854b503ab10879069715a2276db370efdadd7ae76c6670c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4791b9ad1c32ea1584b3de1fb884102f0bc9a51339334a8ed9aafcb7b8c3b064
MD5 a550eb5fab16d97daea537ba3c297950
BLAKE2b-256 986d1ee31fb7f10b3e9501cee78033d1d94f5892445fd369e9f0bef0882f631f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb02b54cae66fddb4967173d75185818718114c770f0bc5ed45fd2c33fc4a468
MD5 c845a70986da30dc84b454e8b4ce2078
BLAKE2b-256 bdc19a73ac78a2c4248414642aa6f826dc9a5b104a813fe5e9b66333396cc66e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f00e6922c428e5b3a3c31868b9f23ba6e82952bc2deda1dca18de8d2aa33c9af
MD5 8a4ac486f1b0fb968df1fd33938c3218
BLAKE2b-256 27fa670b340840aa91f611869efa1dd10ff569793ace3fc1dd7c62591b037bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65c8227ddb1acd64ec90de4ee48ba7d21def98c677e81e0e779c710f98ee4adb
MD5 397f6df042c292faa501c0241bc214bd
BLAKE2b-256 3a4b8bd465ea937073bff0e458c1ceb21dedbbee1e0bc7694abbdc7e1e3e705b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rouge_rust-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rouge_rust-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6b0b09df5938c46708ec47f431265dd86dfac36c69d4267201d683bf101d799
MD5 2257380994f82ce515c60e2a9c9dcbc8
BLAKE2b-256 69eb0f18a5f7a3bf2addbb7f11826458219330e6a30819741c4ca13b65f990fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 206cb97d1c30358681e1c800998893d3952d1cf95d070d0d436b2faa44ddd1d4
MD5 54d0ef4fb9e5628939148c84ae3574bf
BLAKE2b-256 e947e63cd4ffb336b86d6ea2a0155cf5c56e35c52e216c96ddd2564b46d5a95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0adb42ef17f58ad0941ce17b242c234c82d9b939b8a2ad867c9f6d99a2c6e708
MD5 02170700b17c8378df8297657889a303
BLAKE2b-256 f2ff01e31469443b50c2b100034ccd83508929582de8fcbaaf5680497ea5a5dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rouge_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rouge_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8eb3a0c33478b9f1fc6825e0dc44aaa590ede3543acbc66c27f670176aeb44f2
MD5 46471db7d34f2faff5dfa3380de1bd09
BLAKE2b-256 98ac05b78e69dba861d259efe50ef1926326badeb751ce96444f551855cc4fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rouge_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on kyle-mirich/rouge-rust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page