summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcos <cos>2023-01-24 08:18:51 +0100
committercos <cos>2023-01-24 10:21:18 +0100
commit98e2b8c12f801de55a0ed08adc5ac1aa0b81c139 (patch)
tree49cbeb522c561a086abefce4aa0c75665c364ea6
parent0d61aec1a1e475416cf134d6766dbd0e470cffa5 (diff)
downloadmeli-fix/msrv.zip
Update minimum supported rust versionfix/msrv
Code requires label_break_value feature, which was [stabilized][0] in release 1.65.0 of the toolchain. [0]: https://github.com/rust-lang/rust/pull/99332
-rw-r--r--Cargo.toml1
-rw-r--r--README.md2
-rw-r--r--melib/Cargo.toml1
3 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9f027db9..6a958ac0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,6 +3,7 @@ name = "meli"
version = "0.7.2"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2018"
+rust-version = "1.65.0"
license = "GPL-3.0-or-later"
readme = "README.md"
diff --git a/README.md b/README.md
index 8ed153a9..6c30d299 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ For a quick start, build and install locally:
Available subcommands for `make` are listed with `make help`. The Makefile *should* be POSIX portable and not require a specific `make` version.
-`meli` requires rust 1.39 and rust's package manager, Cargo. Information on how
+`meli` requires rust 1.65 and rust's package manager, Cargo. Information on how
to get it on your system can be found here: <https://doc.rust-lang.org/cargo/getting-started/installation.html>
With Cargo available, the project can be built with `make` and the resulting binary will then be found under `target/release/meli`. Run `make install` to install the binary and man pages. This requires root, so I suggest you override the default paths and install it in your `$HOME`: `make PREFIX=$HOME/.local install`.
diff --git a/melib/Cargo.toml b/melib/Cargo.toml
index 1399b2bf..ed0c64c1 100644
--- a/melib/Cargo.toml
+++ b/melib/Cargo.toml
@@ -5,6 +5,7 @@ authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"]
workspace = ".."
edition = "2018"
build = "build.rs"
+rust-version = "1.65.0"
homepage = "https://meli.delivery"
repository = "https://git.meli.delivery/meli/meli.git"