Installation
Pre-built binaries
Via the browser
Navigate to the most recent release on the releases page and download the desired artifact(s).
Via curl
You can download binaries with curl like so. Replace X.Y.Z with
the most recent version number and TARGET with x86_64-apple-darwin,
x86_64-unknown-linux-gnu, or x86_64-unknown-linux-musl, and run:
curl \
--fail \
--location \
--proto '=https' \
--show-error \
--silent \
--tlsv1.2 \
https://github.com/langston-barrett/lun/releases/download/vX.Y.Z/lun-TARGET.gz | \
gunzip --to-stdout > lun
From source
To build from source, you’ll need Rust and Cargo. Follow the instructions on the Rust installation page.
Via Cargo
Install the latest, unreleased version with:
cargo install --locked --git https://github.com/langston-barrett/lun.git lun
From a local checkout
See the developer’s guide.