From 3589fe6348a236455fbf47cb9ea752ebe41689fb Mon Sep 17 00:00:00 2001 From: pep Date: Sat, 19 Jul 2025 23:03:51 +0200 Subject: [PATCH] Update edition to 2024 And remove unstable let_chains feature which isn't needed anymore. Signed-off-by: pep --- Cargo.toml | 2 +- src/main.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index da38e98..e568269 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "cusku" version = "0.2.0" description = "Webhook to XMPP" -edition = "2021" +edition = "2024" authors = ["Maxime “pep” Buquet "] license = "AGPL-3.0+" diff --git a/src/main.rs b/src/main.rs index a267f6d..b61caa1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,8 +13,6 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . -#![feature(let_chains)] - mod bot; mod config; mod error;