fix more warnings and add script to check all editions
All checks were successful
Build and Test / friends (push) Successful in 2m56s
Build and Test / splatoon (push) Successful in 3m38s

This commit is contained in:
Maple 2026-04-26 13:48:26 +02:00
commit 7f27ad0a3c
14 changed files with 38 additions and 91 deletions

View file

@ -1,6 +1,5 @@
use cfg_if::cfg_if;
use rnex_core::common::setup;
use rnex_core::executables::friends_backend::start_friends_backend;
#[tokio::main]
async fn main() {
@ -8,6 +7,7 @@ async fn main() {
cfg_if! {
if #[cfg(feature = "friends")]{
use rnex_core::executables::friends_backend::start_friends_backend;
start_friends_backend().await;
} else {
use rnex_core::executables::regular_backend;