From 546e3b9452943a00a6b51719972b7e96eeaae7f2 Mon Sep 17 00:00:00 2001 From: Vincent Breitmoser Date: Sun, 6 Feb 2022 23:33:33 +0100 Subject: [PATCH] readme: update for stable rust --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index bd746db..37d1c6c 100644 --- a/README.md +++ b/README.md @@ -26,22 +26,20 @@ License along with Hagrid. If not, see Quick Start ----------- -Building Hagrid requires a working nightly Rust toolchain. The -easiest way to get the toolchain is to download [rustup](https://rustup.rs). +Building Hagrid requires a working stable Rust toolchain. +The easiest way to get the toolchain is to download [rustup](https://rustup.rs). -Additionally, install external dependencies are required. Get them (on Debian or -Ubuntu) with +Additionally, some external dependencies are required. +Get them (on Debian or Ubuntu) with ```bash sudo apt install gnutls-bin nettle-dev gcc llvm-dev libclang-dev build-essential pkg-config gettext ``` -After rustup and all other dependencies are installed, get the nightly compiler and tools, copy the -config file, and simply compile and run: +After Rust and the other dependencies are installed, copy the config file, then simply compile and run: ```bash cd hagrid -rustup override set nightly-2020-06-01 cp Rocket.toml.dist Rocket.toml cargo run ```