Skip to content

Commit 2fd6295

Browse files
committed
allow unused imports
1 parent 73b7a0b commit 2fd6295

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
#![cfg_attr(debug_assertions, allow(dead_code, unused_imports))]
2-
1+
#![allow(unused_imports)]
32
use axum::{http::StatusCode, response::IntoResponse, Router};
43
use std::io;
54
use tokio::net::TcpListener;
65
use tracing::{error, info};
7-
use tracing_appender::rolling::{daily, RollingFileAppender, Rotation};
6+
use tracing_appender::rolling::{RollingFileAppender, Rotation};
87
use tracing_subscriber::{fmt, prelude::*, Registry};
98

109
#[tokio::main]

0 commit comments

Comments
 (0)