Skip to main content

Dustr

Build PyPI version Crates.io License PyPI - Python Version Benchmarks

Dustr is a Rust-based implementation of duk, a commandline utility that shows disk usage statistics in a directory with a histogram visualization.

Introduction

Dustr provides the same functionality as duk but with a Rust backend for improved performance. It will show you a histogram of the disk usage in a directory:

Statistics of directory "." :

Size           In %   Histogram            Name
4.0 KB         1.39  #                    .gitignore
4.0 KB         1.39  #                    setup.py
4.0 KB         1.39  #                    README.md
12.0 KB        4.17  ##                   dist/
12.0 KB        4.17  ##                   dustr/
12.0 KB        4.17  ##                   build/
16.0 KB        5.56  ##                   duk.egg-info/
220.0 KB       76.39 ####################  .git/

Total directory size: 284.0 KB

Installation

From PyPI (Python package)

pip install dustr

From crates.io (standalone Rust binary, no Python needed)

cargo install dustr-cli

This installs the dustr-cli binary to ~/.cargo/bin/.

From source

First, ensure you have Rust installed (see rustup.rs).

Python package (requires maturin):

pip install maturin
maturin develop  # For development
# OR
maturin build --release && pip install target/wheels/dustr-*.whl

Standalone binary:

cargo install --path .
# OR
make install

Usage

Python (dustr)

dustr [OPTIONS] [DIRECTORY]

Standalone binary (dustr-cli)

dustr-cli [OPTIONS] [DIRECTORY]

Both accept the same options:

  • -i, --inodes: Show inode count instead of size
  • -g, --nogrouping: Don't use thousand separators (for inode mode)
  • -f, --noF: Don't add file type indicators (/ for directories, @ for symlinks)
  • -j, --json: Output results as JSON
  • -x, --cross-mounts: Cross filesystem mount boundaries
  • -v, --verbose: Show directories being traversed
  • -l, --live: Live-update statistics table during traversal

JSON output

dustr --json .
{
  "directory": ".",
  "mode": "size",
  "entries": [
    { "name": ".gitignore", "value": 4, "percentage": 1.41 },
    { "name": ".git/", "value": 220, "percentage": 77.46 }
  ],
  "total": 284
}

Differences from duk

  • Performance: Rust backend with parallel directory traversal (jwalk + rayon)
  • Implementation: Uses native Rust file system operations instead of calling du command

Requirements

  • Python package: Python >= 3.9
  • Standalone binary: Rust toolchain (for building from source), or install from crates.io via cargo install dustr-cli

License

LGPL-3.0-or-later

Release files for dustr 1.0.8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for dustr 1.0.8
File
dustr-1.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
dustr-1.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
dustr-1.0.8-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
dustr-1.0.8-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
dustr-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
dustr-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
dustr-1.0.8-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
dustr-1.0.8-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
dustr-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
dustr-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
dustr-1.0.8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
dustr-1.0.8-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
dustr-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
dustr-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
dustr-1.0.8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
dustr-1.0.8-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
dustr-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
dustr-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
dustr-1.0.8-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
dustr-1.0.8-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 12.7 MB

Release files / dustr-1.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL dustr-1.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 672.1 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
95a3132a5d421aec516e04e81c963f8c635a0d95427138e7d1d4a2d20729a2ad
BLAKE2b-256 checksum
How to use checksums
abb0caeaf4452b212d2b593f0a24610cc531c150668310a48b30a69b1490a895
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL dustr-1.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 661.2 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5252e441373b8dfe0f6e363114f32d20c69a3371bda7ed4213b42e16424a5259
BLAKE2b-256 checksum
How to use checksums
2000fc37788846690853b3331888ecb0aeadb1483f5afdb3d41b8a17fdf952a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp314-cp314-macosx_11_0_arm64.whl

Download URL dustr-1.0.8-cp314-cp314-macosx_11_0_arm64.whl
Size 594.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a4e3d7c3681356843582835bb10389b7423c559b60ee2825dc636a7585654f2e
BLAKE2b-256 checksum
How to use checksums
b22cb2db6cb7ba84ca7c35ca7742c1b922767ac5ef618946a0a5ad6ed5d6fb4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp314-cp314-macosx_10_12_x86_64.whl

Download URL dustr-1.0.8-cp314-cp314-macosx_10_12_x86_64.whl
Size 608.8 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
37dfb17c9c545e193ae6051c462fc7fdfbc8ddf7ca6ad1dd3b836d422b8fc2f2
BLAKE2b-256 checksum
How to use checksums
e832dd05634072e3b4559052f781f304d9fb8cc62e564148a46fce8d0f5e0ab2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL dustr-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 674.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1fb94888a8d2617ffd91daba54a68c7f9b0fcaa5f0e551392be68ad89cba9071
BLAKE2b-256 checksum
How to use checksums
cac79663cdab3a2ac707eff56da19183c5260d2ec89e3c4c0c6d28a73fd7a2ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL dustr-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 661.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3000326a0b91004364c5aca8b510d65af60775b1df81f4f3e7464db3904ecf98
BLAKE2b-256 checksum
How to use checksums
787be4c25a797768aae64edb0a22b517163ead2008c20f71ff545656b15daef6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp313-cp313-macosx_11_0_arm64.whl

