From 9b260dfdd2fba8c0d7d3af0a2ebdf7fe1a90dad8 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sat, 20 Jun 2020 10:53:10 -0700 Subject: [PATCH] Link to pre-compiled binary --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 582f140..65faf2f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,13 @@ Agate is a server for the [Gemini] network protocol, built with the [Rust] progr ## Installation and setup -1. [Install the Rust toolchain][rustup]. +1. Download and unpack the [pre-compiled binary](https://github.com/mbrubeck/agate/releases). + + Or, if you have the Rust toolchain installed, run `cargo install agate` to + install agate from crates.io. + + Or download the source code and run `cargo build --release` inside the + source repository, then find the binary at `target/release/agate`. 2. Run `cargo install agate` to install agate from crates.io, or clone the [source], run `cargo build --release`, and then copy the compiled binary from `target/release/agate` to any location you want. (You can also use `cargo run --release ` to run Agate from within the source directory.)