Download

Get loadr for your platform

A single self-contained binary — no JVM, no Node, no protoc, no system libraries. Every build is checksummed and ships with SLSA build provenance.

latest SHA-256 checksums SLSA provenance Zero telemetry
Loading the latest release…

Looking for older versions or the source? See all releases on GitHub →

Verify

Trust, but verify

Each card above shows the SHA-256 of the exact file you'll download. You can check it yourself, and confirm the build came from this repository's CI — not a tampered copy — using its signed provenance attestation.

Checksum (Linux / macOS)
# Grab the manifest and check every file you downloaded
$ curl -sSLO https://github.com/levantar-ai/loadr/releases/latest/download/SHA256SUMS
$ sha256sum --ignore-missing -c SHA256SUMS    # Linux
$ shasum -a 256 -c SHA256SUMS --ignore-missing # macOS
loadr-x86_64-unknown-linux-gnu.tar.gz: OK
Provenance (GitHub CLI)
# Cryptographically verify the build's origin (SLSA)
$ gh attestation verify \
    loadr-x86_64-unknown-linux-gnu.tar.gz \
    --repo levantar-ai/loadr
✓ Verification succeeded!
Checksum (Windows · PowerShell)
PS> Get-FileHash .\loadr-x86_64-pc-windows-msvc.zip -Algorithm SHA256
# compare the printed hash with the SHA-256 shown on the Windows card above

Other ways to install

Prefer a one-liner?

Quick install (Linux / macOS)
$ curl -sSL https://github.com/levantar-ai/loadr/releases/latest/download/loadr-x86_64-unknown-linux-gnu.tar.gz | tar xz
$ sudo mv loadr-*/loadr /usr/local/bin/
$ loadr version
Build from source (Cargo)
$ cargo install --git \
    https://github.com/levantar-ai/loadr loadr-cli

# no system deps: no protoc, no OpenSSL, no JVM, no node

27 runnable examples ship in the examples/ folder of every download. Browse all 27 →