Skip to main content

Generates unique slugs for various uses

Project description

Random Slug Generator

What it says on the tin - this generates random text slugs in Rust.

PyPi

Downloads

Usable as a standalone binary, web applications as a WebAssembly module (WASM), or even as a Python module.

Why?

I needed a way to generate random slugs for a web project so thought it was a good opporunity to try out Rust's WebAssembly capabilities while also being able to use the same code as a zero-dependency python module for other projects.

Key features

  • Generates unique random slugs for a input length in words
  • Fast
  • Zero dependencies (python and wasm)
  • Pre-filtered to avoid dodgy or rude vocabulary
  • Customisable slug length in words
  • Over half a million unique combinations for 2-word slugs ranging up to over 280 trillion unique combinations for 5-word slugs.

Usage

As a Python module

Install from PyPI

pip install rustyrs

OR

Build from source

python -m venv venv
source venv/bin/activate
pip install maturin
maturin develop --features python

Then from Python:

from rustyrs import random_slugs
slugs: list[str] = random_slugs(3, 5)

# slugs: ['reflecting-unsealed-mamba', 'disabling-addicting-asp', 'pliable-begotten-barnacle', 'vaulting-telepathic-caracal', 'canonical-graven-beetle']

Other features:

  • get_slug(word_length: int) -> str: Generate a single slug of a specific length
  • SlugGenerator(word_length: int): Create a generator object to generate slugs of a specific length. Will generate slugs until all unique permutations have been reached.
    from rustyrs import SlugGenerator
    gen = SlugGenerator(3)
    print(next(gen)) # 'unwieldy-unsuspecting-ant'
    
  • combinations(word_length: int) -> int: Get the number of possible combinations for a given word length
    from rustyrs import combinations
    print(combinations(2)) # 556,284
    
  • EternalSlugGenerator(word_length: int): Create iteration suffixed slugs forever. Guaranteed uniqueness.
      from rustyrs import EternalSlugGenerator, combinations
      gen = EternalSlugGenerator(2)
      first = [next(gen) for _ in range(combinations(2))] # max no of combinations iterated
      first[-1] # 'listening-tench-0'
      next(gen) # 'existent-walrus-1'
    

Python Performance

  • 0.5 million x 2 word slugs: ~210ms
    time python -c "import rustyrs as r;a = set(r.random_slugs(2, 556_284));assert len(a) == 556_284"
    real    0m0.219s
    user    0m0.211s
    sys     0m0.000s
    
  • 1 million x 5 word slugs: ~524ms
    time python -c "import rustyrs as r;a = set(r.random_slugs(5, 1_000_000));assert len(a) == 1_000_000"
    real    0m0.667s
    user    0m0.524s
    sys     0m0.051s
    

As a WASM module

# If wasm pack is not already installed
cargo install wasm-pack

# build the WASM module
wasm-pack build --target web --features wasm

Then from JS/TS:

import init, { random_slugs } from './pkg/rustyrs.js';
init();
const slugs: string[] = random_slugs(3, 5);
console.log(slugs);

// slugs: ['postpartum-regal-taipan', 'devastating-elven-salamander', 'immense-ambivalent-wren', 'philosophical-bandaged-gaur', 'outlaw-noncommercial-sunfish']

See index.html for a full example


As a Rust binary

cargo run --release [length in words] [number of slugs]

As a standalone binary

cargo build --release
[build path]/rustyrs [length in words] [number of slugs]

Example Output

proctor-slimmer-guillemot
unsafe-warlike-avocado
garbled-pulled-stork
answerable-quick-whale
floral-apportioned-bobcat

License

MIT

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

