Package to communicate with Dynamixel motors.
Project description
Rustypot: a Rust package to communicate with Dynamixel/Feetech motors
Getting started
Rustypot is a communication library for Dynamixel/Feetech motors. It is notably used in the Reachy project. More types of servo can be added in the future.
Feature Overview
- Relies on serialport for serial communication
- Support for dynamixel protocol v1 and v2 (can also use both on the same bus)
- Support for sync read and sync write operations
- Easy support for new type of motors (register definition through macros). Currently support for dynamixel XL320, XL330, XL430, XM430, MX*, Orbita 2D & 3D.
- Pure Rust plus python bindings (using pyo3).
To add new servo, please refer to the Servo documentation.
APIs
It exposes two APIs:
DynamixelProtocolHandler: low-level API. It handles the serial communication and the Dynamixel protocol parsing. It can be used for fine-grained control of the shared bus with other communication.Controller: high-level API for the Dynamixel protocol. Simpler and cleaner API but it takes full ownership of the io (it can still be shared if wrapped with a mutex for instance).
See the examples below for usage.
Examples
use rustypot::{DynamixelProtocolHandler, servo::dynamixel::mx};
use std::time::Duration;
fn main() {
let mut serial_port = serialport::new("/dev/ttyACM0", 1_000_000)
.timeout(Duration::from_millis(10))
.open()
.expect("Failed to open port");
let dph = DynamixelProtocolHandler::v1();
loop {
let pos =
mx::read_present_position(&dph, serial_port.as_mut(), 11).expect("Communication error");
println!("Motor 11 present position: {:?}", pos);
}
}
use rustypot::servo::feetech::sts3215::STS3215Controller;
use std::time::Duration;
fn main() {
let serial_port = serialport::new("/dev/ttyUSB0", 1_000_000)
.timeout(Duration::from_millis(1000))
.open()
.unwrap();
let mut c = STS3215Controller::new()
.with_protocol_v1()
.with_serial_port(serial_port);
let pos = c.read_present_position(&vec![1, 2]).unwrap();
println!("Motors present position: {:?}", pos);
c.write_goal_position(&vec![1, 2], &vec![1000, 2000]).unwrap();
}
Documentation
See https://docs.rs/rustypot for more information on APIs and examples.
See python/README.md for information on how to use the python bindings.
Python bindings
The python bindings are generated using pyo3. They are available on pypi(https://pypi.org/project/rustypot/). You can install them using pip, pix, uv, etc.
To build them locally, you can use maturin.
maturin build --release --features python
or, if you want to install them in your local python environment:
maturin develop --release --features python
See maturin official documentation for more information on how to use it.
Contributing
If you want to contribute to Rustypot, please fork the repository and create a pull request. We welcome any contributions, including bug fixes, new features, and documentation improvements. We especially appreciate support for new servos. If you want to add support for a new servo, please follow the instructions in the Servo documentation.
License
This library is licensed under the Apache License 2.0.
Support
Rustypot is developed and maintained by Pollen-Robotics. They developed open-source hardware and tools for robotics. Visit https://pollen-robotics.com to learn more or join the Discord community if you have any questions or want to share your projects.
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 rustypot-1.0.0.tar.gz.
File metadata
- Download URL: rustypot-1.0.0.tar.gz
- Upload date:
- Size: 39.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c85d65e3ee6b0940054e52bfc1b7f4de5501ff6daee028838155cb3147e590a
|
|
| MD5 |
9fea040f26aa2a966680c1f3d09f3587
|
|
| BLAKE2b-256 |
9fcf42f242c91444010a388810de1b440ede958a23c1fce7053e0ec9d5c9a499
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64bb9a83f412a4bed39aef739f4752cb85c34b7e5ec472c77f046b864f6bb1b5
|
|
| MD5 |
0c50c84495aee643879fb8e5b52f6d47
|
|
| BLAKE2b-256 |
07e28083f2fa285ee74a05dddd1e34ae231e65fcac50ecff5f67926ac713954e
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7df4da84f1e154774ef5adeb64bd25cfa10d8927e2f87dc7e2e08104b473e6a
|
|
| MD5 |
043fb2eafc8d7d24fa30b28721843099
|
|
| BLAKE2b-256 |
fc167dbeb41c863d742620b0f1099e070b66f552f02ee8e1a5bc83c7ddeb97fa
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c4455eb11f87443b7a737c58ca439579628c03b85718ad5fc79d99a6340ec7a
|
|
| MD5 |
06bd5a97279532d25b6dab1afb0dd8ff
|
|
| BLAKE2b-256 |
9b824903a7c7ada8e6a58585d7faea8dda96fc3d43886707b2127fe2a1a665c1
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b62f629b700fcb637b5f1ef6e8508c459a71aae629feb51c9867b9244906ec5
|
|
| MD5 |
c0479761c3d37d37cb57289daf390dce
|
|
| BLAKE2b-256 |
62c381c3e76eb53e1957d7f91e0a2435a2b085007584a5af77d04f32284fdfb9
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 926.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc6e61355028ae1c678f57d8e95c0556eda02659603df6e72a80af986809752c
|
|
| MD5 |
fb350557b8594ab74f8268a4509123fb
|
|
| BLAKE2b-256 |
149ba4d2665e8e187c2c9021e44a253cdc6aea38319dd33a3ac2a0008551adb4
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 898.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31343ee9116fd974d01c46348a40abf33d4f7bf4173d510c7dfa5a2b00b4b4c3
|
|
| MD5 |
eaa3cd4efb68ff1b14897709762730e5
|
|
| BLAKE2b-256 |
b96168cb8545222d0428cc42f1111e78b9b7fc3f1bf4ff5849bf9d948e26511c
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 881.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8255aa7108bf09282f9dfa287d4313c8be57878af8cabff583415612aa239103
|
|
| MD5 |
28593995860886357f679fd8fce51280
|
|
| BLAKE2b-256 |
6781635dc790486063258c51ebb8eb8ff46a074bdbbc9fb4859621716b839fb5
|
File details
Details for the file rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 922.5 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcd13cbf8e41fa98997cb88ed6e119e1825cc371a2ee3201268af9f4b61c2574
|
|
| MD5 |
0deab95ad07502bb8aa7d84183137816
|
|
| BLAKE2b-256 |
34eedfee2045d906ee273d89cb9244fd45b3651d70713d7b5955e0c436cf2180
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1759636f7105203615647668f3e0ca1efd86f0f970c396b165d579a69e46a193
|
|
| MD5 |
73182c5429f26107f8f27d0996800a54
|
|
| BLAKE2b-256 |
f8bdddec7cbae4115e097924c0339a4e24543ebf58b7ab422dc95b5d80e2dad5
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e121649dd6f18732132b0190d339a1896074eeaa7acfd8a396106695d3e15704
|
|
| MD5 |
d3f0908aebd656bba87e31e491a96b0f
|
|
| BLAKE2b-256 |
63273b69bd616c1cbe2284d759714ca53c5956d9f5a6c68e20a2f7ad0f5d86d8
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
418fb686342d7be4f25cafb5a39fcbc31a88136aa97dde6f2d5f5b594e15186d
|
|
| MD5 |
8b30b752c7dfeb9702919d3fbe9043b4
|
|
| BLAKE2b-256 |
e01f54618a415360562002606788f73ca0ae129af272a12882a6301605536601
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03eb33f7203d419c0e22d069b6bbf3e0a6110b7238e47cbaf6c1a2f12876123d
|
|
| MD5 |
3a7b989240d33056c4ff9c6f719943f5
|
|
| BLAKE2b-256 |
a268e46990cba83dc2cfcc7097441c8f37bb9923f811276618e084bb1fe017be
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 926.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93f98855b218f7e5b69613a6f650c20bf6fadabdb703364a1317845eb8ad8e64
|
|
| MD5 |
d2e47c7dc0e4466451f9fd9c076d67fc
|
|
| BLAKE2b-256 |
374f5f78d71b9274b572b70550c897cf94c6f86202ea587f435382d5c9c0e190
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 898.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa7d225b3d56744fccda555d89e2c313c62751cbcea6f0ac521f571f08f718a5
|
|
| MD5 |
b7c2be29aafc0b6f67c0089220ff879e
|
|
| BLAKE2b-256 |
3a72bffd50595d7e5a4e9bde6c5298ff7f515ccf0cc4c04b99a6cf112286f617
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 881.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecbff062b29ad2b4c703e3798c5c84536e9eb005a3efb3b012bef5d59644cd66
|
|
| MD5 |
48c011375a46d2ef31df1011b3fb1b94
|
|
| BLAKE2b-256 |
038d992bd77851051117771effb3144d3f6264020a32890a4253dab72c464bfb
|
File details
Details for the file rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 922.6 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe1180edc42eb64a62f08545a7825bd9442885a31399801aab44b279f6f48b3f
|
|
| MD5 |
4b6e6187665c8b29f3ec0362a75373fc
|
|
| BLAKE2b-256 |
ffa500320f16f31371ac1caad5cef9b954f429beec5b1f26dbefb774e7b9c5e4
|
File details
Details for the file rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dd05fb7a0dccd2ef82e9e4bf441f77294df4951b60cb90a63bb0d2bb97efd2f
|
|
| MD5 |
0aacdba67ecd43c2d0bdcf3ac7117eac
|
|
| BLAKE2b-256 |
1a96a9a7559790cd09e8571e31637531152bd5088b20c7cd1b05433a8990ca73
|
File details
Details for the file rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa9b34df289267d847a40bd88d419a58766e6b09fc3ea757e151fa5dd76769f4
|
|
| MD5 |
382bdee75b4c8b38e20b84fc95cc9437
|
|
| BLAKE2b-256 |
6adeb80bed4538fe27d5022607e7fd71115166ed9c15c77c7842b65ef58aca8b
|
File details
Details for the file rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b702033e77eaf01ccd7e0b98a1b8b36b7463d92e9caca4603ecdf8ec81e51376
|
|
| MD5 |
f9c3131f98e95dbb62cd275049f37fd0
|
|
| BLAKE2b-256 |
63f943aeda05480d809ece4ca92190cd5f3c4433896cb36472c6cc2e93a18a0c
|
File details
Details for the file rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25cd2a5f5b6630d54ff8bd5f2c5a013d38d3204689b01be8198539c7290415b8
|
|
| MD5 |
01ed7419ede5f1ed004990398dff574b
|
|
| BLAKE2b-256 |
7394d2b7469eaae0ea8c53491b36b707d54b9e67604eaf50c099409102eb2da7
|
File details
Details for the file rustypot-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 899.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e37b3aa281096f853868541fefa2e952539c87f39a1af12a526b3523481d7e3
|
|
| MD5 |
013a07e108f83666074c1b712912b710
|
|
| BLAKE2b-256 |
dbc600e4b8d7a34c76635bf549d9ec869e50e34a8ab7000fa311d45b1a09ec5e
|
File details
Details for the file rustypot-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 882.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d81b5319753e3abcfb3eefc556fcd23320816bd992b77839a28ddcd0cc93986f
|
|
| MD5 |
f6234dae62375797dc79a3e6e7d5bd55
|
|
| BLAKE2b-256 |
b05dff2d2e21d5b2229118040d4921bad3474c4f2c4c31ea88045343c88471f3
|
File details
Details for the file rustypot-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8b36bf1ea6990458a2ac7c289601af95b71bde9ccddc22c12a782c0cda06e05
|
|
| MD5 |
e6dfcd19ca73c03065527d24a40512c2
|
|
| BLAKE2b-256 |
58e5b7ca7dc9668c0857abeb130d5387f7adc8ae61370da8caacc002f817b116
|
File details
Details for the file rustypot-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0375ff017763e33d84b329a9838eac3effd1edcdb350d62a217dc7870d276d8d
|
|
| MD5 |
3fab53b1b1fb25776186eccb3f177d63
|
|
| BLAKE2b-256 |
18cf35536d586bd6286d337adfa2185e7df09a654fae3e500a2c8d2a3a1d5c1c
|
File details
Details for the file rustypot-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a58686525cf73f661755fcf6314afa1676ff1831cfd8023f84062d583d6ecfd
|
|
| MD5 |
ad9429b771a643040c18367a6e9cc9c5
|
|
| BLAKE2b-256 |
a08bd75e7b6c8e4ef9ec1a743291053cb3e5d43604952893cb0a2854162f1e5c
|
File details
Details for the file rustypot-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8019391e56e731e304dfc1b1088f54cfd4a6f3cb49152a0e12c1d54fc1015070
|
|
| MD5 |
1f8072e6b18a93a9c1c2e15df4235e3c
|
|
| BLAKE2b-256 |
a5feceec0eca21431d5ac8759ee397193393a6d1b03da6f4f17e82b9ec45f290
|
File details
Details for the file rustypot-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 886.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae7639c4b4532a366e25e0ca2e2d5b89739647469a0591bb0c06ac282d00f20c
|
|
| MD5 |
af91ec132727ad46b8a549a109c34a00
|
|
| BLAKE2b-256 |
d45b9314b74c6497c5656d0fb8591642a35b9cac2273fbeefd6983de4bb08cb2
|
File details
Details for the file rustypot-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 864.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3e668129fc97da741a950f1fdef7726844cd009f62e6589c083eaefdde33d8f
|
|
| MD5 |
a335cdeb6bbdca6d5b1ca8f68ac713a0
|
|
| BLAKE2b-256 |
b9c3e6102f08b77b0ba1b6d6e5682719f8191e7924d31d2e9bdea2ebc1e158af
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 841.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2016f5923f34c7921e18b8eb00997c6596dc69d9ee4d82ec0eae3cd47dd55ca
|
|
| MD5 |
2553bdda1034f3ad7a77da97aed4e993
|
|
| BLAKE2b-256 |
2f004b39821eee52d9aab7886a3a1768549b9f059cba027e46609f974f725922
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-win32.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-win32.whl
- Upload date:
- Size: 645.7 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12feedd76014dc534278971b91adc03ddbfb1c5f9a0ab4f2363cd9973c5fa677
|
|
| MD5 |
4c3994033ba6d83352b14ba287a30f34
|
|
| BLAKE2b-256 |
e955711171722585ef69140a9a8e6462122e94640bf7d4d436237e8f74d005a2
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec13196f5a839e25291674f0bcf143e14f3272dc74c865050539b85e12e1f2b9
|
|
| MD5 |
a0010f28fc9ff4df03570252b0b57179
|
|
| BLAKE2b-256 |
917560c5eefc716875c2066fb3b025110cd8aee0f7d6df7290f889f6b4f85d83
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2f0e0d569cfe9577909acb0cda05acb8f0dcc099021382c455896e4ca4cf173
|
|
| MD5 |
d91217964525fddd56a4b1ab7d15fbcc
|
|
| BLAKE2b-256 |
e59a16088de2c132f0347d7feca39f06357ebcbe150fd0f2643727105a0d9c3e
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d321e0ac0e33e7ea2e035fb193bb43c51a4fdb760b8dfe3d3c114740710d6d1d
|
|
| MD5 |
bcb6d7ebde88a3b8444aed8df1343b43
|
|
| BLAKE2b-256 |
2cce0f138b6effece36923af6877a52c67d2bb23a1d7f1b9aeff75247ed86621
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dedba98ac3515ce41f92155be4fc717f02991570bc3534a727fce6beaca7020d
|
|
| MD5 |
e6f3ef8bc075a230d631d2dcc7fea680
|
|
| BLAKE2b-256 |
2b056a99891d71211fbff96e3208a8a6aba4e927b5543a9f5b68a04c32eb2916
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 930.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2694d824c6fd36bf43655bd91d64977263c8891c2b0a8851f989c676f8a0a296
|
|
| MD5 |
df917a0f40e05a957f7ff40275042446
|
|
| BLAKE2b-256 |
0c66d2915c15b53d93e8d1a95132a87a55d2e6bddabc22a4f2ad03a3f1ea2c70
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 893.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09bf7a2a9887226a269ce4b74e5f13b646d5575d43a96798842c45c94453ad74
|
|
| MD5 |
d0e05a85b5826243c8256e0a781488fd
|
|
| BLAKE2b-256 |
0b61144a2e5773a43f6f79a92e34f3e38ba9e0312e7ef9f9dcc861e227af1fb9
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 882.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
460aea7a5494371db4a56c18805d3dcb044944c5e37247cae792cb3b575dda5a
|
|
| MD5 |
544afc6840186b0660760da75536a435
|
|
| BLAKE2b-256 |
883d3fec0a3b2d6debc3e9c539c9ec9997158fdb7910418403e42bc065484b73
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 895.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
226cb7ac62bc63cbabdc5de7044dccafbd21ef7fe6149c112a971cbaa424aff2
|
|
| MD5 |
6814b9c256477a2e1eeb872e0266eb70
|
|
| BLAKE2b-256 |
852f67bc48bd412f481d8b1b07231e1fb61731a122f3b36006a8f4000ec69c74
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 840.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99778796cb8ecd36af741773a694fb2478c5b19a2b81f1ab09c59f03c1536a21
|
|
| MD5 |
c3f7bdb16961f0780c7665458cf52fec
|
|
| BLAKE2b-256 |
d6f5f069ca207ed43df93b3a94066d7c354f596d557a842699d2d1a57ddf713c
|
File details
Details for the file rustypot-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 885.5 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a03b8fa6c153b2ae84287e986a9881a88c3f95b94ee486be30056644ef83f70
|
|
| MD5 |
c1ef689ca3e6eb1d78dc8f0275217940
|
|
| BLAKE2b-256 |
4d91c4ee19b52e1f2cf946b34a23c7bbd627f3455a4e8d61656616d284dcc122
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 841.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d7d1a9f9caf77561e48157fc2bdf4b453ff77bee9c97336f3a7263d668175cc
|
|
| MD5 |
97e85dc11f087675360d4cb68df453e2
|
|
| BLAKE2b-256 |
2f2447756de572bb4ff3dce935444b0cd49c73331eebb2434e121e1178cd7ccf
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-win32.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-win32.whl
- Upload date:
- Size: 645.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fbf85e17b42e3a10bcf06b1c253bac8de53d3827dc9b77fbbeccaedcd75fd2f
|
|
| MD5 |
c520aeb3b83e3e15d45abf05bf013cbc
|
|
| BLAKE2b-256 |
2d3d829bbafa335ec2c04e3781c68c8b401b83229fc5afec47f8aaca41d3aaea
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66bd63675a3acd4a7d5efc338a1920d1313de3d421a33e71069d686ceb3887dd
|
|
| MD5 |
709af93e6d2dca2e21d8fbcfd8f1c34b
|
|
| BLAKE2b-256 |
e00d2959af5a8b1a03ad1fe4dc0bb9cfd9ad20da9763c2d05f975ee5894161cb
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a8ae6e7691b1048a5d11e504066b29052adb2d4d3d107bfb345ccd89c24334f
|
|
| MD5 |
58dba2604ab096e2a6d42f4edf61c1da
|
|
| BLAKE2b-256 |
4ce173d1c01509a2c4e469e164b3fc4a70a92d115ffc6be3ea4887c70b4c5a28
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c46a8194749ce41cc805e7599c2d92e193a334da1d0de3c02752530163eb845
|
|
| MD5 |
1ac6d39e94e31ededdb196b3b11b663b
|
|
| BLAKE2b-256 |
dcb76b5d26b9e71cb1a9873078db259d7cb94e399e4cf339e0afffee7a21d7ef
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf542d390be26caa7da1dd46440079242aab56583c5d80f5074b2588f83493b1
|
|
| MD5 |
f9bdf5fce4cd25c592b004a26875fd6f
|
|
| BLAKE2b-256 |
3210f456016204ef2cd8807e8ffdd9ac6560d3bf1054e4ceae7eb343770261f7
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 930.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d7ac2dd1554733ce2f78a47378ad38fead186bd00a42773456424afac60de94
|
|
| MD5 |
1502eced404bc836df6ac76e65d308b7
|
|
| BLAKE2b-256 |
ed98d86c0d1ecf5e6533beb2e085624babbe73ec32f64262db3c73b820ff429f
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 893.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e79a1f77c412103050caa7f8f3759c75794ef96a5d2e7a662fd207628c076a04
|
|
| MD5 |
86a9c36c39586d143f90e478bf0cec68
|
|
| BLAKE2b-256 |
1a58308130dc685119a40a9dfa8b3f6adc2c98f2f57cb0231512b004b02af5eb
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 883.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdc9233413671085e8491c576cb1bfd04c16c4252f76e38e379bec5bc227a8c0
|
|
| MD5 |
98e2c64ed277ae0809f7de101ab102cc
|
|
| BLAKE2b-256 |
91a63418e9a23893c5102255c5a8c3ad80261c10b498472797dcbd09d9c7dd26
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 894.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b8335f353eced777aec8002c5c812ec1c2fcc1a8468494cd53fef74b3134fca
|
|
| MD5 |
b0f93d19fb5c942085aed3bc5240d2f8
|
|
| BLAKE2b-256 |
8b99cd547a7a0db09f5d0f6c4505ee219f1c2d60fa170978cd72355530259a5c
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 840.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddbae11619dee635b2f9367387c95a45c61c3cff72c0811857f353a739fbf62f
|
|
| MD5 |
3960531c50455f3054c45222c3641b1f
|
|
| BLAKE2b-256 |
b285b83f7084fe5414e50a51281a7ebbc32c17d592f043d8b1e7b1b505ed32c0
|
File details
Details for the file rustypot-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 885.7 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d4302f7fd84b605255b6bb990c5344d33b0daf26972c4aa2a1635fcad58aac4
|
|
| MD5 |
73960e4c27dfcbd1ae5b0765da3e9bb5
|
|
| BLAKE2b-256 |
ae64e010286c1e8eb02b40725c954f6dfbd940dea627fd409b8502251aceb8b9
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 817.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22646561f7d773859937be8b5f0a16b3c2773b53aa1c84c60c7c31bfb96fe3b1
|
|
| MD5 |
ffdafa0e2daf824bb42b25de525c6fd2
|
|
| BLAKE2b-256 |
03869b1830723dff5525c7ce1d4b5a36f414382245b3ee8b49dde70cb02414d3
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-win32.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-win32.whl
- Upload date:
- Size: 645.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7136b97d95c109e50647e3f8f2599efdc85dcf401890dcc1ea97ea297f43848
|
|
| MD5 |
a3e26b3d602ca727823a92558003e2b6
|
|
| BLAKE2b-256 |
d706617986c8c402e75cd924efeb8b119988c461b117f4edb598b9ff45e68f97
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dc5f241f0d0aefb762453b76a581b58026d20d6db5720d0a77dcaa6f7efaed2
|
|
| MD5 |
0f4d632253b368c2fa17e580e345ee17
|
|
| BLAKE2b-256 |
46e61a5638c222beece3545254b53196e51e0c2550577c64b6b8fbfe0134c774
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be26f615597f8fa9445f5eb21d1e0343d82b694eb55171f4902815aef01e5de7
|
|
| MD5 |
a5cbe204d9aeccc1a783783956afc274
|
|
| BLAKE2b-256 |
c31b65d72b578d75427bcc67ac424b7fd3225ed94f4672d3fbcab297dae00be5
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9af157cdce3a50b343c4a8efffc537fdf46977c41bb9d87981b5968a9b8999d0
|
|
| MD5 |
e00b2eb61f350a2ca165477c7d7d3a20
|
|
| BLAKE2b-256 |
eb1c1b21defd2b378db699c530d3d88892f997705fa0228038d7135705cf6bc3
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1440765052bb846a0c190a7773450df75f85fc8f38b9a0f61c3f0fe124bbf330
|
|
| MD5 |
5c39912d651686d4bc7fee96acbdbd42
|
|
| BLAKE2b-256 |
8367d489901e51741344b3e3f861e3b7f2e913f1dcb73d2bef25ef9ccc2d195e
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 922.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae88db13302e019bec199c1acd0d4f67b977ca15fef86cb5bacd9db1ff2987e0
|
|
| MD5 |
229df6714da43dfc40ee4cfa13656da9
|
|
| BLAKE2b-256 |
c9e5feea8f367368e53fa19b2908ea462c72deacf25120552e92d13b92488264
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 892.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cf9ad08fabd22a4e370fdba5186ccd852d3e7e06d62e137393450d7ce395050
|
|
| MD5 |
644f169ec4aa25818cd5f2cdef62ec0b
|
|
| BLAKE2b-256 |
6d7f32a7f5feafae0790690ef318f14ef35e5b99120c3a5f390c6cd416152457
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 876.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
411f1892a1cecb2983fc15f7ae05d5a086f5ee3d0c18a2a91cb532c2c022e8ad
|
|
| MD5 |
86ed4859d3c2ade8e5c41caa449b5e3a
|
|
| BLAKE2b-256 |
13a79b97484e7c76bfa4a7a9c712e6e6fac087a23dceb98f46ef658feddc897d
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 898.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ad111237ad5e75622619eeae2225d257a065607b630cb7eec82812764290804
|
|
| MD5 |
18d2dcb5813433434ca89d28e79baf5a
|
|
| BLAKE2b-256 |
d3dcd43e35dd994c0079601724eeb47c9f8c5b61c6c4a87d5eab7eb7f1cfe2e3
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 833.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
074e7643f8df48ebee0c44c770c5f8384b1652193cb33b07b3109c249dcc2773
|
|
| MD5 |
3369858e6c72bf2e5161dba48cb8d26a
|
|
| BLAKE2b-256 |
75ac6d13c369c61d6507a25aef8be1421c9c5633c9de5624e103f51529ceac0c
|
File details
Details for the file rustypot-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 889.3 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbc2708c022000cc9634100729f1d46bd1ac188f3253b8458ad1ec75393ffb0d
|
|
| MD5 |
75c114f8ee3b3bd60e8ad94a359161df
|
|
| BLAKE2b-256 |
9a0765a95295fa1a377675379d4398a6a7a7e9731aec52f2e3857b5ebb3fcbfe
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 817.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c852816f824cf0773dc3e4f9405949362f13469fe190110b8e9438e44a098152
|
|
| MD5 |
0222f444cc0a8c19d9744fcf57b91fd2
|
|
| BLAKE2b-256 |
7d8fcac0dcf7b9660321fadc133bf1ecc248315310eeef5e6dfccb8f48035804
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-win32.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-win32.whl
- Upload date:
- Size: 646.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9b9d472f98ae43b496266905a4ed2301f27294fd4616c9bb2624e8de607ce61
|
|
| MD5 |
12fabc8a9ddd13f1a04b2d135bf94304
|
|
| BLAKE2b-256 |
69acca54c7ff5f75cc05a1941447c0b5aab9d0aa00949acaaf2af92aa39549c6
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b097217030f80f708c72e18b48333bd4a5a4e6a9a454cb960baaf6a0121d8f4b
|
|
| MD5 |
bc8fc8cc81a2c388dafde8eb221a44df
|
|
| BLAKE2b-256 |
38058a578bd822132e1317c2dda5364b255ec543276cb1c4b24e06bb67ab1dae
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
860f59fc6cec842a9820537b7181bfd0d2207946dd7dd3dff101422626541cf5
|
|
| MD5 |
e1df1590fc0ba94b8d13be2253f6fd45
|
|
| BLAKE2b-256 |
dd524249c7f54c9302ecf67b40dc2132cd7a68057dfaeb4ace945a10e40eb9e9
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bde6a3e17985e6bad8059d086cb1b52e0198f640cf001acf5112dace5e259277
|
|
| MD5 |
9ab7d0c62cfd53256cde4363ae207504
|
|
| BLAKE2b-256 |
586c0ef8840119d425d2d31711ffb42805e6617d9956e18ac77c4f9b36be44f6
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0dfa1091fec391da1501e77d4b0b9c25a8c6d80f8b6ad067e1186ab76e8b7c1
|
|
| MD5 |
e95e4c8cfd4fdb007ac949686458d2a7
|
|
| BLAKE2b-256 |
3f49891788e7e00f1d75df4941eb74815fd8645998ef84b009748100cf0151b0
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 922.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6101e3bd4c4512ced162abc5e2d91f7135cb4cb40236a9d3c60b731d24bdd558
|
|
| MD5 |
c2444a277bf65549add923b25d3bdd61
|
|
| BLAKE2b-256 |
608e16ade23440f7dedeffd8062ee880c482a286a7ba84c9bbbc761145e717c2
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 892.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31ade1ac845fd8eb41fe7cb7300e224f432d674a8a5a1c0b9456910fb4025b18
|
|
| MD5 |
3f5f6d44f45e321c47014507b56cf137
|
|
| BLAKE2b-256 |
29bdbf0e6374d2f6e95b779df3255c12dfdf16b4dcd79813b85ccaa001d7deb7
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 876.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21f5ccd9a7f8ad9cdb985b38a4dbb6d546cdf25cbc9233d9091a345ceaf7c1bb
|
|
| MD5 |
27afb8ce4b21949e1c6b304e44b59451
|
|
| BLAKE2b-256 |
d515769362f03600546a94dbe52f1386ee17986e71b00efa6217f77f508b916e
|
File details
Details for the file rustypot-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 897.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82fff6e50bc5884ab13f36c1fa29a4cd8514fce4b6646fd00f13bb9a98fbb5a4
|
|
| MD5 |
8c1af4e63435c0a4f261a2828d8c79e2
|
|
| BLAKE2b-256 |
b0671fc2f3889e9691c7eb651a6678552b0d53a1aafaf88fca0ecc226aac438a
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 818.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e541eb6cd3a1f959b9693a72927c369bae3e9aac07b247ee7b729087de59d0c
|
|
| MD5 |
b424bf44de63e0eb04cfe024c707148a
|
|
| BLAKE2b-256 |
426932404fbee9ac68943d453ca40f47defbceb53747821f66c43359ba53fb0b
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-win32.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-win32.whl
- Upload date:
- Size: 646.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9243d42e8445a8f8906cf44aa92cb37e326831602fa4ad737b9e01eba6cfa88
|
|
| MD5 |
98727dfe265cd016caea5d95f191771f
|
|
| BLAKE2b-256 |
2a4dde9646450095e370edfdacc087d9b66c8ef6e1e31192fb1799296d232c64
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb199132dc398ca498deabd288f69e2ec1f36b70eb7deeb86853310b84137d73
|
|
| MD5 |
599c78e004cef92e9dd487b07ea946f9
|
|
| BLAKE2b-256 |
c792c9636bf3bf2891098610434ea70613a12af37ef956737375cb256d40effd
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42a810d0d725f8843954cef1865eebb475617b1602d65ec9154f464c83ff1c65
|
|
| MD5 |
433b1b367feae93740edf058650495a0
|
|
| BLAKE2b-256 |
6438a3fdfec87e52c97090e60a263b2e3bb79031125e0f5cf01f7a53c4dd2f7c
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0496afc964ce4046b4d885bb58e7bdbcaa996abc11dca6cc9d954f5d2cb6cabf
|
|
| MD5 |
738ea8efdeb11d4f3cda370f874564b3
|
|
| BLAKE2b-256 |
b8c22950b9cadb858cc3d6f1b236faa84f982905a78c86736868257b95d6f3f7
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c02990f58c1faf5217745512cdd10c2c1cdcf73b5597d8a8885a42ddb80ef689
|
|
| MD5 |
e4a607a7dd985d71f6be95d198093339
|
|
| BLAKE2b-256 |
9c289f98940a193267e73b4c0a6887fdc39419de147b68c49bbeb270c7110d55
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 924.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f4fd293cd922577dadfdecc9ac3e3856f856afe0913bd50b5ef8c5136ae3541
|
|
| MD5 |
2da3fa9440a1335e172598816b9535bb
|
|
| BLAKE2b-256 |
402f165ed70c72afb7aab14f7485694b87a2dec0b3aa93584224e800f3229acf
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 893.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56894f590aa1d68b259c97388e0ef08723782a1f05e97e346afb5a487f7719c5
|
|
| MD5 |
a16d436ed5712b7f0b8520f45d45c416
|
|
| BLAKE2b-256 |
6ad0404f7b3960c08736d17559c4bbcb76f6ae0148c2df90ddb68e8f622989a4
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 878.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1518aa0122ad2f78ea9cf0ad64d18d26a057793c263bb1bbd44af6c5cba75ed4
|
|
| MD5 |
a9d1bd9c91fcc89524e2f53a11ed4e46
|
|
| BLAKE2b-256 |
889875a2ca37e54d5a108b91883ff41f1dcccd04d80d70ac4a8a489c2e126fcd
|
File details
Details for the file rustypot-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 899.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24e152d2e8cbd2ac25a401025f2caaa9ecd83e61ee7ab2fbe17886ae0b41e6ba
|
|
| MD5 |
54e49532d7d2d34e5034b23abec01445
|
|
| BLAKE2b-256 |
973b2702abdad9103d96630c6fbc2e92f1b858354fe0b873f6cd649741526a1a
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 818.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb7e32615bac50d89f3df208724056ee1b8b85d420147c456d33616ffc783852
|
|
| MD5 |
7165f4afdb79b051647b62a1f48fe8d3
|
|
| BLAKE2b-256 |
104fd855b4c8eb8a037d8649fd665e79ea1ef6bace6aa39d8abad68a6f02ee65
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-win32.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-win32.whl
- Upload date:
- Size: 646.4 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe45d743f0656e58f93892227c569cb0c0cb120f187a000bbba72ecda63e04ca
|
|
| MD5 |
0e9d5e38554d9fcec7d25a147a7e67fd
|
|
| BLAKE2b-256 |
bc06c872f30787368bc91052799d357406666c750211d43ece9979448957c9e4
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d274eb859270c9d321c17e7eb4b4a5114b929d1a9dd7f5a184ecbe0df8e0dcdf
|
|
| MD5 |
71bdb73076bce5b55c711864fbc18c31
|
|
| BLAKE2b-256 |
61054db26801491589518cfb6cbcb9f6a23095673f2ff974c393b0d8848bcd79
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47223e4dd4d5ede97b2b143760b607931b1c5a88464854c8d7d4dd8e0dada46a
|
|
| MD5 |
aae11c82a99e9e1f949d97097ddf1d0b
|
|
| BLAKE2b-256 |
1b647d0077c8ae9ca778987301a23c30d706fcc2b01a02d97f44f8df4dd238bc
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ade19132a23274ce891f26533287327a79bf29bb78845b49d5cf2f794ece9c16
|
|
| MD5 |
b5505396336325d510709c4569f94199
|
|
| BLAKE2b-256 |
59c97ea1b5b2913af59851a81c000b1b4695190373ef9ecb58614405e6cbb750
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04ce02ad0f94791f97bb83fc3f7fd622e366768d6c139217863a35a550d47b02
|
|
| MD5 |
ae9ae4d00c2620d1b215dd4adb4f479b
|
|
| BLAKE2b-256 |
59ce437e3bb8cf7e5ac5aa46a24e3b10882ceb00679748439499d9f165e731ee
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 924.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e9b44dd03901f153e7cae2b55008de4c8d507b1c2f45bef1103cb7dcf536cbb
|
|
| MD5 |
7cc94ba5e2e15e51c29d9ca83174d1e0
|
|
| BLAKE2b-256 |
b090e2afd30084d65ac6a828291652f7b84a7e05676e8406194e00c4c5b0a143
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 893.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acee507a2e1e78d65912cd3533c06e07ee9d4fa03e299cab480d5c64cb8c7935
|
|
| MD5 |
eaf5e09a5a48ec08ba32c97496dd04f7
|
|
| BLAKE2b-256 |
ff9caf83747a4004919df95d2e3791c92f1c9cce8596ef2637ced7203b10f152
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 879.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39a018225cf6fc147a6d5afd409cd61b9673f156e2855e30841c9df7407cf7bb
|
|
| MD5 |
527e685faeb4ee9828a068867439a08b
|
|
| BLAKE2b-256 |
89efb6f4053772c5dbac39b5e6e2aa491de9849efca0b9db37d64527070833c8
|
File details
Details for the file rustypot-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustypot-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 898.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb8bae98b503e2dafb3bf00cda50ddf719a94f0cb7d6c1db3d6c134c1672df09
|
|
| MD5 |
2a34bc2cb1110d44ec222071599c8b6b
|
|
| BLAKE2b-256 |
651f2827f0111cb69bf6268839de58264503da1691d8f2686c8fa5ee303d2cc3
|