From 6028079b28b1db85ad07816c0c84630141f8550d Mon Sep 17 00:00:00 2001 From: Goldy <66202304+THEGOLDENPRO@users.noreply.github.com> Date: Thu, 17 Oct 2024 00:48:33 +0100 Subject: [PATCH] feat: remove unnecessary attributes --- src/app.rs | 3 --- src/main.rs | 1 - 2 files changed, 4 deletions(-) diff --git a/src/app.rs b/src/app.rs index 43efcc4..16c096b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -1,6 +1,3 @@ -#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release -#![allow(rustdoc::missing_crate_level_docs)] // it's an example - use std::time::{Duration, Instant}; use cap::Cap; diff --git a/src/main.rs b/src/main.rs index 912a831..3ec1348 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,4 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release -#![allow(rustdoc::missing_crate_level_docs)] // it's an example use std::{path::Path, process::exit};