From 288811074f80975699b8cce670c9fefb7a759794 Mon Sep 17 00:00:00 2001 From: DaXcess Date: Wed, 21 Aug 2024 12:29:27 +0200 Subject: [PATCH] Bump MSRV --- CHANGELOG.md | 3 ++- COMPILING.md | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d20c576..b0d8c03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,9 @@ - Fixed a bug where uncached guilds would panic the bot - Fixed small issue with embed styling - Updated to Rust 1.80.1 (from 1.79.0) -- Removed `lazy_static` in favor of `LazyLock` (Rust 1.80.0+ feature) - Updated `diesel` and addons to latest versions +- Removed `lazy_static` in favor of `LazyLock` (Rust 1.80.0+ feature) +- Bumped MSRV to 1.80.0 due to the introduction of `LazyLock` ## 2.2.0 | August 13th 2024 diff --git a/COMPILING.md b/COMPILING.md index 88d2d5e..9c67f48 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -86,4 +86,4 @@ cargo build [--release] --features stats # MSRV -The current minimum supported rust version is `1.75.0` _(Checked with `cargo-msrv`)_. +The current minimum supported rust version is `1.80.0` _(Checked with `cargo-msrv`)_. diff --git a/Cargo.toml b/Cargo.toml index 1ce2152..24f4c3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "spoticord" version = "2.2.1" edition = "2021" -rust-version = "1.75.0" +rust-version = "1.80.0" [[bin]] name = "spoticord"