Python bindings for Dust DDS
Project description
Python bindings for Dust DDS.
Dust DDS is a native Rust implementation of the OMG Data Distribution Services (DDS) and Real-time Publisher-Subscriber (RTPS) developed by S2E Software Systems.
These bindings are a feature complete thin wrapper of the original Dust DDS implementation.
A brief introduction to DDS
DDS is a middleware protocol and API standard designed for data-centric connectivity. At its core, DDS aims to facilitate the seamless sharing of pertinent data precisely where and when it's needed, even across publishers and subscribers operating asynchronously in time. With DDS, applications can exchange information through the reading and writing of data-objects identified by user-defined names (Topics) and keys. One of its defining features is the robust control it offers over Quality-of-Service (QoS) parameters, encompassing reliability, bandwidth, delivery deadlines, and resource allocations.
The DDS standard "defines both the Application Interfaces (APIs) and the Communication Semantics (behavior and quality of service) that enable the efficient delivery of information from information producers to matching consumer". Complementing this standard is the DDSI-RTPS specification, which defines an interoperability wire protocol for DDS. Its primary aim is to ensure that applications based on different vendors' implementations of DDS can interoperate. The implementation of Dust DDS primarily centers around the DDS and DDSI-RTPS standards.
Example
A basic example on how to use Dust DDS:
from dataclasses import dataclass
import dust_dds
@dataclass
class MyDataType:
data: bytes
class MyReaderListener:
def on_data_available(reader):
received_data = reader.read(max_samples = 1)
print(f"On data available, data: {received_data[0].get_data()}")
participant_factory = dust_dds.DomainParticipantFactory.get_instance()
participant = participant_factory.create_participant(domain_id = 100)
topic = participant.create_topic(topic_name = "TestTopic", type_ = MyDataType)
publisher = participant.create_publisher()
data_writer = publisher.create_datawriter(topic)
subscriber = participant.create_subscriber()
data_reader = subscriber.create_datareader(topic, a_listener = MyReaderListener, mask=[dust_dds.StatusKind.DataAvailable] )
# Wait for discovery
ws = dust_dds.WaitSet()
cond = data_writer.get_statuscondition()
cond.set_enabled_statuses([dust_dds.StatusKind.PublicationMatched])
ws.attach_condition(dust_dds.Condition.StatusCondition(cond))
data = MyDataType(bytes([0,1,2,3,4]))
data_writer.write(data)
# Wait for data to be received
ws_data_available = dust_dds.WaitSet()
cond = data_reader.get_statuscondition()
cond.set_enabled_statuses([dust_dds.StatusKind.DataAvailable])
ws_data_available.attach_condition(dust_dds.Condition.StatusCondition(cond))
ws_data_available.wait(dust_dds.Duration(sec=2, nanosec=0))
received_data = data_reader.read(max_samples = 1)
print(f"Received data {received_data[0].get_data()}")
DDS REST API
If you want to interact with your DDS data using a REST API you can use our Nebula DDS WebLink software. Nebula DDS WebLink provides a server implementing the Object Management Group (OMG) Web-Enabled DDS v1.0 standard.
Shapes demo
DDS interoperability is typically tested using a shapes demo. The Dust DDS Shapes Demo is available on our repository.
Release schedule
Dust DDS doesn't follow a fixed release schedule but we will make releases as new features are implemented.
License
This project is licensed under the Apache License Version 2.0.
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
File details
Details for the file dust_dds-0.10.1.tar.gz
.
File metadata
- Download URL: dust_dds-0.10.1.tar.gz
- Upload date:
- Size: 330.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 250461f426934157f7a403f4ce5f6ecbca9113b2c93bd26382fb72c939291e12 |
|
MD5 | a563b9564aa5dcf3116a3778a48914b7 |
|
BLAKE2b-256 | 5d6b93fc626b6518ad223e60e79590fb0eaf1417354c2b58414c1ee5d8fecae2 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed16bc6b929f2c15f3e873a50b31fcdb53dbfa2470c455328a01f2d4941f147b |
|
MD5 | d01e5863656623ef9c4fa7f3aca2ca65 |
|
BLAKE2b-256 | fa2e12eef07c849f04ffef55992b1467ac681cfd4cf488fff6d4cd373f1e3f16 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6234f122b809e2ebcd2f6d8186e07cb3329579eda9999fcdf5d74ec57aaf7777 |
|
MD5 | 8643399742cf7f96ba6ab4866e41f08d |
|
BLAKE2b-256 | a74eea33975bb2c1d889f59139fe95246ff6e6fa41f59e7bfeecc39ce0741340 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd0bc11a53e942b5491903a91766135a38f9d4d710d8d5e82688c271e2f0c803 |
|
MD5 | 6c2db82ec427672ea7149188936e0a20 |
|
BLAKE2b-256 | 7bc521c36e5302b664631c8cbd013826b8949404cb649898f199dfef1bc52168 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58f395786b921814556c5f5ff73f617d3db9b4af0f8c6d8be431ce4aeff6ea3d |
|
MD5 | c290b068ea0e7284c257ffcc9e3987a9 |
|
BLAKE2b-256 | 8667e596341f7ac936de96efeb1b85d93e3acc7db6341bcb0c322738081b8c25 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c94b80b89048e6dfb465f898b598ead1d389954ef87114374eb0a8f4ba36b5a0 |
|
MD5 | 010d215a92acc8823bc2872ade5f6f3b |
|
BLAKE2b-256 | 751b650897da3101fdcc52eff06e5c94fb74a3e06cf6330b5445ce89f5a63817 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e9898ab39f0c95460bdd07457bc2a0595d025411c436bceb2f27d0ad0971655 |
|
MD5 | 317bae4ef760a11d7594e97509d173ab |
|
BLAKE2b-256 | 647dcaf914a0c622e644055531ffc1a6cdb01d58b02c8848e8b2f5d876f3c69b |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e6cbe1d57bb00855e104c914ba2a7de05cb61407c8a2715767e7f9557281218 |
|
MD5 | 8fc9e6de7d51810ec16f2baf83f359af |
|
BLAKE2b-256 | acd3c0791fbde846dbfedbb437fa1dc563990493c6af0dd49cdeadec1042bd58 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b86ca0644bf0baf2a022048d77d29d435d853a4ced4a1b1af2558b58e2cab537 |
|
MD5 | 4d2d1bfe329a838be907206a56821f49 |
|
BLAKE2b-256 | 530f80d3a11d84fb8085423df44f53761e637c52b2fab973e35ed5a2dc2c4483 |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb3e73398081375b60fabe9a754cb633e5d49849bd33ad7953ff9a7d87094163 |
|
MD5 | 66e41ba97659185d010fb193d06f2b17 |
|
BLAKE2b-256 | 69d0450303877cd712e1689e724064c2e5ae1e29df27f47354bb092ab72ec44a |
File details
Details for the file dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31aa225f5b6bbbb30ff094366e57e1fecb770234f3bb9abfa298ff0acba07bca |
|
MD5 | af39e46dba069c8b8e24b11df2347796 |
|
BLAKE2b-256 | 70f3b0693918f02511731c3f65d2af34ef0f44ab2d58879504cba1187ec02fd8 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32e7ddb13f867da9036ed4ed9b7a34519529d436df9f57be6e33c116a9f74c6c |
|
MD5 | 85aea94cb0129572fea88444c959e6d5 |
|
BLAKE2b-256 | 68200ff05ca38173c79831a31caa1f84365813c1b9ff6990804810774c7f45cd |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30481f090f7e28d1d127654828aadb77268c14f42fae243f5b00941523807afd |
|
MD5 | 9af890f6aa15fa415a54ecc57488234e |
|
BLAKE2b-256 | 8efdfa9f5a3e23b0659efa1958f49af125ed50f46c2db9148d83e59ad574eb49 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ddaccfc68a86b73463a8f4bca94e84326968212f6ac628e5ffcbd7d004272b5 |
|
MD5 | a119b45d32e66f3592cdee4b5d28c64b |
|
BLAKE2b-256 | 9d7ec3b50257f3c28aa05528af3ba112993866a814c2af78f7062c3e934018dc |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ece1b9ec1eee3d13812fd6692963d9a9e13061823f9095c17a0c21388e41387 |
|
MD5 | e008da4239f42fdb7543b13108db0cc5 |
|
BLAKE2b-256 | d77c5735ad706ed6a1dd77a258ed892e3c45652d68df2a10da0f9e8b02d3fb59 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db70b640d209f9d8d3ada73ab99dc2b8ffe2da09fc242596ef2fed19e53a6cd5 |
|
MD5 | 16aff3b25abf0e23465c5e305e34a915 |
|
BLAKE2b-256 | 8f1727d996b7e59b530f1bc55ec9315a52d3f22885ebaada7c185b339ab30b99 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe785044e2e4a9105e5dc252cad26a9f22c1ce8f556e841bb60402b5750fdcc7 |
|
MD5 | 103c3f6d2e9c0ae1862c560192ecf592 |
|
BLAKE2b-256 | a5d7e7124b3ba4aac01282661c00fdddcc94eac4cb2319e7f71ea587b8c7cb9a |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec4902a4dac8e42ee5947ab9ef87c47ccd77ccf6f0458f37491426fdc2348e7c |
|
MD5 | a7d5f9b18bbed8f5b90433db4f0d24b8 |
|
BLAKE2b-256 | 28bce2cb404fa618d11f50ab3ad5dfa1c5898f82d7834e3b292130931e0ea0a1 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d09548afe31efffac2f88de6a8a71e893741023397a203fd874d735d3cc25c8 |
|
MD5 | 539f69f22e04dde801384be5eff7d46f |
|
BLAKE2b-256 | d5717563662d4ca8bda6da46ed79aef5801d74da0b446554c8ffc4e3e0bbb724 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15129afb250181252eade7cbbbe4459407892372da59ea7e571e9f68d3759bee |
|
MD5 | 244e99684be1bc1e4a5c1d63bfb7af22 |
|
BLAKE2b-256 | a2fb3351c518c7037052e4dd2bc4498ca1bb48d7cbaceb1ebeaa8ed017c459f2 |
File details
Details for the file dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf42e3dbadc4edb67f4a37ad7de216ca1ff8c14ba59a2fee8f6d0e1a9a3cca35 |
|
MD5 | 7497569f3d510a27afc8689ed903c3f8 |
|
BLAKE2b-256 | 9f619ec03d9c5d3bf428e37cf9d00bdea70e51c81137823ea0bd3cbeeca8219f |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baadb3bd3e68b4ad51310c8d46e506375825614a2eab4918fef719a0ceac300f |
|
MD5 | c95bf0f8c7109630f33a6cfe06f8cf36 |
|
BLAKE2b-256 | 54621dfc16f58213e0254eb4491499b50ef1a3edb873dae477c25967df273119 |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00446d22bfa373d5cc6f4ac43151d9f99b0497e78a3ae920d968bb6f642d1c3d |
|
MD5 | 13f3dd0b87fdf50d96572b2329f4df75 |
|
BLAKE2b-256 | 80c3528fd34627a9c830e7f6bf3642c3fd12286c428347cfd350811b3b8be77c |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c95ca5a21987f22f3df7a515aa0e899cd4f30748ad3036454a09c16f46f918a8 |
|
MD5 | 2deb0293b2f068e281b311f2d20e6871 |
|
BLAKE2b-256 | 5c7d1fe232d2dacdbea948472932f9803d5982cf0e12c09e223c3e8ec9bf87b9 |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97d99c22843ee84c009e9f64eb74d5b8436a806b1c7330753b0c0f4793df07bf |
|
MD5 | 0d7e51a1eeebfbb42ce3c1445de8d53f |
|
BLAKE2b-256 | b895ed6a3bb81d9f2f4ab96131a084ad9d6c931abe302f0bca46661754a5193a |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7188bea690e12eca25e10639a205d1467c78481775e8b34122d632d5f23ef1d9 |
|
MD5 | f3664455901206f2f0c4e429013d6595 |
|
BLAKE2b-256 | d5e5d2ba183c95b1785cff55164afacf5c192d6760086a6007596df9692cf390 |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf6b2ff9f6362c524fcc96dd054d2a77405fab57732665664246e51147052c18 |
|
MD5 | 5a56ce457d8c18a9a85c2a29f765966e |
|
BLAKE2b-256 | b1c2bc2d58e748e1bc1eb8e60a7467fd234c5716ad1e5209dd04f35aad646a23 |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 047c32ad719ed832a40a87290e7ebed818d9cb0b7c6fb18d2534425a12c969d7 |
|
MD5 | d3774d9545670ab631d8be32914be330 |
|
BLAKE2b-256 | ad1dc5a578f2d76a82f853151d071854760eaff34a5ac43770b1ccadb76371d7 |
File details
Details for the file dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2e8b51efd7440418ffe89c4936799c78e815851f4864485bcb11e733630c481 |
|
MD5 | 878a1bba49d57258a67d15a651f7d17c |
|
BLAKE2b-256 | e44219f0cd474889773df079ac66e93e3300327530605e575866f4735697f69d |
File details
Details for the file dust_dds-0.10.1-cp312-none-win_amd64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-none-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4747b4c89b955e16d1fbdab7cb89c926ae60f66bc72e56205297455ba3a36ea9 |
|
MD5 | 654f8bca26c8b837d68e0b25b7b285aa |
|
BLAKE2b-256 | 79e852a3030fe928462889bef5fec1292638a338f71154decd98943fc26985fe |
File details
Details for the file dust_dds-0.10.1-cp312-none-win32.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-none-win32.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49571be6b9c3451af038152e8ffed095c149effeee850e0b2f25a2276c12aaa8 |
|
MD5 | 2ca595b9947dbf6c563dcc752c13cba5 |
|
BLAKE2b-256 | 3661b91d8ebef05db70be9e41bea649e65120a3afc1aca94d40180ed7b21e0da |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c498db5b40f0a62de77a78c121ef77f8e72d10fb246a969f9d2bee74720bd8ef |
|
MD5 | ae0db7e6a706e60d546f4e8b12068ada |
|
BLAKE2b-256 | 61121fb1f98dd3e156945bd5da7831086630af52b9220f0ce6e10b4b6acefc9a |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 354180d441e688d13f2bfb43a4056cb9cf59278cb4a6372b7f209f88fdd147b2 |
|
MD5 | 66761210df1d2c876033eb6d8c26b0fb |
|
BLAKE2b-256 | bd8988413cf443531c3113a2c8d1c855b6a3f69e9832284230568b2a1177ce8d |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8f623cf300e3cef7f0734e98b4e8ee78b676bf3c922c1a1c5e98c8389b56bfb |
|
MD5 | c2119de97e79e464e6bc2ed9bd8248ec |
|
BLAKE2b-256 | 714303e4576288173b87b7cacef9bdbe20bf7338ec65975ab2a452d591abb930 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70d069bd1c0fd4fff6d1969c6e775f90a8466e043f2797aac0f5768a3b1880ad |
|
MD5 | 6ffa36c02c4d91fba9e3ab16d3b3c4ef |
|
BLAKE2b-256 | 073d6b81d43fc1aa2f1c90c07808cb4561191e1603549682fae65679554f1187 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 244c75992d6338eed3d286d95ea0dea286d1b28c818848cb04fe12af38866c66 |
|
MD5 | 03c07c203e58e23eb2117f8445ca4e60 |
|
BLAKE2b-256 | 7f94ee505cd9d8ecd6fe5348ce61225c91a2a7678ba4111ca9e799d94722df35 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f662e39f4d6c637f3a010db5388f157ddbbf1303eb2f699aaefa81e1db664db |
|
MD5 | bc29da441903d69c54314ac827467f3f |
|
BLAKE2b-256 | fdb15bd4ebb5a25432df67e6210c964d189bb5054c0624fe7e6c70c8fc3e78af |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91d7eb61f1d9e8469fac9f79f739dd0cb19749b0310210c214dd0367bab2867c |
|
MD5 | 38a6b6e25bd77dddb853b57cc1567a06 |
|
BLAKE2b-256 | fd7b3f4d89a4eec4e18b1f210552775ae65d541e6415999144fc82903242cb26 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbd0a3c51d094da01932f2c665fa12d555010d06630b2a5f2b8b07b877006b80 |
|
MD5 | a09163235e9680cb4a610c7ab5fad96c |
|
BLAKE2b-256 | de8f4587f2a2fec2214d1e00d96b7bd5c56a4ab2acb2dbfd4bf522064a8314b4 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdd2297583276d47bbbe0620770dbeb31b08df537e12ffca75907e4355b76650 |
|
MD5 | 0596305d412bfb99b6c030c7e263cf66 |
|
BLAKE2b-256 | a72ff6952b70fa2ea0e69ccd14e369bba784c2168eba128c7a0f677a7c91ed44 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bd39db854ddd53b3c510fc8b795d6777d817b89ebfa08e209f15f276e6a348d |
|
MD5 | ca41594080a75813d15d41a68bc888ad |
|
BLAKE2b-256 | d593331a96bd1ea02f665a3110ef6f408e777b010866ec748b9f567b381e8e25 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed659a44e4a40d92058897f859c70247d6f79b599db228a9aeedf5044ca72345 |
|
MD5 | 2c890c7a365561441890bd30ea16703d |
|
BLAKE2b-256 | 6ff237b5b7bc5d6081d6dc9f77cdc9a502094ee2f7706e357619cbf2fcf06488 |
File details
Details for the file dust_dds-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d7338afb855883b86bc88635f5ca45ed0c9a2708176a45de8d7e820f6b3a324 |
|
MD5 | 538edd98b5ecc63a00e1cdeeba7ed9ad |
|
BLAKE2b-256 | 498996bc8d105f70b207456666034d33c9ab74fda9341c5f77e06d7157a72b39 |
File details
Details for the file dust_dds-0.10.1-cp311-none-win_amd64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-none-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67e0afc4faf3a277fd0708e4a06b4a091b874f55ddaa374d3d9e9eb7ab53e065 |
|
MD5 | a73fc6cd012e4932a6f75c909b7aa12b |
|
BLAKE2b-256 | cc3defbfea7e3ca310182b453be6f0f0b2d8f62affb1637576d25733598887d9 |
File details
Details for the file dust_dds-0.10.1-cp311-none-win32.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-none-win32.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5c73b5b932680bd7f806892968961b0e86197d139354abed482074b6c2a6003 |
|
MD5 | 65c189b16e09e87f22bdf09dce7fda60 |
|
BLAKE2b-256 | f23b29a04be1b862293176bb0946bde3a67acb484c0fded9719d8bc0cd7ea1be |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05245cb5dfc17143805cf403dcce0474b59439ed37042553e3a17ee798299540 |
|
MD5 | ebd8f55a5489dc2c807f8b3c72f9e2d1 |
|
BLAKE2b-256 | 2314238cd38d7b1c312760ed7e71e3041eb24d5e4071fedbbfe8bbbd499ecd2b |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b2115037abd093d399344ce0e9e6ba1487b39bb0c843dca8e713229456e260f |
|
MD5 | d8b3704a7f7ce1f1e6ab8e43d2f81c3e |
|
BLAKE2b-256 | 068083b37873c4e0fdee3d5de9e15ba0f7bd7281b28b3f191e02791bb1d8bbcc |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee8497893ddf1c145e63bcf096ad80321dc335fb41297fd7c78a867ac1e102a0 |
|
MD5 | d28d0dc341d5e1906cc62c7fbbd9133b |
|
BLAKE2b-256 | f2f2eeaf8a3e85cc841cff8e9cf1f69dfa36d56f8cbac7b6b278432b17cfeaf4 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1be3a87679d6c9329cd206755495ce8326a95f46084d7eaeefc9c7473ff6594f |
|
MD5 | 0b2f5c655561cfa4a9caa674ea8c395c |
|
BLAKE2b-256 | 1221ee9faad8b91fcc092c11f14e8727a0ab07acabf95d78078c79dba9d60796 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d50cebf16bbc776d16a1a99c446281e6766553214f048bee37fddd0387eec519 |
|
MD5 | 4acb946aae415c0649de1dbdb54fe5f8 |
|
BLAKE2b-256 | eb1c805ff531a6d6373cf89dee00f2592bc6aaacf70272434eab1392725fe58d |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a3fa8a18f5eaa4f16214e836fd2d72d8a06f40ba8ace996285423d63803418f |
|
MD5 | ec9cb3008548d545a89632389f03a665 |
|
BLAKE2b-256 | cfd28a0b4fbd7774cbadbfb1fda2f30aa387d40de34e6b4fee2156375dcd9e54 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73d162a4948d91e5c7971b93ed7db4a35bbafb2a7061bb899e2dd67ab5c80c11 |
|
MD5 | 6439785b1c13c9e9d478edda12c15764 |
|
BLAKE2b-256 | b827d0c4da9d782fa9110d6393599e507a864068b0dcee07848306418a642a3a |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1ba95d30031e09bc36cd3e1d2873ddf15d19590a420c1384ff256f8a9af4fe5 |
|
MD5 | 12158e5e1491c6077f99d9d9fa55e466 |
|
BLAKE2b-256 | e9721e91549dc5e8986bba152235fc43987d7a2ca5a066c5967bec220cabca76 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 903b802e5a61abd3e52a16b50a295fb5f88fd45c5a607133395ea1bfa084bff3 |
|
MD5 | 77f90264347ebe80c92be376a297ad40 |
|
BLAKE2b-256 | 971f413a68c90402fb6bc4c56f5bbd954cc6a308bca20f3a381cd70b45f71a99 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18ce55c439e6e049c9a9db69e7019a73a580d54da15402c13b43a17c33664a87 |
|
MD5 | 6f7fd8ed5250b2bc2ea868ab33e1b804 |
|
BLAKE2b-256 | e0f3d1d50b457c61c1af30727354ed3814b2fd33a3079d0fa58915e08178c445 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 529bead64e1472380a1fc557f3c4521737e6210ceb416d6aa657d8875751b07e |
|
MD5 | 8cfd2bc08f81a955f510611453d197f3 |
|
BLAKE2b-256 | 80797f7d81e718c666fc99763cb5d7daeb01a9734aa7ce3c866cc18aaf0f74a0 |
File details
Details for the file dust_dds-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25a7f8bce4109103b411de03c1586cf46b8a9f6e115495935958d1276d4089a6 |
|
MD5 | 2cf9ff069a3c0301035018484f06006b |
|
BLAKE2b-256 | 6a28a48fb1b86ed4e709dcb63bb50c80fbc07143b52b3a3391e61c1c80d2f4f5 |
File details
Details for the file dust_dds-0.10.1-cp310-none-win_amd64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-none-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc7523af236b3416a0baccba2784b8c410b0ab12f03c57cf7d6c7a95a6f434f8 |
|
MD5 | 51ba643fae67be26e96f3ff0a273022b |
|
BLAKE2b-256 | 19f4140b404ef1e09a87b018da40428918fc9927c478fe5615d48ab34319ccfb |
File details
Details for the file dust_dds-0.10.1-cp310-none-win32.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-none-win32.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25e722a0086ebcd2b7c7295aea6493d8072bb8527e8b6c4d4a2dd19a33143177 |
|
MD5 | aba91808f35612a77619bbab8b4768cc |
|
BLAKE2b-256 | 7a7e714fd619bc325278d3e586fdf5a56873e3997bd125e6781a372f44af9b2b |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bec8948dbe7fa7ebb07ac03637682d602970ed4c6e06222c00f3907f28aaf6db |
|
MD5 | 1940c3f4d2b3f57c702cf484f9158617 |
|
BLAKE2b-256 | 67c9d6389248560bd641e3f300aa23a6e51c9b58d6ca4f456d076c413fb4dfb5 |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efb4020cf99d6de798bac2fd4992b0b4760c7864851d8885e11c7cc85566e34e |
|
MD5 | 8ad35464aa571774b9fdcf9666a4dbb8 |
|
BLAKE2b-256 | 827d2a7330f382759c6f1d214b0e21735ef26ef3a7d5b3b034798e85c6e65a1a |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e55a589a079fede982fd5cb2db9780b722c12ef984129c429bc7151a3230e347 |
|
MD5 | 3cef7153619923033ea2b314decac3b5 |
|
BLAKE2b-256 | 93cfe44383a4d7a2aa93f77584ad397148de6af0d0cf04065feb1f06837ef388 |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac4b41008466e1d2b356a2e767a523b3aa0908be298f98ec87a832feed14046e |
|
MD5 | ea1aef49eb53ef2645bc4de92deeb6e9 |
|
BLAKE2b-256 | 04fcdf25f61170b8bc5005c029c3ba972cd0e195ecbd7b4c5dfd52c847319734 |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0273870b2b1d5103609745dcad5d291d08aa2c37ac660832f9ad1b983b92b94c |
|
MD5 | 3897cafb2ba4cb7792a0d8202fe30427 |
|
BLAKE2b-256 | 0868f018fe9c2cd44f92be162085a090d1ef3d5295642b590bc70eea4513642a |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d795393fd0f2d5d71a6d915193e00adcffb34faeb591c1d71b1e072773c432f |
|
MD5 | 9b622476fd17753ce0a6c6b6255a0d10 |
|
BLAKE2b-256 | 1dbf7ff5bf2d4d7b794cd3ccd9796b5f73af355e3c8f40228db8d83643cf463c |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d85f7bb983d5385ff262163e713bde832be02ca23682551702342da0d8adbc6a |
|
MD5 | 6504ac0b109fbde10b11fe2d0d9cc6ac |
|
BLAKE2b-256 | 45fe537e9fe5d31ea3661fe7bee239324213f1b42677413010d77a00f49d08a0 |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c2d1a05748de8396b6a738844516bcdc48eb40d01d612cbcea4fdc8a3d1a1ed |
|
MD5 | ac4ba2727a5a5e9fff965bc5f6c9531b |
|
BLAKE2b-256 | 6049580aed73e75852d7db0eba7393e6ece784c2d6bb8025a073d471410568a0 |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d82ffd0bc7ccc05a297cd6bc1461c27fa7b4287a802e6e6478f853627fac9780 |
|
MD5 | d7ccfa388937a83729dd3c86dae93314 |
|
BLAKE2b-256 | 4d3181bc68a259f1fa730ec26b0f56f4d2bd00f90738cd89781b8b313be04cfd |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f833ca6edbbbf404eb050fd2044d60410b6f248509c0441faa4700c9fccf3194 |
|
MD5 | 81d006f40a77e56a81f65b3d46bf5681 |
|
BLAKE2b-256 | 602f9a0b717ae07d718fcfa802bd050b51eae582207393cf2d935a48d5cc44a7 |
File details
Details for the file dust_dds-0.10.1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ecb01721539ba4d9517466de19ea8cbfaba616ab0ec66cde23f195d337018b5 |
|
MD5 | a5cc7e9b5d82c1ed0645ca1c8537f5e7 |
|
BLAKE2b-256 | 0ade2a6700d23b82eaff7ad7ba443d4ef6137aa097d7743b388f1d1decc9d222 |
File details
Details for the file dust_dds-0.10.1-cp39-none-win_amd64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-none-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 889ccd959dd3f3d664f2761b0743a1346314e00403577013261d463e06826d29 |
|
MD5 | f153145963120dbde6571b46dfa72eb2 |
|
BLAKE2b-256 | a110e53cc40e735bb36498e934ffd35bd84bb7df6e6b645e57cc42946f50f004 |
File details
Details for the file dust_dds-0.10.1-cp39-none-win32.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-none-win32.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45ff578f8e30999dc7190d82e01e7aeec7c038ebe080b312e6d2924d9c0610f0 |
|
MD5 | c69e290751389a60c4e9a8a988f61c38 |
|
BLAKE2b-256 | f3abc28519eb63e25a727de7f8d205ba67d8e46bc67c44a4633122858d3fdc43 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3728554549bb15786c43e5f897f561d197961b9f3af8fb6936aaa186813e4c29 |
|
MD5 | 93e289fdb28100b464a2b0cfd1fbebeb |
|
BLAKE2b-256 | 3c272e97e76cf99d9c9e1a454d76b19caa0825a45e947482fb4f4f4ea72e78f2 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a2087768cecd03677a64805ae7c04a17b37eb0bbc011ca5cbd74c8374d262f9 |
|
MD5 | c19dfcf5a9b2fb23bd8afc985b6c4683 |
|
BLAKE2b-256 | c3bfd8c9b0721328388418a3d2b278d73a6c5bb3861e5138323d42254b785a55 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c37538b2232f0b5fb6c1d97a8f3af96316b45cd8f4941c6d7c0ac65d6dac20dc |
|
MD5 | 391e2d99ed9d7a707133469aca30f253 |
|
BLAKE2b-256 | 27f165ed42d2db15db434185185ab0bf873572b4b0d34d29ce1856752a8afbf9 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0165ef8cd126a0b82c279100716253b049361018b7aaabf139a8b86ed579795f |
|
MD5 | 4e9477bafd16db7c8b7a1b7c1bb53282 |
|
BLAKE2b-256 | 30cc4d31f3feb942c0c90e9aa33c0b2d59be29984ef92881d15325c8368675e2 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20ee5e69c9e06169f8fb435b8fd45464fb72faef7d913d37220e13fe281104db |
|
MD5 | 44bdfc85b597f5fce0f4c1f7dc7bbaa0 |
|
BLAKE2b-256 | 825438c7b78899a1cb12c952894656ed1ce5f3884d6ff2b6ca66c79689760ea9 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c181a812828f607df1aa62a23fefe8b45201bb6681d8463186bbdbc6862911f |
|
MD5 | a1e9361ced8b5ff0319f11942aa975a2 |
|
BLAKE2b-256 | 86b952aee24323217f58d201e12b291ea8e8d124b58627c33bdcb3413e36a07c |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0f5ef365e918f0d23d72209bbf3504ace869706d6ca114fd93940f7a5510f4c |
|
MD5 | 0d0c70e3be7e6ea686342c974a454428 |
|
BLAKE2b-256 | 25007d057ed8f7e883397bbe9207e699c3835ccc45c96fc9b3eeb3ce3dc40169 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d459a3db262d76fde7f0bea1f4778dec0899655142d92ad308832f294e0c622 |
|
MD5 | 070d7b3216c3fe647a1a32219e530f6d |
|
BLAKE2b-256 | a5da56c23b8bcfe3267fe526189e84bed09ed20791f6ecca8269a747d2273fb6 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9714aa4a8744f5498789400f50a7a3667d1b5509289c4645869e57e2731219db |
|
MD5 | 59f37972e0bd0afd0d459602935c42f1 |
|
BLAKE2b-256 | d1c58792e950318a4298d1f13213fe4d800f08b75b69d95a66ac2ed6decc4e16 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3fdcf7448d78b5058042677510cfbe1f6f6b07ca3ea733a38d75ab3a59dd415 |
|
MD5 | 8da1745629adffe22e3049b5f3b6a38d |
|
BLAKE2b-256 | 2fa9164e17d9369b655c0d8a16996a3ff28deccc6529eef4a9b5951914a2d643 |
File details
Details for the file dust_dds-0.10.1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f254380a7102dce1f28ac8e2cf91c08708829f16167e69f2c68f4c4c6f86b044 |
|
MD5 | b3997a20dc825e42effb4b58b26240bd |
|
BLAKE2b-256 | f006b0b8cc07443a695aa0d4866e5e6f948e699f38bf72b4602769ab469ac816 |
File details
Details for the file dust_dds-0.10.1-cp38-none-win_amd64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-none-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e0a3bc0877c0de61cb7775b0e399490074ebe238019c4b9620a7874e2c476d8 |
|
MD5 | 386d8fe268e78254942d863169cfde0e |
|
BLAKE2b-256 | 1e77cd67810fc2c1f3502e678606a5a25b3442ab03695f7847b3016b1847e101 |
File details
Details for the file dust_dds-0.10.1-cp38-none-win32.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-none-win32.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1738087cc8a524d353ee0e7af0e0585c641f909e72436a63b58010be08114d4c |
|
MD5 | 43254a92231870b6438f097e2c662799 |
|
BLAKE2b-256 | 8a16c8a7ffe0ba4e939681634b82d49389651aed5af91195d74958ccb36150d9 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4b228ba984392b66ac381f948d154630891547b74b5bd045eb0aa52829958dd |
|
MD5 | 3c3c7a30ccc8bddea6c85b78a3ba1ac9 |
|
BLAKE2b-256 | 6e05e27b0abc4f8362ad7d2b195a5dd63f8b873e287fae29c8e79d7c3b564feb |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e269c2e208618b19ab4e3329a5e780e0cd8d0f6093884b87e4a0f781bc6d637 |
|
MD5 | 687cdce7d99b383969c6a3d10e63f807 |
|
BLAKE2b-256 | d8a35a5aa386a1a9b1259c653bb8ba2988d53d6530d848b36a677529f26a6373 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 284e62f61f0ba7d9af2c3d75c09460a2fec45a5a41312c17a32f121befa40956 |
|
MD5 | f0e1b8fdd844eb6f90cfac5d51f5f8e7 |
|
BLAKE2b-256 | 8dc8fadfdbecbbf7208be047fdf027707f80fafa8f740d081e8ccd193299cb84 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c89e6a17ba250d0f360f7293ad475a2f2afc69e0d1e7ef58666d54ab38c26bed |
|
MD5 | b2b09c741ae4ee504a57ba93ce9da6ec |
|
BLAKE2b-256 | ae04f628ece67df2378cc45ebee92a449e3591b90be42a89529ab9d5e0b51d89 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dac0ef48b790236a2f7bc0c17ec3e53ea475952e433ca1c9ef3713df412f025 |
|
MD5 | 5c569826ac1a4ef521930f41ccc73d2d |
|
BLAKE2b-256 | b668f1c3bbd8e1f6cbd8b78e41c1d7cd1c8552df35e26cda28bd020433303a65 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d756ceb65277935a1f5da553dcaff129f2362366191c3f095ee62799ba922650 |
|
MD5 | 2bd4b01676ad08caf8caf7ae17327971 |
|
BLAKE2b-256 | fc564f2e6538859804b3ffd2f27b6a169aa126a955c2b0fcbe70ffe502b7345c |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8f968dac0139a6ce808b9bc209e6393340bba2790e773ef6ac57de711872ccc |
|
MD5 | 337fe62558127806503dc85c13b90348 |
|
BLAKE2b-256 | ff20b739759962e8eb4acfe263ecdfb7b3f05013accba888b0b930ae4e75861c |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51c2ab8e610e45b9163d5d48ecd17b137359ee86feeac70f9539ec0bc0bc5c41 |
|
MD5 | 35061c44e536fbc4dbc5fb33a4e0a390 |
|
BLAKE2b-256 | 4aa5a5c9a62c6cdcffa2e49f3d745283f99f4381efc0ad7fdd7a3ea4ab881682 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26c2870a21382a1118a72a6fc609161ba8892a71100b707c552bf0c3e4db707b |
|
MD5 | dcd6ca0579f343743d41e052eb9f7110 |
|
BLAKE2b-256 | ca3d729ff8032caf59c9a9bc260539f806f842e1d3c0032dd273baa8e72ca359 |
File details
Details for the file dust_dds-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dust_dds-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1eac6e85711d445a0f779011ab8675a18148bef01cfaf02f0ffefc5fa4cfe190 |
|
MD5 | 20118d3c8f1ad17a1a2b8884579a6e78 |
|
BLAKE2b-256 | f000c5b60fd5e846893e5c44c43d5a3306329beb1dbda9b8ceb6c08c87a40923 |