rustyrs-0.5.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (468.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustyrs-0.5.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (498.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rustyrs-0.5.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (320.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rustyrs-0.5.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (468.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustyrs-0.5.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (498.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rustyrs-0.5.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (320.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rustyrs-0.5.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (469.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustyrs-0.5.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (498.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rustyrs-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (297.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (319.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp313-cp313t-musllinux_1_2_x86_64.whl (467.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp313-cp313t-musllinux_1_2_i686.whl (496.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rustyrs-0.5.5-cp313-cp313-win_amd64.whl (155.4 kB view details)

Uploaded CPython 3.13Windows x86-64

rustyrs-0.5.5-cp313-cp313-win32.whl (149.4 kB view details)

Uploaded CPython 3.13Windows x86

rustyrs-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl (467.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp313-cp313-musllinux_1_2_i686.whl (495.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rustyrs-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (297.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (318.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp313-cp313-macosx_11_0_arm64.whl (263.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rustyrs-0.5.5-cp312-cp312-win_amd64.whl (155.3 kB view details)

Uploaded CPython 3.12Windows x86-64

rustyrs-0.5.5-cp312-cp312-win32.whl (149.5 kB view details)

Uploaded CPython 3.12Windows x86

rustyrs-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl (467.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp312-cp312-musllinux_1_2_i686.whl (495.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rustyrs-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (297.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (318.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp312-cp312-macosx_11_0_arm64.whl (262.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rustyrs-0.5.5-cp311-cp311-win_amd64.whl (155.3 kB view details)

Uploaded CPython 3.11Windows x86-64

rustyrs-0.5.5-cp311-cp311-win32.whl (149.4 kB view details)

Uploaded CPython 3.11Windows x86

rustyrs-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp311-cp311-musllinux_1_2_i686.whl (497.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rustyrs-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (297.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (319.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp311-cp311-macosx_11_0_arm64.whl (266.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rustyrs-0.5.5-cp310-cp310-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.10Windows x86-64

rustyrs-0.5.5-cp310-cp310-win32.whl (149.7 kB view details)

Uploaded CPython 3.10Windows x86

rustyrs-0.5.5-cp310-cp310-musllinux_1_2_x86_64.whl (468.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp310-cp310-musllinux_1_2_i686.whl (497.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rustyrs-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (320.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp39-cp39-win_amd64.whl (155.7 kB view details)

Uploaded CPython 3.9Windows x86-64

rustyrs-0.5.5-cp39-cp39-win32.whl (150.3 kB view details)

Uploaded CPython 3.9Windows x86

rustyrs-0.5.5-cp39-cp39-musllinux_1_2_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp39-cp39-musllinux_1_2_i686.whl (498.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rustyrs-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (321.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp38-cp38-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.8Windows x86-64

rustyrs-0.5.5-cp38-cp38-win32.whl (150.2 kB view details)

Uploaded CPython 3.8Windows x86

rustyrs-0.5.5-cp38-cp38-musllinux_1_2_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp38-cp38-musllinux_1_2_i686.whl (498.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rustyrs-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rustyrs-0.5.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (320.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rustyrs-0.5.5-cp37-cp37m-musllinux_1_2_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

rustyrs-0.5.5-cp37-cp37m-musllinux_1_2_i686.whl (498.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

File details

Details for the file rustyrs-0.5.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86f49748a52c6db69744fb4779ba50ec4002a2f36303b872e906b527c88458cc
MD5 ac3f71fefaa264602f9b5ebb5ec7f55e
BLAKE2b-256 6c5954fc1ba97c83a19bd8d3983895604ae46787dd240c5cc0d34ae857908635

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fd3cdbcc0b7217a739b29008c273e84bc81ddf2cd7f84e7b0d54ab3a005ec86
MD5 e5ca4314d135b93952a604e5164258b4
BLAKE2b-256 914a909584002dd0527ce1713e4e0e7f45e6d7ad79c80f41b85d9f64a53df8b6

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e63d594af616b1d02367594071320fb7dfb8cc2e1faa04b54f7f75fde095669
MD5 e2a0df47b2282e68f3ce756196fe0cc5
BLAKE2b-256 4237d4b089366c60a6479f24bad2a7f6247d98216483580311b8973e48cdeb2e

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05fc3144f0c1e63bb68994736e7a87023a301549f5a1bc04672cded5a461d964
MD5 7ace61735060cca7ab5799f00eaeffa4
BLAKE2b-256 849298b8149de0e532b95eadfb6cd4338bbb85fb70ae92ae37003d5174b3b0b6

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffa0174ecbb78b6851a214c9c35c4e49bdb3979bf92216b3c5ca985dbf89a143
MD5 62c4aea5a72793504a69fe44ad6ca03a
BLAKE2b-256 f2b26188f3d0a78053fd68f984dbf83e04d942e0cc243dc00791855ee17073cf

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83047fd0cd98cdaea89b7b4e758c82fe450f1b536bdff2065916ca77194ec146
MD5 fc216e31c76a6e41e95a519937d184b5
BLAKE2b-256 67ed2c9a9881fac0de64f5fc43ab7aabc7562f2b86af350a913a497ab97d7acd

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c01f9bad03804af5341693a0d0735ea63aea2d93fdbd6b2b13b1ce084f7c7c56
MD5 77ae538013609c6ff5fc71c1a84d15ba
BLAKE2b-256 838214a2ae9e331615d2889b6681f972b0a931305c82fa9c9dac83b9ea04f882

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6aa7bcb1380b8c82e19119884117a9f821804a8f4f7c9707d8c86ddaa3e2901f
MD5 8b7d73ac08c0b54f2248c1685c326a2e
BLAKE2b-256 7653dcad3d6781ab23941fa4c44257206d4477e7e847e2b17aa958baf5639a47

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f2e3859a37dc252eb39bcfca9f533c8150e52e5f717e8dbf25b11adf93c6d64
MD5 520828c108dee9a224509fd218046843
BLAKE2b-256 0113afed21d5f139f5fd83317b6187ecc54934a8a300892d19baebe5ebcd069f

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5cd46d8ef18ab906d53dc310a40a9dab5b5efa2ad61534038d362c16c393f9c
MD5 77f878c9a78ad4cfb95eda1e86a4aaa5
BLAKE2b-256 abdb67083349d81fd97ae366a6a51d15125268c4a9ed7a649656c56c639a3c4b

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71f92ae07dc0d8a82fe10e2ec9c22a810360429778c0230dc2ca52065bd6dcf7
MD5 f45912fb4bcce48793b25f17dcf83987
BLAKE2b-256 37df1200824bad7deb447e19018bb7e24437c2540b36bccd66747a4979bfb0cb

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 975852741795af0f0ebbbe49a1e55d19f58f7ff1d07cac25bbe53ef52ab53884
MD5 0163367565598c5d432235322de86fb9
BLAKE2b-256 4645e658fbd48fabb4a1925d032eb029d38ea4ba111fd246ad1b0700855aab2a

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b910ced92bbdcd685647d26661a2076197173c6484e61bac79b8461553b581f
MD5 84b9c1e6eaed607956a47e67b89d3ecf
BLAKE2b-256 82c6331bf92d891468a8b6a3968dbb31bdc4f42e730b1f4c7c9972d707bcbdbc

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12ee13130f9a56fd06bf35f81b035ef7ddac6c4cd369fc891371bc938da526d8
MD5 fe9cb8e635c5913e0fbb4e41cdf8799e
BLAKE2b-256 ef1ec820106120d81921ae540f9875184d89d0c520ca1e62347dc0baca144ab2

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 155.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e14ca332e78c6ba1d45b740a8a71aee1bf4becc8c3576dc8551827f753e85dde
MD5 f69eef54cc6923bd36494f1afbe3b61b
BLAKE2b-256 6edf141df10963e73edbbedef621218484da8667644342e2cbd8a486f58ae22e

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 149.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5bc7b4de1ca58ab61a239ae2c1d99fe6b9cb469e27c42a654fe4e44100167fdf
MD5 4bccb61b1d603b821bf85e2f6844b595
BLAKE2b-256 411d67b74101ab0889c5be88973f4a61c241b8f5ea8b298d6743428dfca1f335

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5da8139d2c8c9b19aa4d8a6e7131f37b92b777a2969bbd4f3824291c83b679ee
MD5 20cb8a461be1ca9680675bfe401e457e
BLAKE2b-256 d26bc1e817747c146bbd1d77a2f2e2343b39c37195d26600a1eaf8d9cbc44cd1

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4630e246c40b87cb95a1dd6e242daf3be8ab1fdbaedba90dbfc9060b526ddaee
MD5 eb458f4347ac98827869a73367542de6
BLAKE2b-256 a3b9a15b441a68131795c9c587c9eefd83dd63783a9e99b79697b814a11e55df

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdb4b5829b57952eb25ce2a21851f498dd0a61dd6a8b71b78be26644b7cf8759
MD5 905150cdf2d041357880f57ac6516f37
BLAKE2b-256 0d1a7185537978a3028b796f1f158d679be55f547550674e7ca2a9e9b8707ce2

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3667ad1695b3c76d040ad5cc57935cfd9993cddecafd12f020ea332809c4b0c2
MD5 fc21414a4ecc53fb226a850b4b0d9cd7
BLAKE2b-256 c2d217650994f313415ed970255399db9b68b52c3d9beb0298c31804ea152018

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ee633d6c77b331b85061b55e3ba4b3894ea5fb289f58feda71b73c98e07304c
MD5 707b17a720c917d3b91764b6b33bf331
BLAKE2b-256 d8334593cfaeb3fe664cbb285bc8d32924e4f7543c1fb0812ba8889faeb5bf67

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 155.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2eab1492057fc435faeecac4fc4794959357a782d6aaf4a7090b1a44ff3c5186
MD5 74538e85f61e8e36d3e3c7228fe2ad77
BLAKE2b-256 ac9258631e646ed061171a0d412118f7b46d43432e186419fe5e7dd31e517d09

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 149.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 94e0aca9ff8b2391d38a144e90c1194a4ac9de3005d668fd9000c3141ee0eccf
MD5 ed009e05817c024b67511ec7ac29f25c
BLAKE2b-256 83746496b12b41a01fdbfe903fbaa633a6dbfecdb928f155d54c3c34905830a2

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 808a5e6d1ee0ab96293faa1fdb8d05af82b838b655629e3cf443312c1db48294
MD5 1f3ac3947e093b5a511435453c410886
BLAKE2b-256 716ee8241d979ec57b2f6d60a53145af437e17af62e3ce3c74ed70fb4ebf276f

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 534a5600da2a2ef91d5085a87b90cf7ace237c06f87ab9cc324f9b92ac203a06
MD5 2492e304df35156b278c73eacb5c3018
BLAKE2b-256 58097e8771a80bbccd6678a844de08eab9ac6550a3775d04eac8de962900dde1

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 973d0b5b7a39abce0adcef954b44684160bd8cda564fdfe9e6ec64c59267775d
MD5 ce3a53f25e3dbb6db24ef353937eaaed
BLAKE2b-256 5195640e6fe978893fe3a42d0589eb13a5a8ac8d178b0e3a39c4a29c32086a7b

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d54594191f40748e57e442d738b1d5c26352f7aa3089e7dd3c124018739cca79
MD5 6bb43c08d68997d4867185278a4db230
BLAKE2b-256 6bd548f03151cc34d0c6883d1ca62012575a250c494d01711fd457e9135fa950

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bce16b5fa10dbc050e50017b0cf6de7b3b82f971abfc281151b32fcc6b025186
MD5 42568e357e8fe8d7989a961694de1a79
BLAKE2b-256 b2366f4047dc10df0ab4181162d13d678798d17c0b629f899daa5ac75e25f136

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 155.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f975896fee659501b6f95e8aab304e0539194316639015ade98fa7c2d99e932
MD5 4b63831dcfe9b8e287f30becd3102690
BLAKE2b-256 14d4def8bc4680da9e025eb071012f4cf291dcf5adcc2d6a06cd075fa837304a

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 149.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 41c8658753442e2a80f84f8e5deb367c998356fac256d9336cca29f58555b41f
MD5 4ce92ba27bff8045de8b70dc23823932
BLAKE2b-256 5bc2c8a52bafa8092069d79daa26a2b0611fe5aa9387c2c9c8c13054b5dc741a

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aab66499743b36245521bbcd01f8fe871810e21b63b7d9de718d533b411baa97
MD5 d8a4fedd46ff7d57f9fa69f4da35e6a1
BLAKE2b-256 585c568bf12d968d11aa36efc90d4b6177d68f24b4c0104ab26cba25142ca1ff

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 641ee5f030d7b6fe46df2330542c4d6f2b53ac3729d55f67784aedcc4c45aaeb
MD5 030642e68a9c26fa3be058781e5846b4
BLAKE2b-256 e38d8da65fddbb947feb2ae00bbf01e9ada9b72a3508e474bf6c1686b89618ac

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 307cb646bec6f8c1140a172a38618559821a37388b761826e54bbdc0db351f37
MD5 af0a0213636f114730c9d9716cd9ab95
BLAKE2b-256 38aba0993419e03d18a4bce0901a7e76045e1abc676a9f63107db3ef7649e30e

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3c9e1282a0072dd1f8d8d01b3abb860025f85d83e866022715e81a85135148f
MD5 cd5269e1a8b7f44ce7174a79f634226b
BLAKE2b-256 d7aff991f1970c40104976ab0eea45378ed55351631cdd5b31abc9e763d2f916

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b5c1bf0f5c4026c6c194f6abbb4c795ec36bc9b9a5359213faf57a347e0c74
MD5 2ec71b13163003763ff300d61b5dd8dc
BLAKE2b-256 748242a5c280b0a7b68ab7a2c8b40bd19e0f31a0dbddbca75cdc232879756335

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 213385633097778f9724d81d7f9f0aae1b3f57605f45fe01d893341ac540f3d6
MD5 5338b8127ad46c4f15ffa485582c8bb8
BLAKE2b-256 b6664999097a88941ffa2f39d7c8682a0838ddd78b0b1796ffaf0b943250f1b2

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 149.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d3e67f4c107a2a440a090c5d082a15f589fc9923c793601577be1c39a1e70566
MD5 af645123b44386682b8e0e74d644cbdf
BLAKE2b-256 598faff513e366488ce300052529b52ceec342c1cbaff6f01aa34245a0baf374

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 970fc20b2ca85320f6e384e9d0ff704bbc8935087c7f7dfd9651c8ceb1abe7c4
MD5 08190b78a6406e74f7e0ab4afc193ff5
BLAKE2b-256 fa9146cd9ca2803b2dd062f7255baaeeb42a20736c64cda463c9f1a05eba033a

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7a5a289e3ce18bba59d170c6893a8e7b903075f4c1e8f595e3eaacbcf203dbb
MD5 23f8afbede67cff4d0a5232475f0f665
BLAKE2b-256 ee932e01832039cc00373801271ea277b63ecfd179a0e931092f424fd2849130

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 990d3aaf36ea0e29b038d7048463f07fddc1cf58ff43f7d225d877ff5b318d2d
MD5 805008f227588fc7374c14d496b02abf
BLAKE2b-256 671d31c7997a46b94e6d77806c7027c5d65df49d423116bb6e8e24b7d9715f46

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93cdfaeaef2e05cb8c5224f435bcdf8513cbe74edfc151121fcac906df1ee868
MD5 67dc798da15f8b6a6b47b18ef58904ed
BLAKE2b-256 004729aa4a424afae58e737c5446d257b366849ce26490d8a0b826e4d27897cb

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 155.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e4bdc21260738e56e72bb142bf91fc10826aef72763764b4738a31663093fa45
MD5 ec3fee663a4c94fd9928d78b98a344d2
BLAKE2b-256 57f73d1cb6c7ae9adfe7dfb6605dfa5e4822d9cf543b5b93649ace8385f94d88

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 150.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8f68e29fcc9619100a2e0817622d1fac78b25f909111d7a76afab13d3c271626
MD5 6acf1a5f12511cf9c20ebd3c27405eeb
BLAKE2b-256 8a70299ecdb7279a8624e87f3ca803eee75260f33614d233fffb8ddb78a5f72f

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f3dafe14a736b2659c66ac317d4f50da72dbcd335f0d958ddc2bef1c69dc936
MD5 176ef1961af1a860f7ef5d39819e7f15
BLAKE2b-256 21aaedef8f903fd78a2cc98d121b1cac38f652ccf605c4d4d3dd8e13f60cba56

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b40b9c64b8d8ac7b48479127788decb22dc8eb1d7c85a8d1d54cd39c4a7e4e92
MD5 4625cc6045c4b283cb68e3d2183073dc
BLAKE2b-256 b000133911e16103de8340f2fbe0d8629a2db288613fe76e6737f0b3f950f2f1

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99083f106ae7e0c73a05ed182396227f5d162bdb3eccc4a13f817b7c9e7e815b
MD5 2a0c17adf8119ceda65db6b2cfd3ead2
BLAKE2b-256 ef9bc4e6d3d20fe0949c10a7249b3d381f41512f464d5a8572e3685ded071acf

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b32009ef977480b59fb3b83809a261eb5c8b7c4b10e661948074ba8d0417e6d
MD5 b2906a8847748efc162637d9f1a2a250
BLAKE2b-256 3457c01c72567a2a770fb5989cb58ab4644c42b5c663270e93e9c6c7e2695fec

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e107ff18a0df14ff1b3e651764dbee6f4346da83d2a39320a609a3335941a9fe
MD5 fc29f48ee7c1b972bd680284162e8068
BLAKE2b-256 b5ca97d2119e16abeb1fbea01f05af250f250b038a2d42ea8bfc4ed4d81f1f6c

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: rustyrs-0.5.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 150.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustyrs-0.5.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 30cebe395635a0ee35632cdf987ffb39cb3cd36fb00a10509c95cb325f4d217f
MD5 3a5e2d26afa9bb73b9807c0227b53c17
BLAKE2b-256 15c252c2f39956cc8e681a06ac8a65b8fdb767024b951cdb92ce48c4eac75157

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73a45b4e2618c1b01dad4dfac263257cdb976abf9fa1264bea3a7a80abe03f50
MD5 3fcb3212c4f3b95b9f4484ecb6904f92
BLAKE2b-256 38bf9225016722933787a1d7b6ee7e9ee06978d4cc3b1513aa63774d980256c7

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09786e91fccb930a4a6eb6e174b3a5a66e7c34e109b93575d782b87ddcb504f5
MD5 dada95e6d4fd4552c4530ff23a1065dd
BLAKE2b-256 a91c4ff89a4f763fde3c41015bbef9e7be7d23d7840a43929217155e35e92e93

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d502df890ce8176a87f9f4d71461e288111bd2b6bb99488d1b93d58bea48971
MD5 403e4ef979b91d898b0f029acb5189bf
BLAKE2b-256 0f1f2d87ce29574f40408dd810ab9626edf384d8baf09eef3a7694ca9c2eaa8e

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d6d796c5ecc9b858b79c109b7b2a20c5da88a13f59ae379def51adbe6e845de
MD5 9b92651a78f533d4f8d4ca9f54ac2a4f
BLAKE2b-256 291fe85f97fb29228c454ff5c3f45a788b2c4096ebc58d28423a967ef832904f

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62bd3e9bcbc376e3618ade082b78420fd6aa2c6d87186daaf9864ed89eaeb3f6
MD5 ee66d21c8f8aa963daca4846f114c7e6
BLAKE2b-256 c79aae4d8ff8236d3e132f3a2ff57013f8256bc5d2ac60f47cef32eab7fe7151

See more details on using hashes here.

File details

Details for the file rustyrs-0.5.5-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustyrs-0.5.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20f40f0c27d4adee885ecffd0953647172a4575b423c9949f1c7313a3e09c7e0
MD5 08f2e4d59cd9bc3ec6928b4e632e14bd
BLAKE2b-256 2fce84bebb4f2fcff25157094bec57335a4c2f88f5ffcd97040a3319da5ab202

See more details on using hashes here.

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