From c886af41c293b0cfefd7efe86e8cc5dbdabde42a Mon Sep 17 00:00:00 2001 From: har7an <99636919+har7an@users.noreply.github.com> Date: Sun, 7 Jul 2024 05:24:16 +0000 Subject: [PATCH] cargo: Remove `rust-version` (msrv) field (#3480) * cargo: Remove `rust-version` (msrv) field from `Cargo.toml`. This has gone out of sync with the rust version specified in `rust-toolchain.toml` and appears to have little consequence to development, since it defines only the MSRV. We're using `rust-toolchain.toml` to strictly enforce a specific rust version for development, hence we stick with that. Closes #3476 * CHANGELOG: Add MR #3480. --- CHANGELOG.md | 1 + Cargo.toml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79240865..a1017c3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * fix(terminal): workaround for windows terminal not interpreting underline colors with semicolons (https://github.com/zellij-org/zellij/pull/3440) * dependencies: switch from wasmer to wasmtime (https://github.com/zellij-org/zellij/pull/3349) * feat(ui): status-bar redesign (https://github.com/zellij-org/zellij/pull/3475) +* chore: Remove MSRV from Cargo.toml (https://github.com/zellij-org/zellij/pull/3480) ## [0.40.1] - 2024-05-02 * fix(sessions): issue where sessions would occasionally become unresponsive (https://github.com/zellij-org/zellij/pull/3281) diff --git a/Cargo.toml b/Cargo.toml index ad54a15e..15cc57bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,6 @@ license = "MIT" repository = "https://github.com/zellij-org/zellij" homepage = "https://zellij.dev" include = ["src/**/*", "assets/layouts/*", "assets/config/*", "LICENSE.md", "README.md", "!**/*_test.*", "!**/tests/**/*"] -rust-version = "1.60" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html