Fri, 06 Dec 2024 16:16:48 -0500
alg_tools now support stable, so return to edition 2021 now to allow stable rust.
Cargo.toml | file | annotate | diff | comparison | revisions | |
README.md | file | annotate | diff | comparison | revisions | |
rust-toolchain.toml | file | annotate | diff | comparison | revisions |
--- 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 <tuomov@iki.fi>", "Heikki von Koch <heikki.vonkoch@helsinki.fi>"] description = "Simple optimisation experiments on non-Riemannian manifolds" #homepage = ""
--- 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.