Bump MSRV

main
DaXcess 2024-08-21 12:29:27 +02:00
parent 3394d495fe
commit 288811074f
No known key found for this signature in database
GPG Key ID: CF78CC72F0FD5EAD
3 changed files with 4 additions and 3 deletions

View File

@ -7,8 +7,9 @@
- Fixed a bug where uncached guilds would panic the bot - Fixed a bug where uncached guilds would panic the bot
- Fixed small issue with embed styling - Fixed small issue with embed styling
- Updated to Rust 1.80.1 (from 1.79.0) - 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 - 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 ## 2.2.0 | August 13th 2024

View File

@ -86,4 +86,4 @@ cargo build [--release] --features stats
# MSRV # 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`)_.

View File

@ -2,7 +2,7 @@
name = "spoticord" name = "spoticord"
version = "2.2.1" version = "2.2.1"
edition = "2021" edition = "2021"
rust-version = "1.75.0" rust-version = "1.80.0"
[[bin]] [[bin]]
name = "spoticord" name = "spoticord"