Download URL dustr-1.0.8-cp313-cp313-macosx_11_0_arm64.whl
Size 594.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
08b10459f8ed1defb0c8aaea75e91a5d7e595885c87b5e11cbce393f3410ceee
BLAKE2b-256 checksum
How to use checksums
30a2a0218b23862cf21f64ec8f3c862a3a5d9e0112c016118057c2334c92c07e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp313-cp313-macosx_10_12_x86_64.whl

Download URL dustr-1.0.8-cp313-cp313-macosx_10_12_x86_64.whl
Size 609.3 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bb2302fd753b16a75858e1522b1a5bdf0468d57449bf89ac3256e3773812a3c4
BLAKE2b-256 checksum
How to use checksums
310bf0a834c44dd75589c05550919caad722548337b1b04877a1a9cbd37e5825
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL dustr-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 674.7 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5cf30fdd3cdd3fed41f9e41b2958206720fe8ae71662ab824e26d6b82ffe9480
BLAKE2b-256 checksum
How to use checksums
6208abb0b35c740994ed4e8a52b025fbf2fb328c0b2fb28d49e2b44d3bec6f7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL dustr-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 660.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c8bc896fc4abbd5ca3daa7d7585a8c4745f9a6f019b2cf391894740a4f1fb70a
BLAKE2b-256 checksum
How to use checksums
068fd61d543223b958a6b7f0b957d45ce83f482da7c25aac4557d18dcb0d2127
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp312-cp312-macosx_11_0_arm64.whl

Download URL dustr-1.0.8-cp312-cp312-macosx_11_0_arm64.whl
Size 594.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a07406f30d383f242dfefa1f69bc06f59dbf97bbfc4653ff30d50b03695a28b8
BLAKE2b-256 checksum
How to use checksums
14039cc45d20703e38ffe057e898573237ac06017a83269437b012aa1f94da92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp312-cp312-macosx_10_12_x86_64.whl

Download URL dustr-1.0.8-cp312-cp312-macosx_10_12_x86_64.whl
Size 609.6 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bb7560deea3f32ad3e43ae8756d4b1671edfbf5ec801f76a1fd026dfe4780568
BLAKE2b-256 checksum
How to use checksums
266fc514cfb400a9a9f5d2cea9092a417159c14575b4c618f21fba8f4fea509b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL dustr-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 676.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
797ad697c2d6ce97f5cf6dbb87e03af9e5b7097e7ba26706c851e356d2b1db42
BLAKE2b-256 checksum
How to use checksums
76caa8eacf684a1ac47ab3ea593edcdfd3d23cc5d342fd740c1766e4577a213f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL dustr-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 662.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ebc82d855a4ac74e97d2cc286a28101b48445034c27d3d335e68d583ea8887e0
BLAKE2b-256 checksum
How to use checksums
4b7ef8751f01b4dd7e981dc06d03e4c03ca7cf581c760d39d4a4c10734d855aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp311-cp311-macosx_11_0_arm64.whl

Download URL dustr-1.0.8-cp311-cp311-macosx_11_0_arm64.whl
Size 596.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2b795090eaae4900284f4258d482b31c71d1bfe7cddf4758176dc1a2dc9fd68b
BLAKE2b-256 checksum
How to use checksums
d519632665a1f9863cc81c9112af27952ee2639724744fdfc3ce8e3a75d47542
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp311-cp311-macosx_10_12_x86_64.whl

Download URL dustr-1.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Size 611.5 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0d4b8d10afbc2039c61b4ba3814e15599fb12c0eff596962c93760ebe9115a3a
BLAKE2b-256 checksum
How to use checksums
1cd91257e7c8150a9b7d5f1534de9a776645ffacf6b685e86577d37298887cfc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL dustr-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 675.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9843461f886bac2749ed91ce4ce66cd976461f4455a1699052d1a1f33fd5342f
BLAKE2b-256 checksum
How to use checksums
731e2869a93c00859ec7a2ab6936073b2de92531f42d47e449df1e8ac26a5859
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL dustr-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 662.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bcfed1f3fe7b450017a0f82904750fa062458c896d6509a2d17775897de97dff
BLAKE2b-256 checksum
How to use checksums
10e6f40624aa943ef557899bcb431bee785e22f58643a120fe82d3e06955a27d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp310-cp310-macosx_11_0_arm64.whl

Download URL dustr-1.0.8-cp310-cp310-macosx_11_0_arm64.whl
Size 596.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
513edd8d005b5b79a41dd843ae3791618e7c16c8143256fb2663e985a00032fd
BLAKE2b-256 checksum
How to use checksums
d594e97b9b2b8adb688ca44ab2d305c7cf298e45c5ce57e3dd74483f89db8dd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / dustr-1.0.8-cp310-cp310-macosx_10_12_x86_64.whl

Download URL dustr-1.0.8-cp310-cp310-macosx_10_12_x86_64.whl
Size 611.5 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ba6e5e8926371a20502f47760fdc4e36bced6b16ba92b88bccead5cd67cf63d9
BLAKE2b-256 checksum
How to use checksums
e637b7395957eac4ff4c09d8197a8960d10efa73d3ab53eb7ed1fd7a8ec9f397
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page