From fcabc58d9df4531b46589cba7b1ba16e85764b61 Mon Sep 17 00:00:00 2001 From: ReCore-sys Date: Thu, 27 Jun 2024 01:01:32 +0930 Subject: [PATCH] I did not fix it. Did update readme tho --- README.md | 3 ++- src/main.rs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f913f3ef..5f422600 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # FerrumC ![GitHub License](https://img.shields.io/github/license/Sweattypalms/ferrumc) -GitHub code size in bytes +![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/Sweattypalms/ferrumc) +![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Sweattypalms/ferrumc/rust.yml) A high performance Minecraft server written in Rust. diff --git a/src/main.rs b/src/main.rs index 69ae5caf..7436cf00 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,8 +3,9 @@ use std::fs; use std::sync::Arc; -#[cfg(target_os = "linux")] +#[allow(unused_imports)] use tokio::fs::try_exists; +#[warn(unused_imports)] use clap::{Parser}; use log::{debug, info, trace};