# HG changeset patch # User Tuomo Valkonen # Date 1733519808 18000 # Node ID 854e914f99c5389ee09e1d0618c53e81c59d7a15 # Parent 5e623b3276257a6edf900068805c4682667cd362 alg_tools now support stable, so return to edition 2021 now to allow stable rust. diff -r 5e623b327625 -r 854e914f99c5 Cargo.toml --- a/Cargo.toml Fri Dec 06 15:07:28 2024 -0500 +++ b/Cargo.toml Fri Dec 06 16:16:48 2024 -0500 @@ -1,7 +1,7 @@ [package] name = "non-riemannian-opt" version = "0.1.0" -edition = "2024" +edition = "2021" authors = ["Tuomo Valkonen ", "Heikki von Koch "] description = "Simple optimisation experiments on non-Riemannian manifolds" #homepage = "" diff -r 5e623b327625 -r 854e914f99c5 README.md --- a/README.md Fri Dec 06 15:07:28 2024 -0500 +++ b/README.md Fri Dec 06 16:16:48 2024 -0500 @@ -16,15 +16,15 @@ ### Installing dependencies Most dependencies are managed by the Cargo build system of [Rust]. You will -only need to install the “nightly” Rust compiler and the +only need to install the “stable” Rust compiler and the [GNU Scientific Library] manually. At the time of writing this README, [alg_tools] also needs to be downloaded separately. 1. Install the [Rust] infrastructure (including Cargo) with [rustup]. -2. Install a “nightly” release of the Rust compiler. With rustup, installed in +2. Install a “stable” release of the Rust compiler. With rustup, installed in the previous step, this can be done with ```console - rustup toolchain install nightly + rustup toolchain install stable ``` 3. Download [alg_tools] and unpack it under the same directory as this package. diff -r 5e623b327625 -r 854e914f99c5 rust-toolchain.toml --- a/rust-toolchain.toml Fri Dec 06 15:07:28 2024 -0500 +++ b/rust-toolchain.toml Fri Dec 06 16:16:48 2024 -0500 @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly" +channel = "stable"