From 9ca98448cca5b9b149d6106e1bc9933f96a65cbd Mon Sep 17 00:00:00 2001 From: elkowar <5300871+elkowar@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:03:41 +0100 Subject: [PATCH] Switch to stable rust --- crates/simplexpr/rust-toolchain | 1 - crates/yuck/rust-toolchain | 1 - docs/src/eww.md | 5 ++--- docs/src/troubleshooting.md | 2 +- rust-toolchain.toml | 3 +-- 5 files changed, 4 insertions(+), 8 deletions(-) delete mode 100644 crates/simplexpr/rust-toolchain delete mode 100644 crates/yuck/rust-toolchain diff --git a/crates/simplexpr/rust-toolchain b/crates/simplexpr/rust-toolchain deleted file mode 100644 index bf867e0..0000000 --- a/crates/simplexpr/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -nightly diff --git a/crates/yuck/rust-toolchain b/crates/yuck/rust-toolchain deleted file mode 100644 index bf867e0..0000000 --- a/crates/yuck/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -nightly diff --git a/docs/src/eww.md b/docs/src/eww.md index 4a25bd4..f9c9385 100644 --- a/docs/src/eww.md +++ b/docs/src/eww.md @@ -13,11 +13,10 @@ Configured in yuck and themed using CSS, it is easy to customize and provides al ### Prerequisites * rustc -* cargo (nightly toolchain) +* cargo Rather than with your system package manager, -I recommend installing it using [rustup](https://rustup.rs/), -as this makes it easy to use the nightly toolchain necessary to build eww. +I **strongly** recommend installing it using [rustup](https://rustup.rs/). Additionally, eww requires some dynamic libraries to be available on your system. The exact names of the packages that provide these may differ depending on your distribution. diff --git a/docs/src/troubleshooting.md b/docs/src/troubleshooting.md index d1db06b..7053bd4 100644 --- a/docs/src/troubleshooting.md +++ b/docs/src/troubleshooting.md @@ -4,7 +4,7 @@ Here you will find help if something doesn't work. If the issue isn't listed her ## Eww does not compile -1. Make sure that you are compiling eww using the nightly Rust toolchain. +1. Make sure that you are compiling eww using a recent version of rust (run `rustup update` to be sure you have the latest version available) 2. Make sure you have all the necessary dependencies. If there are compile-errors, the compiler will tell you what you're missing. ## Eww does not work on Wayland diff --git a/rust-toolchain.toml b/rust-toolchain.toml index e065180..6343bc4 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,4 @@ [toolchain] -channel = "nightly-2024-02-16" -# channel = "1.76.0" +channel = "1.76.0" components = [ "rust-src" ] profile = "default"